diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..511b40a73c78d3b030fc17d2839830d64baad3ac --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +.dart_tool/ +.flutter-plugins +.packages +.pub-cache/ +.pub/ +/build/ + +# Android related +**/android/**/gradle-wrapper.jar +**/android/.gradle +**/android/captures/ +**/android/gradlew +**/android/gradlew.bat +**/android/local.properties +**/android/key.properties +**/android/**/GeneratedPluginRegistrant.java + +# iOS/XCode related +**/ios/**/*.mode1v3 +**/ios/**/*.mode2v3 +**/ios/**/*.moved-aside +**/ios/**/*.pbxuser +**/ios/**/*.perspectivev3 +**/ios/**/*sync/ +**/ios/**/.sconsign.dblite +**/ios/**/.tags* +**/ios/**/.vagrant/ +**/ios/**/DerivedData/ +**/ios/**/Icon? +**/ios/**/Pods/ +**/ios/**/.symlinks/ +**/ios/**/profile +**/ios/**/xcuserdata +**/ios/.generated/ +**/ios/Flutter/App.framework +**/ios/Flutter/Flutter.framework +**/ios/Flutter/Generated.xcconfig +**/ios/Flutter/app.flx +**/ios/Flutter/app.zip +**/ios/Flutter/flutter_assets/ +**/ios/ServiceDefinitions.json +**/ios/Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!**/ios/**/default.mode1v3 +!**/ios/**/default.mode2v3 +!**/ios/**/default.pbxuser +!**/ios/**/default.perspectivev3 +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages diff --git a/.metadata b/.metadata new file mode 100644 index 0000000000000000000000000000000000000000..3b87eb5060822a1a67a7a4f604d7f552893e36b6 --- /dev/null +++ b/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: b712a172f9694745f50505c93340883493b505e5 + channel: stable + +project_type: app diff --git a/README.md b/README.md index 0178e2fb56383fd54f5050c499fa6fcd0400fedb..b58180110683bd2d9daf3246ee5cff1d750d67a7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ -# Mobile App +# Vereign mobile application. +## Application flavors +### Build application in debug mode +- With development flavor `flutter run --flavor development -t lib/main-dev.dart` +- With production flavor `flutter run --flavor production -t lib/main.dart` + + +## Flutter Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..aac0ff68133db9be41f5467396723557dff5aa9a --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,91 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +def keystoreProperties = new Properties() +def keystorePropertiesFile = rootProject.file('key.properties') +if (keystorePropertiesFile.exists()) { + keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) +} + +android { + compileSdkVersion 28 + + lintOptions { + disable 'InvalidPackage' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.vereign.app" + minSdkVersion 16 + targetSdkVersion 28 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + + signingConfigs { + release { + keyAlias keystoreProperties['keyAlias'] + keyPassword keystoreProperties['keyPassword'] + storeFile file(keystoreProperties['storeFile']) + storePassword keystoreProperties['storePassword'] + } + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } + + flavorDimensions "flavor-type" + + productFlavors { + development { + dimension "flavor-type" + applicationIdSuffix ".development" + versionNameSuffix "-dev" + manifestPlaceholders = [appLabel:"Vereign-dev"] + } + production { + dimension "flavor-type" + manifestPlaceholders = [appLabel:"Vereign"] + } + } +} + +flutter { + source '../..' +} + +dependencies { + testImplementation 'junit:junit:4.12' + androidTestImplementation 'com.android.support.test:runner:1.0.2' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..deaa5f6c624042dbcba56e63aef911d09af87d27 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.vereign.app"> + <!-- Flutter needs it to communicate with the running application + to allow setting breakpoints, to provide hot reload, etc. + --> + <uses-permission android:name="android.permission.INTERNET"/> +</manifest> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..42ea6bfb71e68aeb1b391b3e19a07568abe7f0a9 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,67 @@ +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + package="com.vereign.app"> + + <uses-permission android:name="android.permission.INTERNET" /> + + <!-- io.flutter.app.FlutterApplication is an android.app.Application that + calls FlutterMain.startInitialization(this); in its onCreate method. + In most cases you can leave this as-is, but you if you want to provide + additional functionality it is fine to subclass or reimplement + FlutterApplication and put your custom class here. --> + <application + android:name="io.flutter.app.FlutterApplication" + android:label="${appLabel}" + android:icon="@mipmap/ic_launcher"> + <activity + android:name=".MainActivity" + android:launchMode="singleTask" + android:theme="@style/LaunchTheme" + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" + android:hardwareAccelerated="true" + android:windowSoftInputMode="adjustResize"> + <!-- This keeps the window background of the activity showing + until Flutter renders its first frame. It can be removed if + there is no splash screen (such as the default splash screen + defined in @style/LaunchTheme). --> + <meta-data + android:name="io.flutter.app.android.SplashScreenUntilFirstFrame" + android:value="true" /> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.LAUNCHER"/> + <data + android:scheme="app" + android:host="com.vereign.app" /> + </intent-filter> + </activity> + + <activity + android:name="net.openid.appauth.RedirectUriReceiverActivity" + tools:node="replace"> + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + + <data + android:scheme="app" + android:host="com.vereign.app" + android:path="/oauth2"/> + </intent-filter> + </activity> + + <activity + android:name="github.showang.flutterappauthwrapper.OAuthActivity" + android:configChanges="orientation|screenSize" + android:theme="@style/Theme.AppCompat.Translucent" /> + </application> +</manifest> diff --git a/android/app/src/main/java/com/vereign/app/MainActivity.java b/android/app/src/main/java/com/vereign/app/MainActivity.java new file mode 100644 index 0000000000000000000000000000000000000000..061279cd4dc7a34bf09aa274731cd01d6df7c518 --- /dev/null +++ b/android/app/src/main/java/com/vereign/app/MainActivity.java @@ -0,0 +1,13 @@ +package com.vereign.app; + +import android.os.Bundle; +import io.flutter.app.FlutterActivity; +import io.flutter.plugins.GeneratedPluginRegistrant; + +public class MainActivity extends FlutterActivity { + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + GeneratedPluginRegistrant.registerWith(this); + } +} diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..304732f8842013497e14bd02f67a55f2614fb8f7 --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Modify this file to customize your launch splash screen --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@android:color/white" /> + + <!-- You can insert your own image assets here --> + <!-- <item> + <bitmap + android:gravity="center" + android:src="@mipmap/launch_image" /> + </item> --> +</layer-list> diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..dd269adc2b526bbabc38edde2c65564fb1fe7501 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-hdpi/launcher_icon.png b/android/app/src/main/res/mipmap-hdpi/launcher_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dd269adc2b526bbabc38edde2c65564fb1fe7501 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/launcher_icon.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..b7947eb8236f0a4dfeec6f0b1f70c1e06268a268 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/launcher_icon.png b/android/app/src/main/res/mipmap-mdpi/launcher_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b7947eb8236f0a4dfeec6f0b1f70c1e06268a268 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/launcher_icon.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce71bc44f1f9fb5e024b8d4caf284e70145a188 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce71bc44f1f9fb5e024b8d4caf284e70145a188 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..745f22a2e42c05e0b25fec7d42f5bd5dda884eb3 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..745f22a2e42c05e0b25fec7d42f5bd5dda884eb3 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..2363d1122e2a485c6723faa50f12c2e1c794032b Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2363d1122e2a485c6723faa50f12c2e1c794032b Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png differ diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..13ffd65dc52dd652f27a47b20234ca2ddb01a62a --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar"> + <!-- Show a splash screen on the activity. Automatically removed when + Flutter draws its first frame --> + <item name="android:windowBackground">@drawable/launch_background</item> + </style> + + <style name="Theme.AppCompat.Translucent" parent="@style/Theme.AppCompat.NoActionBar"> + <item name="android:windowNoTitle">true</item> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:colorBackgroundCacheHint">@null</item> + <item name="android:windowIsTranslucent">true</item> + <item name="android:windowAnimationStyle">@android:style/Animation</item> + <item name="android:statusBarColor">@android:color/transparent</item> + </style> +</resources> diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..deaa5f6c624042dbcba56e63aef911d09af87d27 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.vereign.app"> + <!-- Flutter needs it to communicate with the running application + to allow setting breakpoints, to provide hot reload, etc. + --> + <uses-permission android:name="android.permission.INTERNET"/> +</manifest> diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..bb8a303898ca7175c291431ed00b246dea6ab6f9 --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,29 @@ +buildscript { + repositories { + google() + jcenter() + } + + dependencies { + classpath 'com.android.tools.build:gradle:3.2.1' + } +} + +allprojects { + repositories { + google() + jcenter() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000000000000000000000000000000000000..8ce44f61a0dbc1c71dad87809a339d726c27780c --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,4 @@ +org.gradle.jvmargs=-Xmx1536M +android.enableJetifier=true +android.useAndroidX=true + diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000000000000000000000000000000000000..2819f022f1fd30e502134e7f754bc700af9da80b --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000000000000000000000000000000000000..5a2f14fb18f6e8b8c4308ff0f0dc187d9d27a5aa --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,15 @@ +include ':app' + +def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() + +def plugins = new Properties() +def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') +if (pluginsFile.exists()) { + pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } +} + +plugins.each { name, path -> + def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() + include ":$name" + project(":$name").projectDir = pluginDirectory +} diff --git a/assets/images/vereign_icon.png b/assets/images/vereign_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..722f385cd1cb9ee44286425a99ddbe9c52e2b6df Binary files /dev/null and b/assets/images/vereign_icon.png differ diff --git a/assets/images/vereign_logo_text.png b/assets/images/vereign_logo_text.png new file mode 100644 index 0000000000000000000000000000000000000000..25ff6128eb08a56721598ecc0ee0b7fbae6d7275 Binary files /dev/null and b/assets/images/vereign_logo_text.png differ diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000000000000000000000000000000000000..6b4c0f78a7850094f62713858e533a2fc8eda617 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>$(DEVELOPMENT_LANGUAGE)</string> + <key>CFBundleExecutable</key> + <string>App</string> + <key>CFBundleIdentifier</key> + <string>io.flutter.flutter.app</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>App</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1.0</string> + <key>MinimumOSVersion</key> + <string>8.0</string> +</dict> +</plist> diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..e8efba114687be7d0e4e5d026a31f5efd04d20bf --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..399e9340e6f617f68676161ad4a64edcbe483115 --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000000000000000000000000000000000000..7ad4682c3ccd0fffcaf64b8de37469864a147318 --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,74 @@ +# Uncomment this line to define a global platform for your project +platform :ios, '10.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def parse_KV_file(file, separator='=') + file_abs_path = File.expand_path(file) + if !File.exists? file_abs_path + return []; + end + pods_ary = [] + skip_line_start_symbols = ["#", "/"] + File.foreach(file_abs_path) { |line| + next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ } + plugin = line.split(pattern=separator) + if plugin.length == 2 + podname = plugin[0].strip() + path = plugin[1].strip() + podpath = File.expand_path("#{path}", file_abs_path) + pods_ary.push({:name => podname, :path => podpath}); + else + puts "Invalid plugin specification: #{line}" + end + } + return pods_ary +end + +target 'Runner' do + use_frameworks! + + # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock + # referring to absolute paths on developers' machines. + system('rm -rf .symlinks') + system('mkdir -p .symlinks/plugins') + + # Flutter Pods + generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig') + if generated_xcode_build_settings.empty? + puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first." + end + generated_xcode_build_settings.map { |p| + if p[:name] == 'FLUTTER_FRAMEWORK_DIR' + symlink = File.join('.symlinks', 'flutter') + File.symlink(File.dirname(p[:path]), symlink) + pod 'Flutter', :path => File.join(symlink, File.basename(p[:path])) + end + } + + # Plugin Pods + plugin_pods = parse_KV_file('../.flutter-plugins') + plugin_pods.map { |p| + symlink = File.join('.symlinks', 'plugins', p[:name]) + File.symlink(p[:path], symlink) + pod p[:name], :path => File.join(symlink, 'ios') + } +end + +# Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system. +install! 'cocoapods', :disable_input_output_paths => true + +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings['ENABLE_BITCODE'] = 'NO' + end + end +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000000000000000000000000000000000000..19291101caa84057045aaf294209c0ffb6389f01 --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,57 @@ +PODS: + - AppAuth (1.0.0): + - AppAuth/Core (= 1.0.0) + - AppAuth/ExternalUserAgent (= 1.0.0) + - AppAuth/Core (1.0.0) + - AppAuth/ExternalUserAgent (1.0.0) + - Flutter (1.0.0) + - flutter_app_auth_wrapper (0.0.1): + - AppAuth + - Flutter + - flutter_web_browser (0.11.0): + - Flutter + - shared_preferences (0.0.1): + - Flutter + - uni_links (0.0.1): + - Flutter + - url_launcher (0.0.1): + - Flutter + +DEPENDENCIES: + - Flutter (from `.symlinks/flutter/ios`) + - flutter_app_auth_wrapper (from `.symlinks/plugins/flutter_app_auth_wrapper/ios`) + - flutter_web_browser (from `.symlinks/plugins/flutter_web_browser/ios`) + - shared_preferences (from `.symlinks/plugins/shared_preferences/ios`) + - uni_links (from `.symlinks/plugins/uni_links/ios`) + - url_launcher (from `.symlinks/plugins/url_launcher/ios`) + +SPEC REPOS: + https://github.com/cocoapods/specs.git: + - AppAuth + +EXTERNAL SOURCES: + Flutter: + :path: ".symlinks/flutter/ios" + flutter_app_auth_wrapper: + :path: ".symlinks/plugins/flutter_app_auth_wrapper/ios" + flutter_web_browser: + :path: ".symlinks/plugins/flutter_web_browser/ios" + shared_preferences: + :path: ".symlinks/plugins/shared_preferences/ios" + uni_links: + :path: ".symlinks/plugins/uni_links/ios" + url_launcher: + :path: ".symlinks/plugins/url_launcher/ios" + +SPEC CHECKSUMS: + AppAuth: c42547576838bf025b852736dd9b8a1c943fe68f + Flutter: 58dd7d1b27887414a370fcccb9e645c08ffd7a6a + flutter_app_auth_wrapper: e194830013782a9a914171728299f8f5b285b4ba + flutter_web_browser: bdea232160dec44dec86540bee05168cc844ef7c + shared_preferences: 1feebfa37bb57264736e16865e7ffae7fc99b523 + uni_links: d97da20c7701486ba192624d99bffaaffcfc298a + url_launcher: 0067ddb8f10d36786672aa0722a21717dba3a298 + +PODFILE CHECKSUM: 097b64e1c00903a097fa4231dd174c10dfb3b629 + +COCOAPODS: 1.7.5 diff --git a/ios/Runner-Bridging-Header.h b/ios/Runner-Bridging-Header.h new file mode 100644 index 0000000000000000000000000000000000000000..1b2cb5d6d09fe5019d2f930632eaa15b4e51aedc --- /dev/null +++ b/ios/Runner-Bridging-Header.h @@ -0,0 +1,4 @@ +// +// Use this file to import your target's public headers that you would like to expose to Swift. +// + diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000000000000000000000000000000000000..4f5087c5c593c409f673e6910779f4745dc615ad --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,934 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 2B7C3A4D2AAA9093CF166788 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 243F8ED4CD2745551915608C /* Pods_Runner.framework */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; + 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; + 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; + 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; + 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, + 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 01FCA16E363494253C1046FA /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; }; + 11CD157622E0938300C26878 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; }; + 11DC825522E749E300946AFB /* development.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = development.xcconfig; sourceTree = "<group>"; }; + 11DC825822E74FF300946AFB /* production.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = production.xcconfig; sourceTree = "<group>"; }; + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; + 243F8ED4CD2745551915608C /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 35884CBCA3F9937CF00C549A /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; + 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; }; + 4E9F4BAD0684D8942060287A /* Pods-Runner.debug-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-development.xcconfig"; sourceTree = "<group>"; }; + 545ED105C35A59118B58FA1D /* Pods-Runner.debug-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-production.xcconfig"; sourceTree = "<group>"; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; }; + 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; }; + 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; }; + 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = "<group>"; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; + B1242E9899F66FF7989E93F7 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; }; + D89BBF2DBFB63748BFF02F5F /* Pods-Runner.release-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-production.xcconfig"; sourceTree = "<group>"; }; + FA1C5AC084313913B0505E05 /* Pods-Runner.release-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-development.xcconfig"; sourceTree = "<group>"; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, + 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, + 2B7C3A4D2AAA9093CF166788 /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 4A245927C125EE2E479434E7 /* Pods */ = { + isa = PBXGroup; + children = ( + B1242E9899F66FF7989E93F7 /* Pods-Runner.debug.xcconfig */, + 35884CBCA3F9937CF00C549A /* Pods-Runner.release.xcconfig */, + 01FCA16E363494253C1046FA /* Pods-Runner.profile.xcconfig */, + 4E9F4BAD0684D8942060287A /* Pods-Runner.debug-development.xcconfig */, + 545ED105C35A59118B58FA1D /* Pods-Runner.debug-production.xcconfig */, + D89BBF2DBFB63748BFF02F5F /* Pods-Runner.release-production.xcconfig */, + FA1C5AC084313913B0505E05 /* Pods-Runner.release-development.xcconfig */, + ); + path = Pods; + sourceTree = "<group>"; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B80C3931E831B6300D905FE /* App.framework */, + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEBA1CF902C7004384FC /* Flutter.framework */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + 11DC825522E749E300946AFB /* development.xcconfig */, + 11DC825822E74FF300946AFB /* production.xcconfig */, + ); + name = Flutter; + sourceTree = "<group>"; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 4A245927C125EE2E479434E7 /* Pods */, + D6B2911E1033FC3B2F096413 /* Frameworks */, + 11CD157622E0938300C26878 /* Runner-Bridging-Header.h */, + ); + sourceTree = "<group>"; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = "<group>"; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, + 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 97C146F11CF9000F007C117D /* Supporting Files */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + ); + path = Runner; + sourceTree = "<group>"; + }; + 97C146F11CF9000F007C117D /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 97C146F21CF9000F007C117D /* main.m */, + ); + name = "Supporting Files"; + sourceTree = "<group>"; + }; + D6B2911E1033FC3B2F096413 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 243F8ED4CD2745551915608C /* Pods_Runner.framework */, + ); + name = Frameworks; + sourceTree = "<group>"; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + B6F60154843142B9D8B26264 /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + 7721C9B69B24BEDEC782400A /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1020; + ORGANIZATIONNAME = "The Chromium Authors"; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + DevelopmentTeam = 825ANDQ593; + LastSwiftMigration = 1020; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; + }; + 7721C9B69B24BEDEC782400A /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; + B6F60154843142B9D8B26264 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, + 97C146F31CF9000F007C117D /* main.m in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = "<group>"; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = "<group>"; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 11DC825622E74A3100946AFB /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825522E749E300946AFB /* development.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = "Debug-development"; + }; + 11DC825722E74A3100946AFB /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825522E749E300946AFB /* development.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = "Debug-development"; + }; + 11DC825922E7502B00946AFB /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825822E74FF300946AFB /* production.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = "Debug-production"; + }; + 11DC825A22E7502B00946AFB /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825822E74FF300946AFB /* production.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = "Debug-production"; + }; + 11DC825D22E7504800946AFB /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825522E749E300946AFB /* development.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-development"; + }; + 11DC825E22E7504800946AFB /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825522E749E300946AFB /* development.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = "Release-development"; + }; + 11DC825F22E7505000946AFB /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825822E74FF300946AFB /* production.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-production"; + }; + 11DC826022E7505000946AFB /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11DC825822E74FF300946AFB /* production.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = "Release-production"; + }; + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = 825ANDQ593; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.vereign.app; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner-Bridging-Header.h"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 11DC825622E74A3100946AFB /* Debug-development */, + 11DC825922E7502B00946AFB /* Debug-production */, + 97C147041CF9000F007C117D /* Release */, + 11DC825F22E7505000946AFB /* Release-production */, + 11DC825D22E7504800946AFB /* Release-development */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 11DC825722E74A3100946AFB /* Debug-development */, + 11DC825A22E7502B00946AFB /* Debug-production */, + 97C147071CF9000F007C117D /* Release */, + 11DC826022E7505000946AFB /* Release-production */, + 11DC825E22E7504800946AFB /* Release-development */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000000000000000000000000000000000000..1d526a16ed0f1cd0c2409d848bf489b93fefa3b2 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Workspace + version = "1.0"> + <FileRef + location = "group:Runner.xcodeproj"> + </FileRef> +</Workspace> diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000000000000000000000000000000000000..18d981003d68d0546c4804ac2ff47dd97c6e7921 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>IDEDidComputeMac32BitWarning</key> + <true/> +</dict> +</plist> diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000000000000000000000000000000000000..a28140cfdb3ff9b7a11a9497b84546d615db2afa --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Scheme + LastUpgradeVersion = "1020" + version = "1.3"> + <BuildAction + parallelizeBuildables = "YES" + buildImplicitDependencies = "YES"> + <BuildActionEntries> + <BuildActionEntry + buildForTesting = "YES" + buildForRunning = "YES" + buildForProfiling = "YES" + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildActionEntry> + </BuildActionEntries> + </BuildAction> + <TestAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + shouldUseLaunchSchemeArgsEnv = "YES"> + <Testables> + </Testables> + <MacroExpansion> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </MacroExpansion> + <AdditionalOptions> + </AdditionalOptions> + </TestAction> + <LaunchAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + launchStyle = "0" + useCustomWorkingDirectory = "NO" + ignoresPersistentStateOnLaunch = "NO" + debugDocumentVersioning = "YES" + debugServiceExtension = "internal" + allowLocationSimulation = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + <AdditionalOptions> + </AdditionalOptions> + </LaunchAction> + <ProfileAction + buildConfiguration = "Profile" + shouldUseLaunchSchemeArgsEnv = "YES" + savedToolIdentifier = "" + useCustomWorkingDirectory = "NO" + debugDocumentVersioning = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + </ProfileAction> + <AnalyzeAction + buildConfiguration = "Debug"> + </AnalyzeAction> + <ArchiveAction + buildConfiguration = "Release" + revealArchiveInOrganizer = "YES"> + </ArchiveAction> +</Scheme> diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme new file mode 100644 index 0000000000000000000000000000000000000000..070dcc01088fafcb8456d97746866c29febf81b4 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Scheme + LastUpgradeVersion = "1030" + version = "1.3"> + <BuildAction + parallelizeBuildables = "YES" + buildImplicitDependencies = "YES"> + <BuildActionEntries> + <BuildActionEntry + buildForTesting = "YES" + buildForRunning = "YES" + buildForProfiling = "YES" + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildActionEntry> + </BuildActionEntries> + </BuildAction> + <TestAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + shouldUseLaunchSchemeArgsEnv = "YES"> + <Testables> + </Testables> + <MacroExpansion> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </MacroExpansion> + <AdditionalOptions> + </AdditionalOptions> + </TestAction> + <LaunchAction + buildConfiguration = "Debug-development" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + launchStyle = "0" + useCustomWorkingDirectory = "NO" + ignoresPersistentStateOnLaunch = "NO" + debugDocumentVersioning = "YES" + debugServiceExtension = "internal" + allowLocationSimulation = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + <AdditionalOptions> + </AdditionalOptions> + </LaunchAction> + <ProfileAction + buildConfiguration = "Release" + shouldUseLaunchSchemeArgsEnv = "YES" + savedToolIdentifier = "" + useCustomWorkingDirectory = "NO" + debugDocumentVersioning = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + </ProfileAction> + <AnalyzeAction + buildConfiguration = "Debug"> + </AnalyzeAction> + <ArchiveAction + buildConfiguration = "Debug-development" + revealArchiveInOrganizer = "YES"> + </ArchiveAction> +</Scheme> diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme new file mode 100644 index 0000000000000000000000000000000000000000..9bacab5a653ddf4d641628abf214ab299a3be56a --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Scheme + LastUpgradeVersion = "1030" + version = "1.3"> + <BuildAction + parallelizeBuildables = "YES" + buildImplicitDependencies = "YES"> + <BuildActionEntries> + <BuildActionEntry + buildForTesting = "YES" + buildForRunning = "YES" + buildForProfiling = "YES" + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildActionEntry> + </BuildActionEntries> + </BuildAction> + <TestAction + buildConfiguration = "Debug" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + shouldUseLaunchSchemeArgsEnv = "YES"> + <Testables> + </Testables> + <MacroExpansion> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </MacroExpansion> + <AdditionalOptions> + </AdditionalOptions> + </TestAction> + <LaunchAction + buildConfiguration = "Debug-production" + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + launchStyle = "0" + useCustomWorkingDirectory = "NO" + ignoresPersistentStateOnLaunch = "NO" + debugDocumentVersioning = "YES" + debugServiceExtension = "internal" + allowLocationSimulation = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + <AdditionalOptions> + </AdditionalOptions> + </LaunchAction> + <ProfileAction + buildConfiguration = "Release" + shouldUseLaunchSchemeArgsEnv = "YES" + savedToolIdentifier = "" + useCustomWorkingDirectory = "NO" + debugDocumentVersioning = "YES"> + <BuildableProductRunnable + runnableDebuggingMode = "0"> + <BuildableReference + BuildableIdentifier = "primary" + BlueprintIdentifier = "97C146ED1CF9000F007C117D" + BuildableName = "Runner.app" + BlueprintName = "Runner" + ReferencedContainer = "container:Runner.xcodeproj"> + </BuildableReference> + </BuildableProductRunnable> + </ProfileAction> + <AnalyzeAction + buildConfiguration = "Debug"> + </AnalyzeAction> + <ArchiveAction + buildConfiguration = "Release-production" + revealArchiveInOrganizer = "YES"> + </ArchiveAction> +</Scheme> diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000000000000000000000000000000000000..21a3cc14c74e969ab1548274a8512ebfecc40f78 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Workspace + version = "1.0"> + <FileRef + location = "group:Runner.xcodeproj"> + </FileRef> + <FileRef + location = "group:Pods/Pods.xcodeproj"> + </FileRef> +</Workspace> diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000000000000000000000000000000000000..18d981003d68d0546c4804ac2ff47dd97c6e7921 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>IDEDidComputeMac32BitWarning</key> + <true/> +</dict> +</plist> diff --git a/ios/Runner/AppDelegate.h b/ios/Runner/AppDelegate.h new file mode 100644 index 0000000000000000000000000000000000000000..36e21bbf9cf407bfa7968f28d35675da72c6c6c0 --- /dev/null +++ b/ios/Runner/AppDelegate.h @@ -0,0 +1,6 @@ +#import <Flutter/Flutter.h> +#import <UIKit/UIKit.h> + +@interface AppDelegate : FlutterAppDelegate + +@end diff --git a/ios/Runner/AppDelegate.m b/ios/Runner/AppDelegate.m new file mode 100644 index 0000000000000000000000000000000000000000..59a72e90be12e0aef464a1c3173b632db6237fd8 --- /dev/null +++ b/ios/Runner/AppDelegate.m @@ -0,0 +1,13 @@ +#include "AppDelegate.h" +#include "GeneratedPluginRegistrant.h" + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application + didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + [GeneratedPluginRegistrant registerWithRegistry:self]; + // Override point for customization after application launch. + return [super application:application didFinishLaunchingWithOptions:launchOptions]; +} + +@end diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000000000000000000000000000000000000..d36b1fab2d9dea668a4f83df94d525897d9e68dd --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..1d282c2183df878feb2bc6ee202793299b5ffe33 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..d92fcdea8e64697530a3cb19be92d5abc9e041b0 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..49b0623e3946f643c0732735212cf6bed4134c2c Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..79173d6eed52721a9fc6212ed7c488904ba8e8b4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..f805c5b09a3af4a64c6e460533301dec9350df50 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd72f7da77309e2907daac1ad1f43b10c267b38 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..b7757d771e8f8783b9a4db66f7173ae2667c5f70 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..49b0623e3946f643c0732735212cf6bed4134c2c Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..67c0b134fafa0b365c5f3bbd607a4eb612569819 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..ba9de6f431c0bda81778aa64433fa143701b4a44 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..ba9de6f431c0bda81778aa64433fa143701b4a44 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..48cf6f681cd7c9ea963eafbb2dd9404d8834dfea Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..678724994583cb863279947970284b5813668692 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..472e20f7b6e3524350f4af82331809e7f5899614 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c5749ad1d5985f293910ee8a500e89dc9bb642 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000000000000000000000000000000000000..0bedcf2fd46788ae3a01a423467513ff59b5c120 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000000000000000000000000000000000000..89c2725b70f1882be97f5214fafe22d27a0ec01e --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000000000000000000000000000000000000..f2e259c7c9390ff69a6bbe1e0907e6dc366848e7 --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> + <dependencies> + <deployment identifier="iOS"/> + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/> + </dependencies> + <scenes> + <!--View Controller--> + <scene sceneID="EHf-IW-A2E"> + <objects> + <viewController id="01J-lp-oVM" sceneMemberID="viewController"> + <layoutGuides> + <viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/> + <viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/> + </layoutGuides> + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4"> + </imageView> + </subviews> + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> + <constraints> + <constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/> + <constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/> + </constraints> + </view> + </viewController> + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> + </objects> + <point key="canvasLocation" x="53" y="375"/> + </scene> + </scenes> + <resources> + <image name="LaunchImage" width="168" height="185"/> + </resources> +</document> diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000000000000000000000000000000000000..f3c28516fb38e64d88cfcf5fb1791175df078f2f --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r"> + <dependencies> + <deployment identifier="iOS"/> + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/> + </dependencies> + <scenes> + <!--Flutter View Controller--> + <scene sceneID="tne-QT-ifu"> + <objects> + <viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController"> + <layoutGuides> + <viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/> + <viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/> + </layoutGuides> + <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> + <rect key="frame" x="0.0" y="0.0" width="600" height="600"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> + </view> + </viewController> + <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/> + </objects> + </scene> + </scenes> +</document> diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..41d33c2d12c39f10e7816017e51c54980819a45b --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>$(DEVELOPMENT_LANGUAGE)</string> + <key>CFBundleDisplayName</key> + <string>Vereign$(bundle_name_suffix)</string> + <key>CFBundleExecutable</key> + <string>$(EXECUTABLE_NAME)</string> + <key>CFBundleIdentifier</key> + <string>$(PRODUCT_BUNDLE_IDENTIFIER)$(bundle_suffix)</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Vereign</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>$(FLUTTER_BUILD_NAME)</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleURLTypes</key> + <array> + <dict> + <key>CFBundleIdentifier</key> + <string></string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>CFBundleURLSchemes</key> + <array> + <string>app://com.vereign.app/oauth2</string> + </array> + </dict> + <dict> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>CFBundleURLName</key> + <string>com.vereign.app/authorize</string> + <key>CFBundleURLSchemes</key> + <array> + <string>app</string> + </array> + </dict> + </array> + <key>CFBundleVersion</key> + <string>$(FLUTTER_BUILD_NUMBER)</string> + <key>LSRequiresIPhoneOS</key> + <true/> + <key>UILaunchStoryboardName</key> + <string>LaunchScreen</string> + <key>UIMainStoryboardFile</key> + <string>Main</string> + <key>UISupportedInterfaceOrientations</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>UISupportedInterfaceOrientations~ipad</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationPortraitUpsideDown</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>UIViewControllerBasedStatusBarAppearance</key> + <false/> + <key>io.flutter.embedded_views_preview</key> + <string>YES</string> +</dict> +</plist> diff --git a/ios/Runner/main.m b/ios/Runner/main.m new file mode 100644 index 0000000000000000000000000000000000000000..dff6597e4513dcf90c13b17495c78dd1069cdb20 --- /dev/null +++ b/ios/Runner/main.m @@ -0,0 +1,9 @@ +#import <Flutter/Flutter.h> +#import <UIKit/UIKit.h> +#import "AppDelegate.h" + +int main(int argc, char* argv[]) { + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} diff --git a/ios/build/XCBuildData/050f6418e18d1088675935f467698227-desc.xcbuild b/ios/build/XCBuildData/050f6418e18d1088675935f467698227-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..33789360be377c83c83db98a80bd1e368f4eef21 Binary files /dev/null and b/ios/build/XCBuildData/050f6418e18d1088675935f467698227-desc.xcbuild differ diff --git a/ios/build/XCBuildData/050f6418e18d1088675935f467698227-manifest.xcbuild b/ios/build/XCBuildData/050f6418e18d1088675935f467698227-manifest.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..32ddc91a1f157ad81a06664af81ba2d32ba9858d --- /dev/null +++ b/ios/build/XCBuildData/050f6418e18d1088675935f467698227-manifest.xcbuild @@ -0,0 +1,100 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": ["<all>"] + +nodes: + "/Users/igorwork/development/vereign/mobile_app/ios/build": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner": {"is-mutated":true} + "<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + "<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>": {"is-command-timestamp":true} + "<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + "<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>": {"is-command-timestamp":true} + "<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>": {"is-command-timestamp":true} + +commands: + "<all>": {"tool":"phony","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"],"outputs":["<all>"]} + "<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--entitlements","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","--timestamp=none","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"233f842cf8dd3896bf27cd8bc21fc681"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--timestamp=none","--preserve-metadata=identifier,entitlements,flags","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"20c1f9c456eb645435b4547c5ecf2350"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--timestamp=none","--preserve-metadata=identifier,entitlements,flags","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"ab8c47e6f59f2498c82515aeb133dbde"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets/","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone10,6","--filter-for-device-os-version","12.3.1","--sticker-pack-identifier-prefix","com.vereign.app.sticker-pack.","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--platform","iphoneos","--product-type","com.apple.product-type.application","--compile","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"22e46a07f045d7d6c76ae49394b248b9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"a691683d1b442e12569f992f6701e86a"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c928d597c8462dfa50d04e56c96a4b03"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"6cfdaa519e97a13c22ff65751a235fbd"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d"],"deps-style":"makefile","signature":"be7b52e5b3996bc548492088f0cd08a1"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"454aa5a91179573e1d82e46aaa6f69d2"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"f3b7b1e5f8f7d8392679ecd7265a9844"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"deps":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig": {"tool":"file-copy","description":"CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","/Users/igorwork/development/vereign/mobile_app/ios/build"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64": {"tool":"shell","description":"Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-arch","arm64","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-L/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-L/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-filelist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-miphoneos-version-min=8.0","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","Flutter","-framework","App","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"8.0"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"1c48cf7d780c69f5b388e96334fc0633"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--link","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"58d61d5b01685fb20041a572a63968c9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"0b75fabbd57ff97f03dbf8aae8f4dcce"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"d72f27c83752c62bafd7996647096b55"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"1d7e65082e3729aa4a8ae9912cc90522"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"a6a0df2fdcba9adbcd58e697b0b62ee8"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessProductPackaging /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent": {"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessProductPackaging /Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision": {"tool":"process-product-provisioning-profile","description":"ProcessProductPackaging /Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","inputs":["/Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/touch","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"c42078064d605f15cc7e1268cdf6403d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-desc.xcbuild b/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..17b9b967e64d5405584e78eb7b7a9549d4975cc4 Binary files /dev/null and b/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-desc.xcbuild differ diff --git a/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-manifest.xcbuild b/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-manifest.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..51d6c0fb291b48bd842646bc40e8efbe6d6da009 --- /dev/null +++ b/ios/build/XCBuildData/1f6d9eebed9eedd4518135e47e45f97f-manifest.xcbuild @@ -0,0 +1,85 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": ["<all>"] + +nodes: + "/Users/igorwork/development/vereign/mobile_app/ios/build": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"is-mutated":true} + "<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + +commands: + "<all>": {"tool":"phony","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"],"outputs":["<all>"]} + "<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets/","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone10,6","--filter-for-device-os-version","12.3.1","--sticker-pack-identifier-prefix","com.vereign.app.sticker-pack.","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--platform","iphoneos","--product-type","com.apple.product-type.application","--compile","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"22e46a07f045d7d6c76ae49394b248b9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"a691683d1b442e12569f992f6701e86a"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c928d597c8462dfa50d04e56c96a4b03"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"6cfdaa519e97a13c22ff65751a235fbd"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d"],"deps-style":"makefile","signature":"be7b52e5b3996bc548492088f0cd08a1"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"454aa5a91179573e1d82e46aaa6f69d2"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"f3b7b1e5f8f7d8392679ecd7265a9844"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"deps":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig": {"tool":"file-copy","description":"CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","/Users/igorwork/development/vereign/mobile_app/ios/build"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64": {"tool":"shell","description":"Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-arch","arm64","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-L/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-L/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-filelist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-miphoneos-version-min=8.0","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","Flutter","-framework","App","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"8.0"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"1c48cf7d780c69f5b388e96334fc0633"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--link","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"58d61d5b01685fb20041a572a63968c9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"deaaf21c91ea3f09f3661caf59c3a368"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"19d76bd4cfed561c2e8a52cee31bd405"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"5cd2f9077825914c2f3566fe92933bec"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"3669985f69a8bf4aa54fa817806ef71d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/touch","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"c42078064d605f15cc7e1268cdf6403d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-desc.xcbuild b/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..98975897f36ad828ee7e2b9cd1964861bbf31c6a Binary files /dev/null and b/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-desc.xcbuild differ diff --git a/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-manifest.xcbuild b/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-manifest.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..51d6c0fb291b48bd842646bc40e8efbe6d6da009 --- /dev/null +++ b/ios/build/XCBuildData/37175cf74a4062c67b64f5ce03ae05b3-manifest.xcbuild @@ -0,0 +1,85 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": ["<all>"] + +nodes: + "/Users/igorwork/development/vereign/mobile_app/ios/build": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"is-mutated":true} + "<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + +commands: + "<all>": {"tool":"phony","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"],"outputs":["<all>"]} + "<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets/","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone10,6","--filter-for-device-os-version","12.3.1","--sticker-pack-identifier-prefix","com.vereign.app.sticker-pack.","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--platform","iphoneos","--product-type","com.apple.product-type.application","--compile","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"22e46a07f045d7d6c76ae49394b248b9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"a691683d1b442e12569f992f6701e86a"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c928d597c8462dfa50d04e56c96a4b03"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"6cfdaa519e97a13c22ff65751a235fbd"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d"],"deps-style":"makefile","signature":"be7b52e5b3996bc548492088f0cd08a1"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"454aa5a91179573e1d82e46aaa6f69d2"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"f3b7b1e5f8f7d8392679ecd7265a9844"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"deps":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig": {"tool":"file-copy","description":"CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","/Users/igorwork/development/vereign/mobile_app/ios/build"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64": {"tool":"shell","description":"Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-arch","arm64","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-L/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-L/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-filelist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-miphoneos-version-min=8.0","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","Flutter","-framework","App","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"8.0"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"1c48cf7d780c69f5b388e96334fc0633"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--link","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"58d61d5b01685fb20041a572a63968c9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"deaaf21c91ea3f09f3661caf59c3a368"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"19d76bd4cfed561c2e8a52cee31bd405"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"5cd2f9077825914c2f3566fe92933bec"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"3669985f69a8bf4aa54fa817806ef71d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/touch","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"c42078064d605f15cc7e1268cdf6403d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-desc.xcbuild b/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..f40419878e4d7b2efdc78b813ba126d5dff3bec0 Binary files /dev/null and b/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-desc.xcbuild differ diff --git a/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-manifest.xcbuild b/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-manifest.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..9ca306e4af785bda453210ec95b12e5a8f9383da --- /dev/null +++ b/ios/build/XCBuildData/68c2ee6dfd831a8ef09d8a6ea8d2ef43-manifest.xcbuild @@ -0,0 +1,100 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": ["<all>"] + +nodes: + "/Users/igorwork/development/vereign/mobile_app/ios/build": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter": {"is-mutated":true} + "/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner": {"is-mutated":true} + "<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + "<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>": {"is-command-timestamp":true} + "<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>": {"is-command-timestamp":true} + "<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>": {"is-command-timestamp":true} + "<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>": {"is-command-timestamp":true} + +commands: + "<all>": {"tool":"phony","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"],"outputs":["<all>"]} + "<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/igorwork/development/vereign/mobile_app/ios/build","/Users/igorwork/development/vereign/mobile_app/ios/build"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--end>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-Debug-development-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Runner.dst>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--modules-ready>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>"]} + "Gate target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>","<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"outputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--entitlements","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","--timestamp=none","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"233f842cf8dd3896bf27cd8bc21fc681"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--timestamp=none","--preserve-metadata=identifier,entitlements,flags","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"20c1f9c456eb645435b4547c5ecf2350"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"shell","description":"CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature","<CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"],"args":["/usr/bin/codesign","--force","--sign","4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","--timestamp=none","--preserve-metadata=identifier,entitlements,flags","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"ab8c47e6f59f2498c82515aeb133dbde"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app /Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets/","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone10,6","--filter-for-device-os-version","12.3.1","--sticker-pack-identifier-prefix","com.vereign.app.sticker-pack.","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--platform","iphoneos","--product-type","com.apple.product-type.application","--compile","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"22e46a07f045d7d6c76ae49394b248b9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/AppDelegate.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"a691683d1b442e12569f992f6701e86a"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c928d597c8462dfa50d04e56c96a4b03"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"6cfdaa519e97a13c22ff65751a235fbd"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o /Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--generated-headers>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-arch","arm64","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-miphoneos-version-min=8.0","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/igorwork/Library/Developer/Xcode/DerivedData/Runner-drrcsdfmfuxbsxcsffihjkubnynv/Index/DataStore","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d","--serialize-diagnostics","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.dia","-c","/Users/igorwork/development/vereign/mobile_app/ios/Runner/main.m","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.d"],"deps-style":"makefile","signature":"be7b52e5b3996bc548492088f0cd08a1"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"454aa5a91179573e1d82e46aaa6f69d2"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--compilation-directory","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj","/Users/igorwork/development/vereign/mobile_app/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"f3b7b1e5f8f7d8392679ecd7265a9844"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/AppFrameworkInfo.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["<CopySwiftStdlib /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"deps":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig": {"tool":"file-copy","description":"CpResource /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Debug.xcconfig/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Debug.xcconfig"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/igorwork/development/vereign/mobile_app/ios/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/igorwork/development/vereign/mobile_app/ios/build>","/Users/igorwork/development/vereign/mobile_app/ios/build"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64": {"tool":"shell","description":"Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/main.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner","<Linked Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner>","<TRIGGER: Ld /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner normal arm64>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-arch","arm64","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","-L/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-L/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links","-F/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher","-F/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios","-F/Users/igorwork/development/vereign/mobile_app/ios/Flutter","-filelist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-miphoneos-version-min=8.0","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","AppAuth","-framework","Flutter","-framework","SafariServices","-framework","flutter_app_auth_wrapper","-framework","flutter_web_browser","-framework","uni_links","-framework","url_launcher","-weak_framework","AuthenticationServices","-framework","Flutter","-framework","App","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Runner"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"8.0"},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","deps":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"1c48cf7d780c69f5b388e96334fc0633"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","8.0","--output-format","human-readable-text","--link","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"58d61d5b01685fb20041a572a63968c9"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>","<TRIGGER: MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--start>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks","<MkDir /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework/App","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/App.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/App.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework": {"tool":"file-copy","description":"PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework/","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter","<PbxCp /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>","<TRIGGER: PBXCp /Users/igorwork/development/vereign/mobile_app/ios/Flutter/Flutter.framework /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Frameworks/Flutter.framework>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6df9eb60ff613d36b3b9942d1a6e1e7c6aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"0b75fabbd57ff97f03dbf8aae8f4dcce"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dff1eee2015e8ff5ebcd27678f788c2826>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"d72f27c83752c62bafd7996647096b55"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/igorwork/development/vereign/mobile_app/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"1d7e65082e3729aa4a8ae9912cc90522"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<execute-shell-script-7eaf0b5f9294dd875cf816c8dc94c6dfa0e77cc467c7479a7b8b040215e251aa>"],"args":["/bin/sh","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"igorwork","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"YES","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","ARCHS":"arm64","ARCHS_STANDARD":"armv7 arm64","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"armv7 arm64","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"825ANDQ593.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CACHE_ROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CCHROOT":"/var/folders/cq/9rkfwdxd1z1g579zl_x59c6r0000gq/C/com.apple.DeveloperTools/10.3-10G8/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/igorwork/development/vereign/mobile_app/ios/build/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug-development","CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.4.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator12.4","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4","DERIVED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"825ANDQ593","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"4B0CF1CA341CD9AEC0EF440F7C1C228289E077FE","EXPANDED_CODE_SIGN_IDENTITY_NAME":"iPhone Developer: Stephan Morphis (R5VTVKG6Y8)","EXPANDED_PROVISIONING_PROFILE":"f165d174-91da-44fe-bd23-0ed4e66d9742","FILE_LIST":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher\" \"/Users/igorwork/development/vereign/mobile_app/ios/Pods/../.symlinks/flutter/ios\" /Users/igorwork/development/vereign/mobile_app/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 COCOAPODS=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/include \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/AppAuth/AppAuth.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_app_auth_wrapper/flutter_app_auth_wrapper.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/flutter_web_browser/flutter_web_browser.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/uni_links/uni_links.framework/Headers\" \"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/url_launcher/url_launcher.framework/Headers\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/igorwork","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"igorwork","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"8.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos /Users/igorwork/development/vereign/mobile_app/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFLocalizedString","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","LOCSYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"18F132","MAC_OS_X_VERSION_ACTUAL":"101405","MAC_OS_X_VERSION_MAJOR":"101400","MAC_OS_X_VERSION_MINOR":"1405","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","MODULE_CACHE_DIR":"/Users/igorwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\" -framework \"AppAuth\" -framework \"Flutter\" -framework \"SafariServices\" -framework \"flutter_app_auth_wrapper\" -framework \"flutter_web_browser\" -framework \"uni_links\" -framework \"url_launcher\" -weak_framework \"AuthenticationServices\"","OTHER_SWIFT_FLAGS":" -D COCOAPODS -D COCOAPODS","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"16G73","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build","PODS_CONFIGURATION_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/.","PODS_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/Pods","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.vereign.app","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/DerivedSources","PROJECT_DIR":"/Users/igorwork/development/vereign/mobile_app/ios","PROJECT_FILE_PATH":"/Users/igorwork/development/vereign/mobile_app/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build","PROJECT_TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_DIR_iphoneos12_4":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.4.sdk","SDK_NAME":"iphoneos12.4","SDK_NAMES":"iphoneos12.4","SDK_PRODUCT_BUILD_VERSION":"16G73","SDK_VERSION":"12.4","SDK_VERSION_ACTUAL":"120400","SDK_VERSION_MAJOR":"120000","SDK_VERSION_MINOR":"400","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios","SRCROOT":"/Users/igorwork/development/vereign/mobile_app/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_VERSION":"4.0","SYMROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos","TARGET_DEVICE_IDENTIFIER":"7db350d25bf1f4f50f6ad677cb838caec1e64b83","TARGET_DEVICE_MODEL":"iPhone10,6","TARGET_DEVICE_OS_VERSION":"12.3.1","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build","TEMP_ROOT":"/Users/igorwork/development/vereign/mobile_app/ios/build","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TeamIdentifierPrefix":"825ANDQ593.","UID":"503","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"igorwork","USER_APPS_DIR":"/Users/igorwork/Applications","USER_LIBRARY_DIR":"/Users/igorwork/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"igorwork","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"10G8","XCODE_VERSION_ACTUAL":"1030","XCODE_VERSION_MAJOR":"1000","XCODE_VERSION_MINOR":"1030","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","bundle_name_suffix":"-dev","bundle_suffix":".dev","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","control-enabled":false,"signature":"a6a0df2fdcba9adbcd58e697b0b62ee8"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist /Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/Runner/Info.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/assetcatalog_generated_info.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/Info.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessProductPackaging /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent": {"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.app.xcent"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:ProcessProductPackaging /Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision": {"tool":"process-product-provisioning-profile","description":"ProcessProductPackaging /Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision","inputs":["/Users/igorwork/Library/MobileDevice/Provisioning Profiles/f165d174-91da-44fe-bd23-0ed4e66d9742.mobileprovision","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app/embedded.mobileprovision"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["<Touch /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"args":["/usr/bin/touch","-c","/Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/igorwork/development/vereign/mobile_app/ios","signature":"c42078064d605f15cc7e1268cdf6403d"} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>","<TRIGGER: CodeSign /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"],"outputs":["<Validate /Users/igorwork/development/vereign/mobile_app/ios/build/Debug-development-iphoneos/Runner.app>"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Entitlements.plist"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--begin-compiling>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-7721C9B69B24BEDEC782400A.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--entry>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/Script-B6F60154843142B9D8B26264.sh"]} + "target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49-:Debug-development:WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml","inputs":["<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer>","<target-Runner-7eaf0b5f9294dd875cf816c8dc94c6df88a783a885d8b0b3beb2e9f90bde3f49--immediate>"],"outputs":["/Users/igorwork/development/vereign/mobile_app/ios/build/Runner.build/Debug-development-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/BuildDescriptionCacheIndex-eb7a396421c0349dd6e9c9e5fae26614 b/ios/build/XCBuildData/BuildDescriptionCacheIndex-eb7a396421c0349dd6e9c9e5fae26614 new file mode 100644 index 0000000000000000000000000000000000000000..e901ad129301abb3554b8a810adae1cc2c9d6d7a Binary files /dev/null and b/ios/build/XCBuildData/BuildDescriptionCacheIndex-eb7a396421c0349dd6e9c9e5fae26614 differ diff --git a/ios/development.xcconfig b/ios/development.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..3d779ed32563d745e45ba5f526d014dc49368710 --- /dev/null +++ b/ios/development.xcconfig @@ -0,0 +1,16 @@ +// +// development.xcconfig +// Runner +// +// Created by Igor Work on 23/07/2019. +// Copyright © 2019 The Chromium Authors. All rights reserved. +// + +// Configuration settings file format documentation can be found at: +// https://help.apple.com/xcode/#/dev745c5c974 + +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Flutter/Generated.xcconfig" + +bundle_suffix = .dev +bundle_name_suffix = -dev diff --git a/ios/production.xcconfig b/ios/production.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..17fad6ad41b610137212fb2603f203ed6fb5c9c4 --- /dev/null +++ b/ios/production.xcconfig @@ -0,0 +1,13 @@ +// +// production.xcconfig +// Runner +// +// Created by Igor Work on 23/07/2019. +// Copyright © 2019 The Chromium Authors. All rights reserved. +// + +// Configuration settings file format documentation can be found at: +// https://help.apple.com/xcode/#/dev745c5c974 + +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Flutter/Generated.xcconfig" diff --git a/lib/config.dart b/lib/config.dart new file mode 100644 index 0000000000000000000000000000000000000000..cbbe9229109a57999eabcdd92f20e05d7fd3a5f3 --- /dev/null +++ b/lib/config.dart @@ -0,0 +1,38 @@ +enum Flavor { + DEVELOPMENT, + PRODUCTION +} + +class Config { + static Flavor appFlavor; + static const DEFAULT_APP_HOST = "https://demo1.vereign.com"; + static const HOSTS = [ + 'https://demo1.vereign.com', + 'https://demo2.vereign.com', + 'https://rosengeorgiev.dev.vereign.com', + 'https://borisdimitrov.dev.vereign.com', + 'https://integration.vereign.com', + 'https://staging.vereign.com', + 'https://damyanmitev.dev.vereign.com', + 'https://gospodinbodurov.dev.vereign.com', + 'https://alexeylunin.dev.vereign.com', + 'https://igormarkin.dev.vereign.com', + 'https://mikhaildorokhovich.dev.vereign.com', + 'https://sashailieva.dev.vereign.com', + 'https://alexanderholodov.dev.vereign.com', + 'https://olguncengiz.dev.vereign.com', + 'https://viktorpopov.dev.vereign.com', + 'https://kalincanov.dev.vereign.com', + 'https://alexeykuklin.dev.vereign.com' + ]; + + static Map<String, String> getOAuthParams({host = DEFAULT_APP_HOST}) { + return { + "clientId": "123123", + "clientSecret": "123123", + "redirectUrl": "app://com.vereign.app/oauth2", + "authEndpoint": "$host/api/oauth2/authorize", + "tokenEndpoint": "$host/api/oauth2/token", + }; + } +} diff --git a/lib/main-dev.dart b/lib/main-dev.dart new file mode 100644 index 0000000000000000000000000000000000000000..77dd13a143bb096450353ad21bc4f089a5c986c0 --- /dev/null +++ b/lib/main-dev.dart @@ -0,0 +1,7 @@ +import 'package:flutter/material.dart'; +import 'package:Vereign/src/app.dart'; +import 'config.dart'; +void main() { + Config.appFlavor = Flavor.DEVELOPMENT; + runApp(App()); +} \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000000000000000000000000000000000000..294fed068aa564278ee0a12570ee975233ca1089 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,7 @@ +import 'package:flutter/material.dart'; +import 'package:Vereign/src/app.dart'; +import 'config.dart'; +void main() { + Config.appFlavor = Flavor.PRODUCTION; + runApp(App()); +} \ No newline at end of file diff --git a/lib/src/app.dart b/lib/src/app.dart new file mode 100644 index 0000000000000000000000000000000000000000..3e2b29d60263127e11faa00ddc88778a5d9eabd1 --- /dev/null +++ b/lib/src/app.dart @@ -0,0 +1,120 @@ +// app.dart +import 'screens/splashscreen.dart'; +import 'package:flutter/material.dart'; +import 'screens/home.dart'; +import 'package:flutter/services.dart'; +import 'dart:async'; +import 'dart:developer'; +import 'package:shared_preferences/shared_preferences.dart'; + +import 'package:uni_links/uni_links.dart'; + +class App extends StatelessWidget { + Future<Widget> initApplication() async { + Uri initialUri; + + try { + initialUri = await getInitialUri(); + } on PlatformException { + initialUri = null; + } on FormatException { + initialUri = null; + } + + final prefs = await SharedPreferences.getInstance(); + final host = prefs.getString('host'); + + return new MainApp(initialUri: initialUri, initialHost: host); + } + + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Vereign', + theme: ThemeData( + primaryColor: Color(0xFFd51d32), + fontFamily: "Arial", + textTheme: TextTheme( + button: TextStyle(color: Colors.white, fontSize: 18.0), + title: TextStyle(color: Colors.red))), + home: new SplashScreen( + navigateAfterFuture: initApplication, + ) + ); + + + } +} + +class MainApp extends StatefulWidget { + MainApp({ @required this.initialUri, this.initialHost }); + final Uri initialUri; + final String initialHost; + + @override + _MainAppState createState() => _MainAppState(); +} + +class _MainAppState extends State<MainApp> { + StreamSubscription _sub; + + String _appMode = ""; + + // Url of the app which invoked OAuth + String _invokerURL; + String _host; + + @override + initState() { + super.initState(); + initUniLinks(); + } + + @override + dispose() { + if (_sub != null) _sub.cancel(); + super.dispose(); + } + + Future<Null> initUniLinks() async { + updateAppMode(widget.initialUri); + + _sub = getUriLinksStream().listen((Uri uri) { + updateAppMode(uri); + }, onError: (err) { + log('got err: $err'); + }); + } + + updateAppMode(Uri uri) { + if (uri?.path == "/authorize") { + setState(() { + _appMode = "oauth"; + _invokerURL = uri.queryParameters["invokerUrl"]; + }); + } else { + setState(() { + _appMode = "app"; + }); + } + } + + setMode(String mode) { + setState(() { + _appMode = mode; + }); + } + + @override + Widget build(BuildContext context) { + return new Scaffold( + appBar: new AppBar(title: Text("Vereign")), + body: Home( + mode: _appMode, + invokerURL: _invokerURL, + setMode: setMode, + host: widget.initialHost + ) + ); + } +} \ No newline at end of file diff --git a/lib/src/screens/home.dart b/lib/src/screens/home.dart new file mode 100644 index 0000000000000000000000000000000000000000..a336e144994788c2e649399288ebdb6afc92cf78 --- /dev/null +++ b/lib/src/screens/home.dart @@ -0,0 +1,202 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_web_browser/flutter_web_browser.dart'; +import 'package:flutter_app_auth_wrapper/flutter_app_auth_wrapper.dart'; +import 'package:url_launcher/url_launcher.dart'; +import 'dart:developer'; +import 'dart:convert'; +import 'dart:async'; +import 'package:shared_preferences/shared_preferences.dart'; + +import '../../config.dart'; + +class Home extends StatefulWidget { + Home({@required this.mode, @required this.invokerURL, @required this.setMode, @required this.host}); + final String mode; + final String invokerURL; + final String host; + final void Function(String) setMode; + + @override + _HomeState createState() => _HomeState(); +} + +class _HomeState extends State<Home> { + String _host = Config.appFlavor == Flavor.DEVELOPMENT ? Config.HOSTS[0] : Config.DEFAULT_APP_HOST; + bool _hidden = true; + + @override + initState() { + super.initState(); + if (widget.host != null) { + setState(() { + _host = widget.host; + }); + } + + showMode(widget.mode); + + FlutterAppAuthWrapper.eventStream().listen((data) { + var token = json.decode(data.toString())["access_token"]; + _showAlert(token); + widget.setMode(""); + }, onError: (error) { + log("Err $error"); + widget.setMode(""); + }); + + Timer( + Duration(seconds: 3), + () { + setState(() { + _hidden = false; + }); + } + ); + } + + Future<void> _showAlert(token) { + return showDialog<void>( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: Text('Authorization success'), + actions: <Widget>[ + FlatButton( + child: Text('Go back'), + onPressed: () async { + Navigator.of(context).pop(); + + log("Open ${widget.invokerURL}"); + try { + await launch("${widget.invokerURL}?token=$token&host=$_host"); + } catch (e) { + log("Error launching url ${widget.invokerURL}"); + } + }, + ), + ], + ); + }, + ); + } + + @override + void didUpdateWidget(Home oldWidget) { + // this method IS called when parent widget passes new "props" + // unlike React, this method IS called _before_ the build + // unlike React, this method ISN'T called after setState() + + if (widget.host != oldWidget.host && widget.host != null) { + setState(() { + _host = widget.host; + }); + } + + if (widget.mode != oldWidget.mode) { + showMode(widget.mode); + } + + super.didUpdateWidget(oldWidget); + } + + showMode(mode) { + if (mode == "app") { + openVereign(); + } else if (mode == "oauth") { + startOAuth(); + } + } + + openVereign() { + FlutterWebBrowser.openWebPage(url: _host, androidToolbarColor: Color(0xFFd51d32)); + } + + startOAuth() { + var params = Config.getOAuthParams(host: _host); + + FlutterAppAuthWrapper.startAuth( + AuthConfig( + clientId: params["clientId"], + clientSecret: params["clientSecret"], + redirectUrl: params["redirectUrl"], + state: "login", + prompt: "consent", + endpoint: AuthEndpoint( + auth: params["authEndpoint"], token: params["tokenEndpoint"]), + scopes: [ + "user_account_status", + "user_territory", + "user_profile" + ], + ), + ); + } + + + + @override + Widget build(BuildContext context) { + if (_hidden) { + return Scaffold(); + } + + var children = <Widget>[ + _urlButton(context, "Open Dashboard", openVereign), + _urlButton(context, "Authorize with Vereign", startOAuth) + ]; + + if (Config.appFlavor == Flavor.DEVELOPMENT) { + children.add( + wrapInContainer( + DropdownButton<String>( + value: _host, + onChanged: (String newValue) async { + setState(() { + _host = newValue; + }); + + final prefs = await SharedPreferences.getInstance(); + prefs.setString("host", newValue); + }, + items: Config.HOSTS + .map<DropdownMenuItem<String>>((String value) { + return DropdownMenuItem<String>( + value: value, + child: Text(value), + ); + }) + .toList(), + ) + ) + ); + } + + return Scaffold( + body: SafeArea( + child: SingleChildScrollView( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.stretch, + children: children + )))); + } + + Widget wrapInContainer(Widget widget) { + return Container( + padding: EdgeInsets.all(10.0), + child: widget, + ); + } + + Widget _urlButton(BuildContext context, String title, listener) { + return wrapInContainer( + FlatButton( + color: Theme.of(context).primaryColor, + textColor: Colors.white, + padding: const EdgeInsets.symmetric(horizontal: 50.0, vertical: 15.0), + child: Text(title), + onPressed: listener + ) + ); + } +} \ No newline at end of file diff --git a/lib/src/screens/splashscreen.dart b/lib/src/screens/splashscreen.dart new file mode 100644 index 0000000000000000000000000000000000000000..02ecd48502bbf0d44259b0c90bc0d5704c468f7e --- /dev/null +++ b/lib/src/screens/splashscreen.dart @@ -0,0 +1,80 @@ +import 'dart:core'; +import 'dart:async'; +import 'package:flutter/material.dart'; + +class SplashScreen extends StatefulWidget { + final dynamic navigateAfterFuture; + SplashScreen({this.navigateAfterFuture}); + + @override + _SplashScreenState createState() => _SplashScreenState(); +} + +class _SplashScreenState extends State<SplashScreen> { + @override + void initState() { + super.initState(); + + load(); + } + + load() async { + var newWidget = await widget.navigateAfterFuture(); + + // Show loader additional 2 seconds + Timer( + Duration(seconds: 1), + () { + Navigator.of(context).pushReplacement(new MaterialPageRoute(builder: (BuildContext context) => newWidget)); + } + ); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: new InkWell( + child:new Stack( + fit: StackFit.expand, + children: <Widget>[ + new Container( + decoration: new BoxDecoration( + color: Color(0xFFd51d32), + ), + ), + new Column( + mainAxisAlignment: MainAxisAlignment.start, + children: <Widget>[ + new Expanded( + flex: 2, + child: new Container( + child: new Image.asset('assets/images/vereign_logo_text.png'), + padding: EdgeInsets.all(40) + ), + ), + Expanded( + flex: 1, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: <Widget>[ + + CircularProgressIndicator( + valueColor: new AlwaysStoppedAnimation<Color>(Colors.white), + ), + Padding( + padding: const EdgeInsets.only(top: 20.0), + ), + new Text('Loading', style: new TextStyle( + color: Colors.white + )) + ], + ), + ), + ], + ), + ], + ), + ), + ); + } +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000000000000000000000000000000000000..72ff10c24912fe6b8bda37fc66e1699a54d054fc --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,247 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: transitive + description: + name: archive + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.10" + args: + dependency: transitive + description: + name: args + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.2" + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.14.11" + convert: + dependency: transitive + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + crypto: + dependency: transitive + description: + name: crypto + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.6" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.2" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_app_auth_wrapper: + dependency: "direct main" + description: + name: flutter_app_auth_wrapper + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.1+3" + flutter_launcher_icons: + dependency: "direct dev" + description: + name: flutter_launcher_icons + url: "https://pub.dartlang.org" + source: hosted + version: "0.7.2+1" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_browser: + dependency: "direct main" + description: + path: "." + ref: HEAD + resolved-ref: "5d169abf4fb4cb994c26173d5a7a3dd13b6921a2" + url: "git@github.com:markin-io/flutter_web_browser.git" + source: git + version: "0.11.0" + image: + dependency: transitive + description: + name: image + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.4" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.5" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.6" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.6.2" + pedantic: + dependency: transitive + description: + name: pedantic + url: "https://pub.dartlang.org" + source: hosted + version: "1.7.0" + petitparser: + dependency: transitive + description: + name: petitparser + url: "https://pub.dartlang.org" + source: hosted + version: "2.4.0" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + url: "https://pub.dartlang.org" + source: hosted + version: "0.5.3+4" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.5" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.9.3" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.5" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.6" + uni_links: + dependency: "direct main" + description: + name: uni_links + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.0" + url_launcher: + dependency: "direct main" + description: + name: url_launcher + url: "https://pub.dartlang.org" + source: hosted + version: "5.1.0" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.8" + xml: + dependency: transitive + description: + name: xml + url: "https://pub.dartlang.org" + source: hosted + version: "3.5.0" + yaml: + dependency: transitive + description: + name: yaml + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.16" +sdks: + dart: ">=2.4.0 <3.0.0" + flutter: ">=1.5.0 <2.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000000000000000000000000000000000000..34c820bf9eaad106bffbac3f75627471a6ef1920 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,84 @@ +name: Vereign +description: Vereign mobile application. + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.1.0 <3.0.0" + +dependencies: + flutter: + sdk: flutter + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^0.1.2 + flutter_web_browser: + # Use + git: git@github.com:markin-io/flutter_web_browser.git + uni_links: 0.2.0 + flutter_app_auth_wrapper: ^0.1.1+3 + url_launcher: 5.1.0 + shared_preferences: 0.5.3+4 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_launcher_icons: "^0.7.2" + +flutter_icons: + android: true + ios: true + image_path: "assets/images/vereign_icon.png" + + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - assets/images/vereign_logo_text.png + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages