diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..ad1cce4 Binary files /dev/null and b/.DS_Store differ diff --git a/Task1/.DS_Store b/Task1/.DS_Store new file mode 100644 index 0000000..6023b29 Binary files /dev/null and b/Task1/.DS_Store differ diff --git a/Task1/README.md b/Task1/README.md index 60d53df..5e96da6 100644 --- a/Task1/README.md +++ b/Task1/README.md @@ -1,14 +1,19 @@ -# Task 1 +# task_1 -## Problem Statement: -- [File](https://docs.google.com/document/d/1paq9RIW60xJW92ZAC6aUnIfYqhv1EKEUlBu1bLXiSjo/edit?usp=sharing) -- Use NITP email to access the file -- Deadline: August 21, 2023 - 9:00 PM +A new Flutter project. -## Guidelines: -- Create a new branch following the naming convention outlined in the repo README.md -- Create a folder named **'your-name'** -- Initialize Flutter inside the Folder and start working on the task -- DO NOT DELETE THIS FILE! +## 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://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. +![Simulator Screenshot - iPhone 14 Pro Max - 2023-08-27 at 12 51 23](https://github.com/Jayvashishtha123/Flutter_Prac/assets/132293279/df120bb5-7c68-4bd6-b8f4-4367ab7a1387) +![Simulator Screenshot - iPhone 14 Pro Max - 2023-08-27 at 12 51 40](https://github.com/Jayvashishtha123/Flutter_Prac/assets/132293279/60a29257-081c-4987-9ec9-6046b48b0361) +![Simulator Screenshot - iPhone 14 Pro Max - 2023-08-27 at 12 51 52](https://github.com/Jayvashishtha123/Flutter_Prac/assets/132293279/f2fc5867-ddc1-4f55-8937-45e5c818f1fa) diff --git a/Task1/analysis_options.yaml b/Task1/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/Task1/analysis_options.yaml @@ -0,0 +1,28 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/Task1/android/.gitignore b/Task1/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/Task1/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/Task1/android/app/build.gradle b/Task1/android/app/build.gradle new file mode 100644 index 0000000..8494f34 --- /dev/null +++ b/Task1/android/app/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "com.android.application" + id "kotlin-android" + id "dev.flutter.flutter-gradle-plugin" +} + +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +android { + namespace "com.example.task_1" + compileSdkVersion flutter.compileSdkVersion + ndkVersion flutter.ndkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.task_1" + // You can update the following values to match your application needs. + // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + 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 + } + } +} + +flutter { + source '../..' +} + +dependencies {} diff --git a/Task1/android/app/src/debug/AndroidManifest.xml b/Task1/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/Task1/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/Task1/android/app/src/main/AndroidManifest.xml b/Task1/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..202f206 --- /dev/null +++ b/Task1/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + diff --git a/Task1/android/app/src/main/kotlin/com/example/task_1/MainActivity.kt b/Task1/android/app/src/main/kotlin/com/example/task_1/MainActivity.kt new file mode 100644 index 0000000..4e5e811 --- /dev/null +++ b/Task1/android/app/src/main/kotlin/com/example/task_1/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.task_1 + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/Task1/android/app/src/main/res/drawable-v21/launch_background.xml b/Task1/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/Task1/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/Task1/android/app/src/main/res/drawable/launch_background.xml b/Task1/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/Task1/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/Task1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/Task1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/Task1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/Task1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/Task1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/Task1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/Task1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/Task1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/Task1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/Task1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Task1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/Task1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/Task1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Task1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/Task1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/Task1/android/app/src/main/res/values-night/styles.xml b/Task1/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/Task1/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/Task1/android/app/src/main/res/values/styles.xml b/Task1/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/Task1/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/Task1/android/app/src/profile/AndroidManifest.xml b/Task1/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/Task1/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/Task1/android/build.gradle b/Task1/android/build.gradle new file mode 100644 index 0000000..f7eb7f6 --- /dev/null +++ b/Task1/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.7.10' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:7.3.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +tasks.register("clean", Delete) { + delete rootProject.buildDir +} diff --git a/Task1/android/gradle.properties b/Task1/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/Task1/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/Task1/android/gradle/wrapper/gradle-wrapper.properties b/Task1/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..3c472b9 --- /dev/null +++ b/Task1/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/Task1/android/settings.gradle b/Task1/android/settings.gradle new file mode 100644 index 0000000..55c4ca8 --- /dev/null +++ b/Task1/android/settings.gradle @@ -0,0 +1,20 @@ +pluginManagement { + def flutterSdkPath = { + def properties = new Properties() + file("local.properties").withInputStream { properties.load(it) } + def flutterSdkPath = properties.getProperty("flutter.sdk") + assert flutterSdkPath != null, "flutter.sdk not set in local.properties" + return flutterSdkPath + } + settings.ext.flutterSdkPath = flutterSdkPath() + + includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") + + plugins { + id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false + } +} + +include ":app" + +apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/Task1/android/task_1_android.iml b/Task1/android/task_1_android.iml new file mode 100644 index 0000000..1899969 --- /dev/null +++ b/Task1/android/task_1_android.iml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/assets/.DS_Store b/Task1/assets/.DS_Store new file mode 100644 index 0000000..4225e1b Binary files /dev/null and b/Task1/assets/.DS_Store differ diff --git a/Task1/assets/images/.DS_Store b/Task1/assets/images/.DS_Store new file mode 100644 index 0000000..fbc5683 Binary files /dev/null and b/Task1/assets/images/.DS_Store differ diff --git a/Task1/assets/images/Disney_land.webp b/Task1/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/assets/images/Disney_land.webp differ diff --git a/Task1/assets/images/Eiffel_tower.jpeg b/Task1/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/assets/images/Hill_station.jpeg b/Task1/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/assets/images/Hill_station.jpeg differ diff --git a/Task1/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/assets/images/Mountain_icon.png b/Task1/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/assets/images/Mountain_icon.png differ diff --git a/Task1/assets/images/Red_fort.jpg b/Task1/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/assets/images/Red_fort.jpg differ diff --git a/Task1/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/assets/images/cartoon.jpg b/Task1/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/assets/images/cartoon.jpg differ diff --git a/Task1/assets/images/china_wall.webp b/Task1/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/assets/images/china_wall.webp differ diff --git a/Task1/assets/images/city.png b/Task1/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/assets/images/city.png differ diff --git a/Task1/assets/images/desert.png b/Task1/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/assets/images/desert.png differ diff --git a/Task1/assets/images/forest.png b/Task1/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/assets/images/forest.png differ diff --git a/Task1/assets/images/historical_places.jpeg b/Task1/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/assets/images/historical_places.jpeg differ diff --git a/Task1/assets/images/india_gate.jpeg b/Task1/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/assets/images/india_gate.jpeg differ diff --git a/Task1/assets/images/las.jpeg b/Task1/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/assets/images/las.jpeg differ diff --git a/Task1/assets/images/las_vegas.jpeg b/Task1/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/assets/images/las_vegas.jpeg differ diff --git a/Task1/assets/images/lotus-temple.jpeg b/Task1/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/assets/images/lotus-temple.jpeg differ diff --git a/Task1/assets/images/menu.png b/Task1/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/assets/images/menu.png differ diff --git a/Task1/assets/images/menu_icon.png b/Task1/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/assets/images/menu_icon.png differ diff --git a/Task1/assets/images/murano.jpg b/Task1/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/assets/images/murano.jpg differ diff --git a/Task1/assets/images/newdelhi.jpg b/Task1/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/assets/images/newdelhi.jpg differ diff --git a/Task1/assets/images/paris.jpg b/Task1/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/assets/images/paris.jpg differ diff --git a/Task1/assets/images/red-fort.jpg b/Task1/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/assets/images/red-fort.jpg differ diff --git a/Task1/assets/images/river.png b/Task1/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/assets/images/river.png differ diff --git a/Task1/assets/images/shimla.jpeg b/Task1/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/assets/images/shimla.jpeg differ diff --git a/Task1/assets/images/tajmahal.jpg b/Task1/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/assets/images/tajmahal.jpg differ diff --git a/Task1/assets/images/temple.jpg b/Task1/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/assets/images/temple.jpg differ diff --git a/Task1/assets/images/waterfall.png b/Task1/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/assets/images/waterfall.png differ diff --git a/Task1/build/204ea416f1812abf3cc545dddda97605.cache.dill.track.dill b/Task1/build/204ea416f1812abf3cc545dddda97605.cache.dill.track.dill new file mode 100644 index 0000000..a8c1c88 Binary files /dev/null and b/Task1/build/204ea416f1812abf3cc545dddda97605.cache.dill.track.dill differ diff --git a/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/_composite.stamp b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/_composite.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/_composite.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_dart_plugin_registrant.stamp b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..02ff573 --- /dev/null +++ b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":["/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_localizations.stamp b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/Task1/build/8b5a972875de2cc9ef22c55c2846f2f7/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/dec1e4a0516d70fa91229b5c658deffb/_composite.stamp b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/_composite.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/_composite.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_dart_plugin_registrant.stamp b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..5e5c8a1 --- /dev/null +++ b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/.dart_tool/package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_localizations.stamp b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/Task1/build/dec1e4a0516d70fa91229b5c658deffb/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/.last_build_id b/Task1/build/ios/Debug-iphonesimulator/.last_build_id new file mode 100644 index 0000000..5f60892 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/.last_build_id @@ -0,0 +1 @@ +c1c1cbc1337bc8705402fc641163d3c8 \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/App b/Task1/build/ios/Debug-iphonesimulator/App.framework/App new file mode 100755 index 0000000..8d561f2 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/App differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/Info.plist b/Task1/build/ios/Debug-iphonesimulator/App.framework/Info.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/App.framework/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/_CodeSignature/CodeResources b/Task1/build/ios/Debug-iphonesimulator/App.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..86647d4 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/App.framework/_CodeSignature/CodeResources @@ -0,0 +1,799 @@ + + + + + files + + Info.plist + + 85iaADE5tc/NukRC+KGdiZaZ0ZA= + + flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + flutter_assets/assets/images/.DS_Store + + +8iQ6HyKW+M4wcscKAFYhanfUcY= + + flutter_assets/assets/images/1.jpeg + + T4eHigGqCjppEMN5PZjXN63j2UE= + + flutter_assets/assets/images/13.jpg + + xJdsU88dxzNUCrvQhUVJfA36vy8= + + flutter_assets/assets/images/2.jpeg + + Kpr+ISskXOhd00somUarsLf8WL0= + + flutter_assets/assets/images/3.jpeg + + d377rWShqdNs2Vg7Rxeo7aCMMLU= + + flutter_assets/assets/images/4.jpeg + + eJYwOmsjrusGdvMKWb5xwlngYP0= + + flutter_assets/assets/images/5.jpeg + + TT4rmr6kGvrgAnk8aSvOh+FM3g4= + + flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/beach.png + + HfyouspGEztalPd3FzMVoXZzLT8= + + flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + flutter_assets/assets/images/circleavatar.jpg + + +XFVNZMeO2KIXnV8K5yRvsLbBKI= + + flutter_assets/assets/images/circleavatar1.png + + be2kO6flRJYJDjjrTPvDWUHyy1E= + + flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + flutter_assets/assets/images/gondola.jpg + + KUZ1nT6qT6g9dc9k3mHtSaHzwp4= + + flutter_assets/assets/images/h1.jpg + + SdjVzsZhFoZGiKoKhpnGgOlT5r8= + + flutter_assets/assets/images/h2.jpeg + + /cjCaNGdItMcCUGcXJ4j280zJ0E= + + flutter_assets/assets/images/h3.jpeg + + 0pCymnfRDUKYEPZArx+bdBtV+Lc= + + flutter_assets/assets/images/h4.jpeg + + 6FSCt2wBul/Up7S/kzNFuA5PJZw= + + flutter_assets/assets/images/h5.jpeg + + qh7CO4lBJQtqHco5RyTFMXQhzks= + + flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + flutter_assets/assets/images/hotel0.jpg + + 8dGP3fsV/whkk0xfs4837sWwC20= + + flutter_assets/assets/images/hotel1.jpg + + XVN8jBEPFZ3u3bmJDnY2jgdm86c= + + flutter_assets/assets/images/hotel2.jpg + + X76EqYI/EqeZxJUy8sMIgHiP6Ys= + + flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + flutter_assets/assets/images/menubar.png + + +xTHaiVnUgCz3/80fHJSXQB+uxc= + + flutter_assets/assets/images/mountain.png + + se8c/XNUOdzYckTeX/1zAqQmJSk= + + flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + flutter_assets/assets/images/newyork.jpg + + Xuy5rCeN0+S9GRfWpnU7FbyUenM= + + flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + flutter_assets/assets/images/santorini.jpg + + lbQFbhthk6Q4yBzlisRJPRn9LmY= + + flutter_assets/assets/images/saopaulo.jpg + + 6to0LgPD/ciBT9tpY848Oqr4b5o= + + flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + flutter_assets/assets/images/stmarksbasilica.jpg + + GjV2FKCViife8mfluTBINMBgRas= + + flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + flutter_assets/assets/images/venice.jpg + + aZm0eWz2fCZxInaKk8MvsBMMx50= + + flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + flutter_assets/kernel_blob.bin + + 8lWs84oWU2hIOx3aMqz49h4NQ+0= + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + flutter_assets/shaders/ink_sparkle.frag + + KL+7f3IYR/Y9WDlxxUeDmgGoluc= + + flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + + files2 + + flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + flutter_assets/assets/images/1.jpeg + + hash2 + + ZM/gRNk9HmNFDT8BSanVTIPVGTQ+FvTvfqGl5dStDjc= + + + flutter_assets/assets/images/13.jpg + + hash2 + + 4pO0Zep+HqPIVOTvdV6gJqsSQM78/b6bhO9mqhqK0Wo= + + + flutter_assets/assets/images/2.jpeg + + hash2 + + ytFnREnrsNFG0NvVvVeP1mv8qsXFbpRGFhsWLUTiitY= + + + flutter_assets/assets/images/3.jpeg + + hash2 + + CBlcAJZwqOjCmj/xnHWOODg7HNdhf/I7S7P0eMKYRd4= + + + flutter_assets/assets/images/4.jpeg + + hash2 + + dzWkydrkKullJAGPu+316lHaUO6n36j6+181qZWpwPU= + + + flutter_assets/assets/images/5.jpeg + + hash2 + + gPZ55PgDY7Wo2nV6b9e10+mJ/vyk8bAv1gCeDnCfhGs= + + + flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/beach.png + + hash2 + + y5lhZTmDRFAd7umZIXEABF+boH2H97AiGStm+R9vwzc= + + + flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + flutter_assets/assets/images/circleavatar.jpg + + hash2 + + 4uXcGTkEvvHPJILKHdwAkUSh1QMC0uS7g0AZyG3EbuE= + + + flutter_assets/assets/images/circleavatar1.png + + hash2 + + AKFLcQ1ZyiiPNdbgAja0/IWSf7Dg47kF8Rp+JdCHR2g= + + + flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + flutter_assets/assets/images/gondola.jpg + + hash2 + + mxmsoD88A0QjPveARAEkDaNoY/VAmDDcYXmymROv3fA= + + + flutter_assets/assets/images/h1.jpg + + hash2 + + Kuqwn3Vbb46v7iAlUHyjY1yw3EniewBiMf9864JOJIg= + + + flutter_assets/assets/images/h2.jpeg + + hash2 + + d39wOwhkopGvyzoi+P0fP3v0TNoNj3qO1ec1rcEKbyE= + + + flutter_assets/assets/images/h3.jpeg + + hash2 + + 61GSrfe8Ie+gX0W/Nv2Ohg1Wn1sinOfDNEKw5Kgr+xE= + + + flutter_assets/assets/images/h4.jpeg + + hash2 + + vN3aG4W6YiSh5x3WB/zpBybI7mgaf3+m/ROF2J4i8yA= + + + flutter_assets/assets/images/h5.jpeg + + hash2 + + ZxRldVFZ83zRbJMkoFkweKZv9y1Jyo95tzwPJ9NS1Zc= + + + flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + flutter_assets/assets/images/hotel0.jpg + + hash2 + + zoDLFXM0uf+NpyOIWoJmYOevt10RMj61L/SzMDdLLXs= + + + flutter_assets/assets/images/hotel1.jpg + + hash2 + + i0jDGexKYKlgcqUekECVK6bGw7lk8i8owJesmETyo6g= + + + flutter_assets/assets/images/hotel2.jpg + + hash2 + + CRhXnlJcAiRByhcRsNwaIJ251Dkbdq38HE1KlALtfrE= + + + flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + flutter_assets/assets/images/menubar.png + + hash2 + + S0J8tgV0/QoXPWtZJt3lkFtejtlA0vqdjomDCmDGa6U= + + + flutter_assets/assets/images/mountain.png + + hash2 + + Btm1IjrbdIX0DJtXRYgqDnqFyhZ4YG0SYaymN511hmY= + + + flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + flutter_assets/assets/images/newyork.jpg + + hash2 + + AljF8ys1SFUk8syawF4yYWO6sq5hWziavfmi373bsEo= + + + flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + flutter_assets/assets/images/santorini.jpg + + hash2 + + LE7YVy/IXJ6R/DnWh7ZDrYkbnuEBfmUPggYBZFNXAo0= + + + flutter_assets/assets/images/saopaulo.jpg + + hash2 + + fpHVZSqdVLqqH7kyhfmqHLexwmFZZmfXDmdiQ0JoH6o= + + + flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + flutter_assets/assets/images/stmarksbasilica.jpg + + hash2 + + 5Dlr4bXcaBmYywaMeaVz/ycenIaf5SZPDuAxEPzmKq0= + + + flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + flutter_assets/assets/images/venice.jpg + + hash2 + + iarRj4YhsmffqPbqJbPdYZ0wD2705xLFbNzq3ZWVS64= + + + flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + flutter_assets/kernel_blob.bin + + hash2 + + Ec9Y5zdu5Sx/VUp1UJ6HC9YB56nPuA27QkkaI2PVEko= + + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + flutter_assets/shaders/ink_sparkle.frag + + hash2 + + v6u8YtYjslOLIIb1rrgcOW817fxVEiBaprKuV+f6FpY= + + + flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.bin b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..146fb51 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/images/.DS_Store  assetassets/images/.DS_Storeassets/images/Disney_land.webp  assetassets/images/Disney_land.webpassets/images/Eiffel_tower.jpeg  assetassets/images/Eiffel_tower.jpegassets/images/Hill_station.jpeg  assetassets/images/Hill_station.jpeg"assets/images/KAGAGAHAN_RIJANI.jpg  asset"assets/images/KAGAGAHAN_RIJANI.jpgassets/images/Mountain_icon.png  assetassets/images/Mountain_icon.pngassets/images/Red_fort.jpg  assetassets/images/Red_fort.jpg+assets/images/Taj-Mahal-Agra-India.jpg.webp  asset+assets/images/Taj-Mahal-Agra-India.jpg.webpassets/images/cartoon.jpg  assetassets/images/cartoon.jpgassets/images/china_wall.webp  assetassets/images/china_wall.webpassets/images/city.png  assetassets/images/city.pngassets/images/desert.png  assetassets/images/desert.pngassets/images/forest.png  assetassets/images/forest.png$assets/images/historical_places.jpeg  asset$assets/images/historical_places.jpegassets/images/india_gate.jpeg  assetassets/images/india_gate.jpegassets/images/las.jpeg  assetassets/images/las.jpegassets/images/las_vegas.jpeg  assetassets/images/las_vegas.jpegassets/images/lotus-temple.jpeg  assetassets/images/lotus-temple.jpegassets/images/menu.png  assetassets/images/menu.pngassets/images/menu_icon.png  assetassets/images/menu_icon.pngassets/images/murano.jpg  assetassets/images/murano.jpgassets/images/newdelhi.jpg  assetassets/images/newdelhi.jpgassets/images/paris.jpg  assetassets/images/paris.jpgassets/images/red-fort.jpg  assetassets/images/red-fort.jpgassets/images/river.png  assetassets/images/river.pngassets/images/shimla.jpeg  assetassets/images/shimla.jpegassets/images/tajmahal.jpg  assetassets/images/tajmahal.jpgassets/images/temple.jpg  assetassets/images/temple.jpgassets/images/waterfall.png  assetassets/images/waterfall.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.json b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.json new file mode 100644 index 0000000..cfb4f29 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/Disney_land.webp":["assets/images/Disney_land.webp"],"assets/images/Eiffel_tower.jpeg":["assets/images/Eiffel_tower.jpeg"],"assets/images/Hill_station.jpeg":["assets/images/Hill_station.jpeg"],"assets/images/KAGAGAHAN_RIJANI.jpg":["assets/images/KAGAGAHAN_RIJANI.jpg"],"assets/images/Mountain_icon.png":["assets/images/Mountain_icon.png"],"assets/images/Red_fort.jpg":["assets/images/Red_fort.jpg"],"assets/images/Taj-Mahal-Agra-India.jpg.webp":["assets/images/Taj-Mahal-Agra-India.jpg.webp"],"assets/images/cartoon.jpg":["assets/images/cartoon.jpg"],"assets/images/china_wall.webp":["assets/images/china_wall.webp"],"assets/images/city.png":["assets/images/city.png"],"assets/images/desert.png":["assets/images/desert.png"],"assets/images/forest.png":["assets/images/forest.png"],"assets/images/historical_places.jpeg":["assets/images/historical_places.jpeg"],"assets/images/india_gate.jpeg":["assets/images/india_gate.jpeg"],"assets/images/las.jpeg":["assets/images/las.jpeg"],"assets/images/las_vegas.jpeg":["assets/images/las_vegas.jpeg"],"assets/images/lotus-temple.jpeg":["assets/images/lotus-temple.jpeg"],"assets/images/menu.png":["assets/images/menu.png"],"assets/images/menu_icon.png":["assets/images/menu_icon.png"],"assets/images/murano.jpg":["assets/images/murano.jpg"],"assets/images/newdelhi.jpg":["assets/images/newdelhi.jpg"],"assets/images/paris.jpg":["assets/images/paris.jpg"],"assets/images/red-fort.jpg":["assets/images/red-fort.jpg"],"assets/images/river.png":["assets/images/river.png"],"assets/images/shimla.jpeg":["assets/images/shimla.jpeg"],"assets/images/tajmahal.jpg":["assets/images/tajmahal.jpg"],"assets/images/temple.jpg":["assets/images/temple.jpg"],"assets/images/waterfall.png":["assets/images/waterfall.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/FontManifest.json b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/NOTICES.Z b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..5c16833 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/NOTICES.Z differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/.DS_Store b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/.DS_Store new file mode 100644 index 0000000..fbc5683 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/.DS_Store differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/1.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/1.jpeg new file mode 100644 index 0000000..7b5580a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/1.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/13.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/13.jpg new file mode 100644 index 0000000..78116ea Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/13.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/2.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/2.jpeg new file mode 100644 index 0000000..b4ae2e7 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/2.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/3.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/3.jpeg new file mode 100644 index 0000000..2b0450b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/3.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/4.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/4.jpeg new file mode 100644 index 0000000..b4ab457 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/4.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/5.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/5.jpeg new file mode 100644 index 0000000..9425dc3 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/5.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Disney_land.webp b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Disney_land.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Hill_station.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Hill_station.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Mountain_icon.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Mountain_icon.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Red_fort.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Red_fort.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/beach.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/beach.png new file mode 100644 index 0000000..573458f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/beach.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/cartoon.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/cartoon.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/china_wall.webp b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/china_wall.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar.jpg new file mode 100644 index 0000000..d784d21 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar1.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar1.png new file mode 100644 index 0000000..e42275d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/circleavatar1.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/city.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/city.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/desert.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/desert.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/forest.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/forest.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/gondola.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/gondola.jpg new file mode 100644 index 0000000..bc6871b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/gondola.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h1.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h1.jpg new file mode 100644 index 0000000..3f59149 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h1.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h2.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h2.jpeg new file mode 100644 index 0000000..8a5fb48 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h2.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h3.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h3.jpeg new file mode 100644 index 0000000..00cb385 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h3.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h4.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h4.jpeg new file mode 100644 index 0000000..6164c61 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h4.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h5.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h5.jpeg new file mode 100644 index 0000000..b99dc37 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/h5.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/historical_places.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/historical_places.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel0.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel0.jpg new file mode 100644 index 0000000..dd26fc8 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel0.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel1.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel1.jpg new file mode 100644 index 0000000..d384aec Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel1.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel2.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel2.jpg new file mode 100644 index 0000000..26a5a95 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/hotel2.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/india_gate.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/india_gate.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las_vegas.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/las_vegas.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/lotus-temple.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/lotus-temple.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu_icon.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menu_icon.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menubar.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menubar.png new file mode 100644 index 0000000..956f328 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/menubar.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/mountain.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/mountain.png new file mode 100644 index 0000000..6e8a74d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/mountain.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/murano.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/murano.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newdelhi.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newdelhi.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newyork.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newyork.jpg new file mode 100644 index 0000000..04264cd Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/newyork.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/paris.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/paris.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/red-fort.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/red-fort.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/river.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/river.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/santorini.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/santorini.jpg new file mode 100644 index 0000000..6b74157 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/santorini.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/saopaulo.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/saopaulo.jpg new file mode 100644 index 0000000..217c24a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/saopaulo.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/shimla.jpeg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/shimla.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg new file mode 100644 index 0000000..5ae620b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/tajmahal.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/tajmahal.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/temple.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/temple.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/venice.jpg b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/venice.jpg new file mode 100644 index 0000000..79b84aa Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/venice.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/waterfall.png b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/assets/images/waterfall.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/isolate_snapshot_data b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6a5616f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/isolate_snapshot_data differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/kernel_blob.bin b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..a8c1c88 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/kernel_blob.bin differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..79ba7ea Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/shaders/ink_sparkle.frag b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..2ba50c6 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/vm_snapshot_data b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..2464640 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/App.framework/flutter_assets/vm_snapshot_data differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter new file mode 100755 index 0000000..2e1edd4 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/Flutter.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/Flutter.h new file mode 100644 index 0000000..cd59a82 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/Flutter.h @@ -0,0 +1,24 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTER_H_ +#define FLUTTER_FLUTTER_H_ + +#import "FlutterAppDelegate.h" +#import "FlutterBinaryMessenger.h" +#import "FlutterCallbackCache.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterEngineGroup.h" +#import "FlutterHeadlessDartRunner.h" +#import "FlutterMacros.h" +#import "FlutterPlatformViews.h" +#import "FlutterPlugin.h" +#import "FlutterPluginAppLifeCycleDelegate.h" +#import "FlutterTexture.h" +#import "FlutterViewController.h" + +#endif // FLUTTER_FLUTTER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterAppDelegate.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterAppDelegate.h new file mode 100644 index 0000000..ed7589a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterAppDelegate.h @@ -0,0 +1,34 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERAPPDELEGATE_H_ +#define FLUTTER_FLUTTERAPPDELEGATE_H_ + +#import + +#import "FlutterMacros.h" +#import "FlutterPlugin.h" + +/** + * `UIApplicationDelegate` subclass for simple apps that want default behavior. + * + * This class implements the following behaviors: + * * Status bar touches are forwarded to the key window's root view + * `FlutterViewController`, in order to trigger scroll to top. + * * Keeps the Flutter connection open in debug mode when the phone screen + * locks. + * + * App delegates for Flutter applications are *not* required to inherit from + * this class. Developers of custom app delegate classes should copy and paste + * code as necessary from FlutterAppDelegate.mm. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterAppDelegate + : UIResponder + +@property(strong, nonatomic) UIWindow* window; + +@end + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterBinaryMessenger.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterBinaryMessenger.h new file mode 100644 index 0000000..9f59ec8 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterBinaryMessenger.h @@ -0,0 +1,105 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERBINARYMESSENGER_H_ +#define FLUTTER_FLUTTERBINARYMESSENGER_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a binary reply back to a Flutter message sender. Also used + * in for handling a binary message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterBinaryReply)(NSData* _Nullable reply); + +/** + * A strategy for handling incoming binary messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param reply A callback for submitting an asynchronous reply to the sender. + */ +typedef void (^FlutterBinaryMessageHandler)(NSData* _Nullable message, FlutterBinaryReply reply); + +typedef int64_t FlutterBinaryMessengerConnection; + +@protocol FlutterTaskQueue; + +/** + * A facility for communicating with the Flutter side using asynchronous message + * passing with binary messages. + * + * Implementated by: + * - `FlutterBasicMessageChannel`, which supports communication using structured + * messages. + * - `FlutterMethodChannel`, which supports communication using asynchronous + * method calls. + * - `FlutterEventChannel`, which supports commuication using event streams. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterBinaryMessenger +/// TODO(gaaclarke): Remove optional when macos supports Background Platform Channels. +@optional +- (NSObject*)makeBackgroundTaskQueue; + +- (FlutterBinaryMessengerConnection) + setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler:(FlutterBinaryMessageHandler _Nullable)handler + taskQueue:(NSObject* _Nullable)taskQueue; + +@required +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * no reply. + * + * @param channel The channel name. + * @param message The message. + */ +- (void)sendOnChannel:(NSString*)channel message:(NSData* _Nullable)message; + +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * an asynchronous reply. + * + * @param channel The channel name. + * @param message The message. + * @param callback A callback for receiving a reply. + */ +- (void)sendOnChannel:(NSString*)channel + message:(NSData* _Nullable)message + binaryReply:(FlutterBinaryReply _Nullable)callback; + +/** + * Registers a message handler for incoming binary messages from the Flutter side + * on the specified channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param channel The channel name. + * @param handler The message handler. + * @return An identifier that represents the connection that was just created to the channel. + */ +- (FlutterBinaryMessengerConnection)setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler: + (FlutterBinaryMessageHandler _Nullable)handler; + +/** + * Clears out a channel's message handler if that handler is still the one that + * was created as a result of + * `setMessageHandlerOnChannel:binaryMessageHandler:`. + * + * @param connection The result from `setMessageHandlerOnChannel:binaryMessageHandler:`. + */ +- (void)cleanUpConnection:(FlutterBinaryMessengerConnection)connection; +@end +NS_ASSUME_NONNULL_END +#endif // FLUTTER_FLUTTERBINARYMESSENGER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCallbackCache.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCallbackCache.h new file mode 100644 index 0000000..d206558 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCallbackCache.h @@ -0,0 +1,54 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCALLBACKCACHE_H_ +#define FLUTTER_FLUTTERCALLBACKCACHE_H_ + +#import + +#import "FlutterMacros.h" + +/** + * An object containing the result of `FlutterCallbackCache`'s `lookupCallbackInformation` + * method. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackInformation : NSObject +/** + * The name of the callback. + */ +@property(copy) NSString* callbackName; +/** + * The class name of the callback. + */ +@property(copy) NSString* callbackClassName; +/** + * The library path of the callback. + */ +@property(copy) NSString* callbackLibraryPath; +@end + +/** + * The cache containing callback information for spawning a + * `FlutterHeadlessDartRunner`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackCache : NSObject +/** + * Returns the callback information for the given callback handle. + * This callback information can be used when spawning a + * `FlutterHeadlessDartRunner`. + * + * @param handle The handle for a callback, provided by the + * Dart method `PluginUtilities.getCallbackHandle`. + * @return A `FlutterCallbackInformation` object which contains the name of the + * callback, the name of the class in which the callback is defined, and the + * path of the library which contains the callback. If the provided handle is + * invalid, nil is returned. + */ ++ (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle; + +@end + +#endif // FLUTTER_FLUTTERCALLBACKCACHE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterChannels.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterChannels.h new file mode 100644 index 0000000..9b84cd6 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterChannels.h @@ -0,0 +1,452 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCHANNELS_H_ +#define FLUTTER_FLUTTERCHANNELS_H_ + +#import "FlutterBinaryMessenger.h" +#import "FlutterCodecs.h" + +@protocol FlutterTaskQueue; + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a reply back to a Flutter message sender. Also used in + * the dual capacity for handling a message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterReply)(id _Nullable reply); + +/** + * A strategy for handling incoming messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param callback A callback for submitting a reply to the sender which can be invoked from any + * thread. + */ +typedef void (^FlutterMessageHandler)(id _Nullable message, FlutterReply callback); + +/** + * A channel for communicating with the Flutter side using basic, asynchronous + * message passing. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBasicMessageChannel : NSObject +/** + * Creates a `FlutterBasicMessageChannel` with the specified name and binary + * messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMessageCodec` to encode and decode messages. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +/** + * Sends the specified message to the Flutter side, ignoring any reply. + * + * @param message The message. Must be supported by the codec of this + * channel. + */ +- (void)sendMessage:(id _Nullable)message; + +/** + * Sends the specified message to the Flutter side, expecting an asynchronous + * reply. + * + * @param message The message. Must be supported by the codec of this channel. + * @param callback A callback to be invoked with the message reply from Flutter. + */ +- (void)sendMessage:(id _Nullable)message reply:(FlutterReply _Nullable)callback; + +/** + * Registers a message handler with this channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The message handler. + */ +- (void)setMessageHandler:(FlutterMessageHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * A method call result callback. + * + * Used for submitting a method call result back to a Flutter caller. Also used in + * the dual capacity for handling a method call result received from Flutter. + * + * @param result The result. + */ +typedef void (^FlutterResult)(id _Nullable result); + +/** + * A strategy for handling method calls. + * + * @param call The incoming method call. + * @param result A callback to asynchronously submit the result of the call. + * Invoke the callback with a `FlutterError` to indicate that the call failed. + * Invoke the callback with `FlutterMethodNotImplemented` to indicate that the + * method was unknown. Any other values, including `nil`, are interpreted as + * successful results. This can be invoked from any thread. + */ +typedef void (^FlutterMethodCallHandler)(FlutterMethodCall* call, FlutterResult result); + +/** + * A constant used with `FlutterMethodCallHandler` to respond to the call of an + * unknown method. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterMethodNotImplemented; + +/** + * A channel for communicating with the Flutter side using invocation of + * asynchronous methods. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodChannel : NSObject +/** + * Creates a `FlutterMethodChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to encode and decode method calls + * and result envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterMethodChannel` with the specified name, binary messenger, and + * method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * method codec, and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +// clang-format off +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * no results. + * + * @see [MethodChannel.setMethodCallHandler](https://api.flutter.dev/flutter/services/MethodChannel/setMethodCallHandler.html) + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + */ +// clang-format on +- (void)invokeMethod:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * an asynchronous result. + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + * @param callback A callback that will be invoked with the asynchronous result. + * The result will be a `FlutterError` instance, if the method call resulted + * in an error on the Flutter side. Will be `FlutterMethodNotImplemented`, if + * the method called was not implemented on the Flutter side. Any other value, + * including `nil`, should be interpreted as successful results. + */ +- (void)invokeMethod:(NSString*)method + arguments:(id _Nullable)arguments + result:(FlutterResult _Nullable)callback; +/** + * Registers a handler for method calls from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The method call handler. + */ +- (void)setMethodCallHandler:(FlutterMethodCallHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * An event sink callback. + * + * @param event The event. + */ +typedef void (^FlutterEventSink)(id _Nullable event); + +/** + * A strategy for exposing an event stream to the Flutter side. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterStreamHandler +/** + * Sets up an event stream and begin emitting events. + * + * Invoked when the first listener is registered with the Stream associated to + * this channel on the Flutter side. + * + * @param arguments Arguments for the stream. + * @param events A callback to asynchronously emit events. Invoke the + * callback with a `FlutterError` to emit an error event. Invoke the + * callback with `FlutterEndOfEventStream` to indicate that no more + * events will be emitted. Any other value, including `nil` are emitted as + * successful events. + * @return A FlutterError instance, if setup fails. + */ +- (FlutterError* _Nullable)onListenWithArguments:(id _Nullable)arguments + eventSink:(FlutterEventSink)events; + +/** + * Tears down an event stream. + * + * Invoked when the last listener is deregistered from the Stream associated to + * this channel on the Flutter side. + * + * The channel implementation may call this method with `nil` arguments + * to separate a pair of two consecutive set up requests. Such request pairs + * may occur during Flutter hot restart. + * + * @param arguments Arguments for the stream. + * @return A FlutterError instance, if teardown fails. + */ +- (FlutterError* _Nullable)onCancelWithArguments:(id _Nullable)arguments; +@end + +/** + * A constant used with `FlutterEventChannel` to indicate end of stream. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterEndOfEventStream; + +/** + * A channel for communicating with the Flutter side using event streams. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEventChannel : NSObject +/** + * Creates a `FlutterEventChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to decode stream setup and + * teardown requests, and to encode event envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * method codec and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; +/** + * Registers a handler for stream setup requests from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The stream handler. + */ +- (void)setStreamHandler:(NSObject* _Nullable)handler; +@end +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCHANNELS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCodecs.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCodecs.h new file mode 100644 index 0000000..f7117f0 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterCodecs.h @@ -0,0 +1,476 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCODECS_H_ +#define FLUTTER_FLUTTERCODECS_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A message encoding/decoding mechanism. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMessageCodec +/** + * Returns a shared instance of this `FlutterMessageCodec`. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified message into binary. + * + * @param message The message. + * @return The binary encoding, or `nil`, if `message` was `nil`. + */ +- (NSData* _Nullable)encode:(id _Nullable)message; + +/** + * Decodes the specified message from binary. + * + * @param message The message. + * @return The decoded message, or `nil`, if `message` was `nil`. + */ +- (id _Nullable)decode:(NSData* _Nullable)message; +@end + +/** + * A `FlutterMessageCodec` using unencoded binary messages, represented as + * `NSData` instances. + * + * This codec is guaranteed to be compatible with the corresponding + * [BinaryCodec](https://api.flutter.dev/flutter/services/BinaryCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * On the Dart side, messages are represented using `ByteData`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBinaryCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded `NSString` messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [StringCodec](https://api.flutter.dev/flutter/services/StringCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStringCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded JSON messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMessageCodec](https://api.flutter.dev/flutter/services/JSONMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supports values accepted by `NSJSONSerialization` plus top-level + * `nil`, `NSNumber`, and `NSString`. + * + * On the Dart side, JSON messages are handled by the JSON facilities of the + * [`dart:convert`](https://api.dartlang.org/stable/dart-convert/JSON-constant.html) + * package. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMessageCodec : NSObject +@end + +/** + * A writer of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `writeValue`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardWriter : NSObject +/** + * Create a `FlutterStandardWriter` who will write to \p data. + */ +- (instancetype)initWithData:(NSMutableData*)data; +/** Write a 8-bit byte. */ +- (void)writeByte:(UInt8)value; +/** Write an array of \p bytes of size \p length. */ +- (void)writeBytes:(const void*)bytes length:(NSUInteger)length; +/** Write an array of bytes contained in \p data. */ +- (void)writeData:(NSData*)data; +/** Write 32-bit unsigned integer that represents a \p size of a collection. */ +- (void)writeSize:(UInt32)size; +/** Write zero padding until data is aligned with \p alignment. */ +- (void)writeAlignment:(UInt8)alignment; +/** Write a string with UTF-8 encoding. */ +- (void)writeUTF8:(NSString*)value; +/** Introspects into an object and writes its representation. + * + * Supported Data Types: + * - NSNull + * - NSNumber + * - NSString (as UTF-8) + * - FlutterStandardTypedData + * - NSArray of supported types + * - NSDictionary of supporte types + * + * NSAsserts on failure. + */ +- (void)writeValue:(id)value; +@end + +/** + * A reader of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `readValueOfType`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReader : NSObject +/** + * Create a new `FlutterStandardReader` who reads from \p data. + */ +- (instancetype)initWithData:(NSData*)data; +/** Returns YES when the reader hasn't reached the end of its data. */ +- (BOOL)hasMore; +/** Reads a byte value and increments the position. */ +- (UInt8)readByte; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (void)readBytes:(void*)destination length:(NSUInteger)length; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (NSData*)readData:(NSUInteger)length; +/** Reads a 32-bit unsigned integer representing a collection size and increments the position.*/ +- (UInt32)readSize; +/** Advances the read position until it is aligned with \p alignment. */ +- (void)readAlignment:(UInt8)alignment; +/** Read a null terminated string encoded with UTF-8/ */ +- (NSString*)readUTF8; +/** + * Reads a byte for `FlutterStandardField` the decodes a value matching that type. + * + * See also: -[FlutterStandardWriter writeValue] + */ +- (nullable id)readValue; +/** + * Decodes a value matching the \p type specified. + * + * See also: + * - `FlutterStandardField` + * - `-[FlutterStandardWriter writeValue]` + */ +- (nullable id)readValueOfType:(UInt8)type; +@end + +/** + * A factory of compatible reader/writer instances using the Flutter standard + * binary encoding or extensions thereof. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReaderWriter : NSObject +/** + * Create a new `FlutterStandardWriter` for writing to \p data. + */ +- (FlutterStandardWriter*)writerWithData:(NSMutableData*)data; +/** + * Create a new `FlutterStandardReader` for reading from \p data. + */ +- (FlutterStandardReader*)readerWithData:(NSData*)data; +@end + +/** + * A `FlutterMessageCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMessageCodec](https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supported messages are acyclic values of these forms: + * + * - `nil` or `NSNull` + * - `NSNumber` (including their representation of Boolean values) + * - `NSString` + * - `FlutterStandardTypedData` + * - `NSArray` of supported values + * - `NSDictionary` with supported keys and values + * + * On the Dart side, these values are represented as follows: + * + * - `nil` or `NSNull`: null + * - `NSNumber`: `bool`, `int`, or `double`, depending on the contained value. + * - `NSString`: `String` + * - `FlutterStandardTypedData`: `Uint8List`, `Int32List`, `Int64List`, or `Float64List` + * - `NSArray`: `List` + * - `NSDictionary`: `Map` + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMessageCodec : NSObject +/** + * Create a `FlutterStandardMessageCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +/** + * Command object representing a method call on a `FlutterMethodChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodCall : NSObject +/** + * Creates a method call for invoking the specified named method with the + * specified arguments. + * + * @param method the name of the method to call. + * @param arguments the arguments value. + */ ++ (instancetype)methodCallWithMethodName:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * The method name. + */ +@property(readonly, nonatomic) NSString* method; + +/** + * The arguments. + */ +@property(readonly, nonatomic, nullable) id arguments; +@end + +/** + * Error object representing an unsuccessful outcome of invoking a method + * on a `FlutterMethodChannel`, or an error event on a `FlutterEventChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterError : NSObject +/** + * Creates a `FlutterError` with the specified error code, message, and details. + * + * @param code An error code string for programmatic use. + * @param message A human-readable error message. + * @param details Custom error details. + */ ++ (instancetype)errorWithCode:(NSString*)code + message:(NSString* _Nullable)message + details:(id _Nullable)details; +/** + The error code. + */ +@property(readonly, nonatomic) NSString* code; + +/** + The error message. + */ +@property(readonly, nonatomic, nullable) NSString* message; + +/** + The error details. + */ +@property(readonly, nonatomic, nullable) id details; +@end + +/** + * Type of numeric data items encoded in a `FlutterStandardDataType`. + * + * - FlutterStandardDataTypeUInt8: plain bytes + * - FlutterStandardDataTypeInt32: 32-bit signed integers + * - FlutterStandardDataTypeInt64: 64-bit signed integers + * - FlutterStandardDataTypeFloat64: 64-bit floats + */ +typedef NS_ENUM(NSInteger, FlutterStandardDataType) { + FlutterStandardDataTypeUInt8, + FlutterStandardDataTypeInt32, + FlutterStandardDataTypeInt64, + FlutterStandardDataTypeFloat32, + FlutterStandardDataTypeFloat64, +}; + +/** + * A byte buffer holding `UInt8`, `SInt32`, `SInt64`, or `Float64` values, used + * with `FlutterStandardMessageCodec` and `FlutterStandardMethodCodec`. + * + * Two's complement encoding is used for signed integers. IEEE754 + * double-precision representation is used for floats. The platform's native + * endianness is assumed. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardTypedData : NSObject +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as plain bytes. + * + * @param data the byte data. + */ ++ (instancetype)typedDataWithBytes:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit signed integers. + * + * @param data the byte data. The length must be divisible by 4. + */ ++ (instancetype)typedDataWithInt32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit signed integers. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithInt64:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat64:(NSData*)data; + +/** + * The raw underlying data buffer. + */ +@property(readonly, nonatomic) NSData* data; + +/** + * The type of the encoded values. + */ +@property(readonly, nonatomic, assign) FlutterStandardDataType type; + +/** + * The number of value items encoded. + */ +@property(readonly, nonatomic, assign) UInt32 elementCount; + +/** + * The number of bytes used by the encoding of a single value item. + */ +@property(readonly, nonatomic, assign) UInt8 elementSize; +@end + +/** + * An arbitrarily large integer value, used with `FlutterStandardMessageCodec` + * and `FlutterStandardMethodCodec`. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_UNAVAILABLE("Unavailable on 2018-08-31. Deprecated on 2018-01-09. " + "FlutterStandardBigInteger was needed because the Dart 1.0 int type had no " + "size limit. With Dart 2.0, the int type is a fixed-size, 64-bit signed " + "integer. If you need to communicate larger integers, use NSString encoding " + "instead.") +@interface FlutterStandardBigInteger : NSObject +@end + +/** + * A codec for method calls and enveloped results. + * + * Method calls are encoded as binary messages with enough structure that the + * codec can extract a method name `NSString` and an arguments `NSObject`, + * possibly `nil`. These data items are used to populate a `FlutterMethodCall`. + * + * Result envelopes are encoded as binary messages with enough structure that + * the codec can determine whether the result was successful or an error. In + * the former case, the codec can extract the result `NSObject`, possibly `nil`. + * In the latter case, the codec can extract an error code `NSString`, a + * human-readable `NSString` error message (possibly `nil`), and a custom + * error details `NSObject`, possibly `nil`. These data items are used to + * populate a `FlutterError`. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMethodCodec +/** + * Provides access to a shared instance this codec. + * + * @return The shared instance. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified method call into binary. + * + * @param methodCall The method call. The arguments value + * must be supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeMethodCall:(FlutterMethodCall*)methodCall; + +/** + * Decodes the specified method call from binary. + * + * @param methodCall The method call to decode. + * @return The decoded method call. + */ +- (FlutterMethodCall*)decodeMethodCall:(NSData*)methodCall; + +/** + * Encodes the specified successful result into binary. + * + * @param result The result. Must be a value supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeSuccessEnvelope:(id _Nullable)result; + +/** + * Encodes the specified error result into binary. + * + * @param error The error object. The error details value must be supported + * by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeErrorEnvelope:(FlutterError*)error; + +/** + * Deccodes the specified result envelope from binary. + * + * @param envelope The error object. + * @return The result value, if the envelope represented a successful result, + * or a `FlutterError` instance, if not. + */ +- (id _Nullable)decodeEnvelope:(NSData*)envelope; +@end + +/** + * A `FlutterMethodCodec` using UTF-8 encoded JSON method calls and result + * envelopes. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMethodCodec](https://api.flutter.dev/flutter/services/JSONMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as methods arguments and result payloads are + * those supported as top-level or leaf values by `FlutterJSONMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMethodCodec : NSObject +@end + +/** + * A `FlutterMethodCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMethodCodec](https://api.flutter.dev/flutter/services/StandardMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as method arguments and result payloads are those supported by + * `FlutterStandardMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMethodCodec : NSObject +/** + * Create a `FlutterStandardMethodCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCODECS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterDartProject.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterDartProject.h new file mode 100644 index 0000000..2878a1d --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterDartProject.h @@ -0,0 +1,103 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERDARTPROJECT_H_ +#define FLUTTER_FLUTTERDARTPROJECT_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A set of Flutter and Dart assets used by a `FlutterEngine` to initialize execution. + * + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterDartProject : NSObject + +/** + * Initializes a Flutter Dart project from a bundle. + * + * The bundle must either contain a flutter_assets resource directory, or set the Info.plist key + * FLTAssetsPath to override that name (if you are doing a custom build using a different name). + * + * @param bundle The bundle containing the Flutter assets directory. If nil, the App framework + * created by Flutter will be used. + */ +- (instancetype)initWithPrecompiledDartBundle:(nullable NSBundle*)bundle NS_DESIGNATED_INITIALIZER; +/** + * Unavailable - use `init` instead. + */ +- (instancetype)initFromDefaultSourceForConfiguration API_UNAVAILABLE(macos) + FLUTTER_UNAVAILABLE("Use -init instead."); + +/** + * Returns the default identifier for the bundle where we expect to find the Flutter Dart + * application. + */ ++ (NSString*)defaultBundleIdentifier; + +/** + * An NSArray of NSStrings to be passed as command line arguments to the Dart entrypoint. + * + * If this is not explicitly set, this will default to the contents of + * [NSProcessInfo arguments], without the binary name. + * + * Set this to nil to pass no arguments to the Dart entrypoint. + */ +@property(nonatomic, nullable, copy) + NSArray* dartEntrypointArguments API_UNAVAILABLE(ios); + +/** + * Returns the file name for the given asset. If the bundle with the identifier + * "io.flutter.flutter.app" exists, it will try use that bundle; otherwise, it + * will use the main bundle. To specify a different bundle, use + * `+lookupKeyForAsset:fromBundle`. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the supplied bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param bundle The `NSBundle` to use for looking up the asset. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromBundle:(nullable NSBundle*)bundle; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the specified bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @param bundle The bundle to use when doing the lookup. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset + fromPackage:(NSString*)package + fromBundle:(nullable NSBundle*)bundle; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngine.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngine.h new file mode 100644 index 0000000..caf2b3d --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngine.h @@ -0,0 +1,460 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERENGINE_H_ +#define FLUTTER_FLUTTERENGINE_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +@class FlutterViewController; + +NS_ASSUME_NONNULL_BEGIN + +/** + * The dart entrypoint that is associated with `main()`. This is to be used as an argument to the + * `runWithEntrypoint*` methods. + */ +extern NSString* const FlutterDefaultDartEntrypoint; + +/** + * The default Flutter initial route ("/"). + */ +extern NSString* const FlutterDefaultInitialRoute; + +/** + * The FlutterEngine class coordinates a single instance of execution for a + * `FlutterDartProject`. It may have zero or one `FlutterViewController` at a + * time, which can be specified via `-setViewController:`. + * `FlutterViewController`'s `initWithEngine` initializer will automatically call + * `-setViewController:` for itself. + * + * A FlutterEngine can be created independently of a `FlutterViewController` for + * headless execution. It can also persist across the lifespan of multiple + * `FlutterViewController` instances to maintain state and/or asynchronous tasks + * (such as downloading a large file). + * + * A FlutterEngine can also be used to prewarm the Dart execution environment and reduce the + * latency of showing the Flutter screen when a `FlutterViewController` is created and presented. + * See http://flutter.dev/docs/development/add-to-app/performance for more details on loading + * performance. + * + * Alternatively, you can simply create a new `FlutterViewController` with only a + * `FlutterDartProject`. That `FlutterViewController` will internally manage its + * own instance of a FlutterEngine, but will not guarantee survival of the engine + * beyond the life of the ViewController. + * + * A newly initialized FlutterEngine will not actually run a Dart Isolate until + * either `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is invoked. + * One of these methods must be invoked before calling `-setViewController:`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngine : NSObject + +/** + * Default initializer for a FlutterEngine. + * + * Threads created by this FlutterEngine will appear as "FlutterEngine #" in + * Instruments. The prefix can be customized using `initWithName`. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + */ +- (instancetype)init; + +/** + * Initialize this FlutterEngine. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + */ +- (instancetype)initWithName:(NSString*)labelPrefix; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(nullable FlutterDartProject*)project; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + * @param restorationEnabled Whether state restoration is enabled. When true, the framework will + * wait for the attached view controller to provide restoration data. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using `main()` as the entrypoint (the default for Flutter projects), + * and using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)run; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil) it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`). + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil), it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param uri The URI of the Dart library which contains the entrypoint method + * (example "package:foo_package/main.dart"). If nil, this will default to + * the same library as the `main()` function in the Dart program. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint libraryURI:(nullable NSString*)uri; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @param entrypointArgs Arguments passed as a list of string to Dart's entrypoint function. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute + entrypointArgs:(nullable NSArray*)entrypointArgs; + +/** + * Destroy running context for an engine. + * + * This method can be used to force the FlutterEngine object to release all resources. + * After sending this message, the object will be in an unusable state until it is deallocated. + * Accessing properties or sending messages to it will result in undefined behavior or runtime + * errors. + */ +- (void)destroyContext; + +/** + * Ensures that Flutter will generate a semantics tree. + * + * This is enabled by default if certain accessibility services are turned on by + * the user, or when using a Simulator. This method allows a user to turn + * semantics on when they would not ordinarily be generated and the performance + * overhead is not a concern, e.g. for UI testing. Note that semantics should + * never be programmatically turned off, as it would potentially disable + * accessibility services an end user has requested. + * + * This method must only be called after launching the engine via + * `-runWithEntrypoint:` or `-runWithEntryPoint:libraryURI`. + * + * Although this method returns synchronously, it does not guarantee that a + * semantics tree is actually available when the method returns. It + * synchronously ensures that the next frame the Flutter framework creates will + * have a semantics tree. + * + * You can subscribe to semantics updates via `NSNotificationCenter` by adding + * an observer for the name `FlutterSemanticsUpdateNotification`. The `object` + * parameter will be the `FlutterViewController` associated with the semantics + * update. This will asynchronously fire after a semantics tree has actually + * built (which may be some time after the frame has been rendered). + */ +- (void)ensureSemanticsEnabled; + +/** + * Sets the `FlutterViewController` for this instance. The FlutterEngine must be + * running (e.g. a successful call to `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI`) + * before calling this method. Callers may pass nil to remove the viewController + * and have the engine run headless in the current process. + * + * A FlutterEngine can only have one `FlutterViewController` at a time. If there is + * already a `FlutterViewController` associated with this instance, this method will replace + * the engine's current viewController with the newly specified one. + * + * Setting the viewController will signal the engine to start animations and drawing, and unsetting + * it will signal the engine to stop animations and drawing. However, neither will impact the state + * of the Dart program's execution. + */ +@property(nonatomic, weak) FlutterViewController* viewController; + +/** + * The `FlutterMethodChannel` used for localization related platform messages, such as + * setting the locale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly, nullable) FlutterMethodChannel* localizationChannel; +/** + * The `FlutterMethodChannel` used for navigation related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Navigation + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/navigation-constant.html) + * @see [Navigator Widget](https://api.flutter.dev/flutter/widgets/Navigator-class.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* navigationChannel; + +/** + * The `FlutterMethodChannel` used for restoration related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Restoration + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/restoration-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* restorationChannel; + +/** + * The `FlutterMethodChannel` used for core platform messages, such as + * information about the screen orientation. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterMethodChannel* platformChannel; + +/** + * The `FlutterMethodChannel` used to communicate text input events to the + * Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Text Input + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/textInput-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* textInputChannel; + +/** + * The `FlutterBasicMessageChannel` used to communicate app lifecycle events + * to the Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Lifecycle + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/lifecycle-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* lifecycleChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating system events, such as + * memory pressure events. + * + * Can be nil after `destroyContext` is called. + * + * @see [System + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/system-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* systemChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating user settings such as + * clock format and text scale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* settingsChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating key events + * from physical keyboards + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* keyEventChannel; + +/** + * The depcreated `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) + NSURL* observatoryUrl FLUTTER_DEPRECATED("Use vmServiceUrl instead"); + +/** + * The `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) NSURL* vmServiceUrl; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterEngine (used for communicating with + * channels). + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * The `FlutterTextureRegistry` associated with this FlutterEngine (used to register textures). + */ +@property(nonatomic, readonly) NSObject* textureRegistry; + +/** + * The UI Isolate ID of the engine. + * + * This property will be nil if the engine is not running. + */ +@property(nonatomic, readonly, copy, nullable) NSString* isolateId; + +/** + * Whether or not GPU calls are allowed. + * + * Typically this is set when the app is backgrounded and foregrounded. + */ +@property(nonatomic, assign) BOOL isGpuDisabled; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERENGINE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngineGroup.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngineGroup.h new file mode 100644 index 0000000..097ffd6 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterEngineGroup.h @@ -0,0 +1,110 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterEngine.h" + +NS_ASSUME_NONNULL_BEGIN + +/** Options that control how a FlutterEngine should be created. */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroupOptions : NSObject + +/** + * The name of a top-level function from a Dart library. If this is FlutterDefaultDartEntrypoint + * (or nil); this will default to `main()`. If it is not the app's main() function, that function + * must be decorated with `@pragma(vm:entry-point)` to ensure themethod is not tree-shaken by the + * Dart compiler. + */ +@property(nonatomic, copy, nullable) NSString* entrypoint; + +/** + * The URI of the Dart library which contains the entrypoint method. If nil, this will default to + * the same library as the `main()` function in the Dart program. + */ +@property(nonatomic, copy, nullable) NSString* libraryURI; + +/** + * The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + */ +@property(nonatomic, copy, nullable) NSString* initialRoute; + +/** + * Arguments passed as a list of string to Dart's entrypoint function. + */ +@property(nonatomic, retain, nullable) NSArray* entrypointArgs; +@end + +/** + * Represents a collection of FlutterEngines who share resources which allows + * them to be created with less time const and occupy less memory than just + * creating multiple FlutterEngines. + * + * Deleting a FlutterEngineGroup doesn't invalidate existing FlutterEngines, but + * it eliminates the possibility to create more FlutterEngines in that group. + * + * @warning This class is a work-in-progress and may change. + * @see https://github.com/flutter/flutter/issues/72009 + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroup : NSObject +- (instancetype)init NS_UNAVAILABLE; + +/** + * Initialize a new FlutterEngineGroup. + * + * @param name The name that will present in the threads shared across the + * engines in this group. + * @param project The `FlutterDartProject` that all FlutterEngines in this group + * will be executing. + */ +- (instancetype)initWithName:(NSString*)name + project:(nullable FlutterDartProject*)project NS_DESIGNATED_INITIALIZER; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param options Options that control how a FlutterEngine should be created. + * + * @see FlutterEngineGroupOptions + */ +- (FlutterEngine*)makeEngineWithOptions:(nullable FlutterEngineGroupOptions*)options; +@end + +NS_ASSUME_NONNULL_END diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterHeadlessDartRunner.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterHeadlessDartRunner.h new file mode 100644 index 0000000..bc58dd8 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterHeadlessDartRunner.h @@ -0,0 +1,97 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ +#define FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ + +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" + +/** + * A callback for when FlutterHeadlessDartRunner has attempted to start a Dart + * Isolate in the background. + * + * @param success YES if the Isolate was started and run successfully, NO + * otherwise. + */ +typedef void (^FlutterHeadlessDartRunnerCallback)(BOOL success); + +/** + * The deprecated FlutterHeadlessDartRunner runs Flutter Dart code with a null rasterizer, + * and no native drawing surface. It is appropriate for use in running Dart + * code e.g. in the background from a plugin. + * + * Most callers should prefer using `FlutterEngine` directly; this interface exists + * for legacy support. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_DEPRECATED("FlutterEngine should be used rather than FlutterHeadlessDartRunner") +@interface FlutterHeadlessDartRunner : FlutterEngine + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(FlutterDartProject*)projectOrNil; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + * @param restorationEnabled Must be set to `NO`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Not recommended for use - will initialize with a default label ("io.flutter.headless") + * and the default FlutterDartProject. + */ +- (instancetype)init; + +@end + +#endif // FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterMacros.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterMacros.h new file mode 100644 index 0000000..da99e10 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterMacros.h @@ -0,0 +1,48 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERMACROS_H_ +#define FLUTTER_FLUTTERMACROS_H_ + +#if defined(FLUTTER_FRAMEWORK) + +#define FLUTTER_DARWIN_EXPORT __attribute__((visibility("default"))) + +#else // defined(FLUTTER_SDK) + +#define FLUTTER_DARWIN_EXPORT + +#endif // defined(FLUTTER_SDK) + +#ifndef NS_ASSUME_NONNULL_BEGIN +#define NS_ASSUME_NONNULL_BEGIN _Pragma("clang assume_nonnull begin") +#define NS_ASSUME_NONNULL_END _Pragma("clang assume_nonnull end") +#endif // defined(NS_ASSUME_NONNULL_BEGIN) + +/** + * Indicates that the API has been deprecated for the specified reason. Code + * that uses the deprecated API will continue to work as before. However, the + * API will soon become unavailable and users are encouraged to immediately take + * the appropriate action mentioned in the deprecation message and the BREAKING + * CHANGES section present in the Flutter.h umbrella header. + */ +#define FLUTTER_DEPRECATED(msg) __attribute__((__deprecated__(msg))) + +/** + * Indicates that the previously deprecated API is now unavailable. Code that + * uses the API will not work and the declaration of the API is only a stub + * meant to display the given message detailing the actions for the user to take + * immediately. + */ +#define FLUTTER_UNAVAILABLE(msg) __attribute__((__unavailable__(msg))) + +#if __has_feature(objc_arc) +#define FLUTTER_ASSERT_ARC +#define FLUTTER_ASSERT_NOT_ARC #error ARC must be disabled ! +#else +#define FLUTTER_ASSERT_ARC #error ARC must be enabled ! +#define FLUTTER_ASSERT_NOT_ARC +#endif + +#endif // FLUTTER_FLUTTERMACROS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlatformViews.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlatformViews.h new file mode 100644 index 0000000..18a5709 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlatformViews.h @@ -0,0 +1,56 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLATFORMVIEWS_H_ +#define FLUTTER_FLUTTERPLATFORMVIEWS_H_ + +#import + +#import "FlutterCodecs.h" +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Wraps a `UIView` for embedding in the Flutter hierarchy + */ +@protocol FlutterPlatformView +/** + * Returns a reference to the `UIView` that is wrapped by this `FlutterPlatformView`. + */ +- (UIView*)view; +@end + +FLUTTER_DARWIN_EXPORT +@protocol FlutterPlatformViewFactory +/** + * Create a `FlutterPlatformView`. + * + * Implemented by iOS code that expose a `UIView` for embedding in a Flutter app. + * + * The implementation of this method should create a new `UIView` and return it. + * + * @param frame The rectangle for the newly created `UIView` measured in points. + * @param viewId A unique identifier for this `UIView`. + * @param args Parameters for creating the `UIView` sent from the Dart side of the Flutter app. + * If `createArgsCodec` is not implemented, or if no creation arguments were sent from the Dart + * code, this will be null. Otherwise this will be the value sent from the Dart code as decoded by + * `createArgsCodec`. + */ +- (NSObject*)createWithFrame:(CGRect)frame + viewIdentifier:(int64_t)viewId + arguments:(id _Nullable)args; + +/** + * Returns the `FlutterMessageCodec` for decoding the args parameter of `createWithFrame`. + * + * Only needs to be implemented if `createWithFrame` needs an arguments parameter. + */ +@optional +- (NSObject*)createArgsCodec; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLATFORMVIEWS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlugin.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlugin.h new file mode 100644 index 0000000..b270414 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPlugin.h @@ -0,0 +1,445 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGIN_H_ +#define FLUTTER_FLUTTERPLUGIN_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterPlatformViews.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN +@protocol FlutterPluginRegistrar; +@protocol FlutterPluginRegistry; + +#pragma mark - +/** + * Protocol for listener of events from the UIApplication, typically a FlutterPlugin. + */ +@protocol FlutterApplicationLifeCycleDelegate + +@optional +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidBecomeActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillResignActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidEnterBackground:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillEnterForeground:(UIApplication*)application; + +/** + Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillTerminate:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +#pragma mark - +/** + * A plugin registration callback. + * + * Used for registering plugins with additional instances of + * `FlutterPluginRegistry`. + * + * @param registry The registry to register plugins with. + */ +typedef void (*FlutterPluginRegistrantCallback)(NSObject* registry); + +#pragma mark - +/** + * Implemented by the iOS part of a Flutter plugin. + * + * Defines a set of optional callback methods and a method to set up the plugin + * and register it to be called by other application components. + */ +@protocol FlutterPlugin +@required +/** + * Registers this plugin using the context information and callback registration + * methods exposed by the given registrar. + * + * The registrar is obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + * + * The caller of this method, a plugin registrant, is usually autogenerated by + * Flutter tooling based on declared plugin dependencies. The generated registrant + * asks the registry for a registrar for each plugin, and calls this method to + * allow the plugin to initialize itself and register callbacks with application + * objects available through the registrar protocol. + * + * @param registrar A helper providing application context and methods for + * registering callbacks. + */ ++ (void)registerWithRegistrar:(NSObject*)registrar; +@optional +/** + * Set a callback for registering plugins to an additional `FlutterPluginRegistry`, + * including headless `FlutterEngine` instances. + * + * This method is typically called from within an application's `AppDelegate` at + * startup to allow for plugins which create additional `FlutterEngine` instances + * to register the application's plugins. + * + * @param callback A callback for registering some set of plugins with a + * `FlutterPluginRegistry`. + */ ++ (void)setPluginRegistrantCallback:(FlutterPluginRegistrantCallback)callback; +@optional +/** + * Called if this plugin has been registered to receive `FlutterMethodCall`s. + * + * @param call The method call command object. + * @param result A callback for submitting the result of the call. + */ +- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result; +@optional +/** + * Called when a plugin is being removed from a `FlutterEngine`, which is + * usually the result of the `FlutterEngine` being deallocated. This method + * provides the opportunity to do necessary cleanup. + * + * You will only receive this method if you registered your plugin instance with + * the `FlutterEngine` via `-[FlutterPluginRegistry publish:]`. + * + * @param registrar The registrar that was used to publish the plugin. + * + */ +- (void)detachFromEngineForRegistrar:(NSObject*)registrar; +@end + +#pragma mark - +/** + * How the UIGestureRecognizers of a platform view are blocked. + * + * UIGestureRecognizers of platform views can be blocked based on decisions made by the + * Flutter Framework (e.g. When an interact-able widget is covering the platform view). + */ +typedef enum { + /** + * Flutter blocks all the UIGestureRecognizers on the platform view as soon as it + * decides they should be blocked. + * + * With this policy, only the `touchesBegan` method for all the UIGestureRecognizers is guaranteed + * to be called. + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyEager, + /** + * Flutter blocks the platform view's UIGestureRecognizers from recognizing only after + * touchesEnded was invoked. + * + * This results in the platform view's UIGestureRecognizers seeing the entire touch sequence, + * but never recognizing the gesture (and never invoking actions). + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded, +} FlutterPlatformViewGestureRecognizersBlockingPolicy; + +#pragma mark - +/** + * Registration context for a single `FlutterPlugin`, providing a one stop shop + * for the plugin to access contextual information and register callbacks for + * various application events. + * + * Registrars are obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + */ +@protocol FlutterPluginRegistrar +/** + * Returns a `FlutterBinaryMessenger` for creating Dart/iOS communication + * channels to be used by the plugin. + * + * @return The messenger. + */ +- (NSObject*)messenger; + +/** + * Returns a `FlutterTextureRegistry` for registering textures + * provided by the plugin. + * + * @return The texture registry. + */ +- (NSObject*)textures; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins expose `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins can expose a `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + * @param gestureRecognizersBlockingPolicy How UIGestureRecognizers on the platform views are + * blocked. + * + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId + gestureRecognizersBlockingPolicy: + (FlutterPlatformViewGestureRecognizersBlockingPolicy)gestureRecognizersBlockingPolicy; + +/** + * Publishes a value for external use of the plugin. + * + * Plugins may publish a single value, such as an instance of the + * plugin's main class, for situations where external control or + * interaction is needed. + * + * The published value will be available from the `FlutterPluginRegistry`. + * Repeated calls overwrite any previous publication. + * + * @param value The value to be published. + */ +- (void)publish:(NSObject*)value; + +/** + * Registers the plugin as a receiver of incoming method calls from the Dart side + * on the specified `FlutterMethodChannel`. + * + * @param delegate The receiving object, such as the plugin's main class. + * @param channel The channel + */ +- (void)addMethodCallDelegate:(NSObject*)delegate + channel:(FlutterMethodChannel*)channel; + +/** + * Registers the plugin as a receiver of `UIApplicationDelegate` calls. + * + * @param delegate The receiving object, such as the plugin's main class. + */ +- (void)addApplicationDelegate:(NSObject*)delegate; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; +@end + +#pragma mark - +/** + * A registry of Flutter iOS plugins. + * + * Plugins are identified by unique string keys, typically the name of the + * plugin's main class. The registry tracks plugins by this key, mapping it to + * a value published by the plugin during registration, if any. This provides a + * very basic means of cross-plugin coordination with loose coupling between + * unrelated plugins. + * + * Plugins typically need contextual information and the ability to register + * callbacks for various application events. To keep the API of the registry + * focused, these facilities are not provided directly by the registry, but by + * a `FlutterPluginRegistrar`, created by the registry in exchange for the unique + * key of the plugin. + * + * There is no implied connection between the registry and the registrar. + * Specifically, callbacks registered by the plugin via the registrar may be + * relayed directly to the underlying iOS application objects. + */ +@protocol FlutterPluginRegistry +/** + * Returns a registrar for registering a plugin. + * + * @param pluginKey The unique key identifying the plugin. + */ +- (nullable NSObject*)registrarForPlugin:(NSString*)pluginKey; +/** + * Returns whether the specified plugin has been registered. + * + * @param pluginKey The unique key identifying the plugin. + * @return `YES` if `registrarForPlugin` has been called with `pluginKey`. + */ +- (BOOL)hasPlugin:(NSString*)pluginKey; + +/** + * Returns a value published by the specified plugin. + * + * @param pluginKey The unique key identifying the plugin. + * @return An object published by the plugin, if any. Will be `NSNull` if + * nothing has been published. Will be `nil` if the plugin has not been + * registered. + */ +- (nullable NSObject*)valuePublishedByPlugin:(NSString*)pluginKey; +@end + +#pragma mark - +/** + * Implement this in the `UIAppDelegate` of your app to enable Flutter plugins to register + * themselves to the application life cycle events. + * + * For plugins to receive events from `UNUserNotificationCenter`, register this as the + * `UNUserNotificationCenterDelegate`. + */ +@protocol FlutterAppLifeCycleProvider + +/** + * Called when registering a new `FlutterApplicaitonLifeCycleDelegate`. + * + * See also: `-[FlutterAppDelegate addApplicationLifeCycleDelegate:]` + */ +- (void)addApplicationLifeCycleDelegate:(NSObject*)delegate; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGIN_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h new file mode 100644 index 0000000..ba317f4 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h @@ -0,0 +1,148 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ +#define FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ + +#import "FlutterPlugin.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Propagates `UIAppDelegate` callbacks to registered plugins. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterPluginAppLifeCycleDelegate : NSObject + +/** + * Registers `delegate` to receive life cycle callbacks via this FlutterPluginAppLifeCycleDelegate + * as long as it is alive. + * + * `delegate` will only be referenced weakly. + */ +- (void)addDelegate:(NSObject*)delegate; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this plugin has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @returns `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterTexture.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterTexture.h new file mode 100644 index 0000000..59d2ced --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterTexture.h @@ -0,0 +1,62 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERTEXTURE_H_ +#define FLUTTER_FLUTTERTEXTURE_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +FLUTTER_DARWIN_EXPORT +/** + * Represents a texture that can be shared with Flutter. + * + * See also: https://github.com/flutter/plugins/tree/master/packages/camera + */ +@protocol FlutterTexture +/** Copy the contents of the texture into a `CVPixelBuffer`. */ +- (CVPixelBufferRef _Nullable)copyPixelBuffer; + +/** + * Called when the texture is unregistered. + * + * Called on the raster thread. + */ +@optional +- (void)onTextureUnregistered:(NSObject*)texture; +@end + +FLUTTER_DARWIN_EXPORT +/** + * A collection of registered `FlutterTexture`'s. + */ +@protocol FlutterTextureRegistry +/** + * Registers a `FlutterTexture` for usage in Flutter and returns an id that can be used to reference + * that texture when calling into Flutter with channels. Textures must be registered on the + * platform thread. On success returns the pointer to the registered texture, else returns 0. + */ +- (int64_t)registerTexture:(NSObject*)texture; +/** + * Notifies Flutter that the content of the previously registered texture has been updated. + * + * This will trigger a call to `-[FlutterTexture copyPixelBuffer]` on the raster thread. + */ +- (void)textureFrameAvailable:(int64_t)textureId; +/** + * Unregisters a `FlutterTexture` that has previously regeistered with `registerTexture:`. Textures + * must be unregistered on the platform thread. + * + * @param textureId The result that was previously returned from `registerTexture:`. + */ +- (void)unregisterTexture:(int64_t)textureId; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERTEXTURE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterViewController.h b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterViewController.h new file mode 100644 index 0000000..d33d989 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Headers/FlutterViewController.h @@ -0,0 +1,259 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERVIEWCONTROLLER_H_ +#define FLUTTER_FLUTTERVIEWCONTROLLER_H_ + +#import +#include + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FlutterEngine; + +/** + * The name used for semantic update notifications via `NSNotificationCenter`. + * + * The object passed as the sender is the `FlutterViewController` associated + * with the update. + */ +FLUTTER_DARWIN_EXPORT +extern NSNotificationName const FlutterSemanticsUpdateNotification; + +/** + * A `UIViewController` implementation for Flutter views. + * + * Dart execution, channel communication, texture registration, and plugin registration are all + * handled by `FlutterEngine`. Calls on this class to those members all proxy through to the + * `FlutterEngine` attached FlutterViewController. + * + * A FlutterViewController can be initialized either with an already-running `FlutterEngine` via the + * `initWithEngine:` initializer, or it can be initialized with a `FlutterDartProject` that will be + * used to implicitly spin up a new `FlutterEngine`. Creating a `FlutterEngine` before showing a + * FlutterViewController can be used to pre-initialize the Dart VM and to prepare the isolate in + * order to reduce the latency to the first rendered frame. See + * https://flutter.dev/docs/development/add-to-app/performance for more details on loading + * latency. + * + * Holding a `FlutterEngine` independently of FlutterViewControllers can also be used to not to lose + * Dart-related state and asynchronous tasks when navigating back and forth between a + * FlutterViewController and other `UIViewController`s. + */ +FLUTTER_DARWIN_EXPORT +#ifdef __IPHONE_13_4 +@interface FlutterViewController + : UIViewController +#else +@interface FlutterViewController : UIViewController +#endif + +/** + * Initializes this FlutterViewController with the specified `FlutterEngine`. + * + * The initialized viewcontroller will attach itself to the engine as part of this process. + * + * @param engine The `FlutterEngine` instance to attach to. Cannot be nil. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithEngine:(FlutterEngine*)engine + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject` and `initialRoute`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param initialRoute The initial `Navigator` route to load. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + initialRoute:(nullable NSString*)initialRoute + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializer that is called from loading a FlutterViewController from a XIB. + * + * See also: + * https://developer.apple.com/documentation/foundation/nscoding/1416145-initwithcoder?language=objc + */ +- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_DESIGNATED_INITIALIZER; + +/** + * Registers a callback that will be invoked when the Flutter view has been rendered. + * The callback will be fired only once. + * + * Replaces an existing callback. Use a `nil` callback to unregister the existing one. + */ +- (void)setFlutterViewDidRenderCallback:(void (^)(void))callback; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified + * package. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Deprecated API to set initial route. + * + * Attempts to set the first route that the Flutter app shows if the Flutter + * runtime hasn't yet started. The default is "/". + * + * This method must be called immediately after `initWithProject` and has no + * effect when using `initWithEngine` if the `FlutterEngine` has already been + * run. + * + * Setting this after the Flutter started running has no effect. See `pushRoute` + * and `popRoute` to change the route after Flutter started running. + * + * This is deprecated because it needs to be called at the time of initialization + * and thus should just be in the `initWithProject` initializer. If using + * `initWithEngine`, the initial route should be set on the engine's + * initializer. + * + * @param route The name of the first route to show. + */ +- (void)setInitialRoute:(NSString*)route + FLUTTER_DEPRECATED("Use FlutterViewController initializer to specify initial route"); + +/** + * Instructs the Flutter Navigator (if any) to go back. + */ +- (void)popRoute; + +/** + * Instructs the Flutter Navigator (if any) to push a route on to the navigation + * stack. + * + * @param route The name of the route to push to the navigation stack. + */ +- (void)pushRoute:(NSString*)route; + +/** + * The `FlutterPluginRegistry` used by this FlutterViewController. + */ +- (id)pluginRegistry; + +/** + * A wrapper around UIAccessibilityIsVoiceOverRunning(). + * + * As a C function, UIAccessibilityIsVoiceOverRunning() cannot be mocked in testing. Mock + * this class method to testing features depends on UIAccessibilityIsVoiceOverRunning(). + */ ++ (BOOL)isUIAccessibilityIsVoiceOverRunning; + +/** + * True if at least one frame has rendered and the ViewController has appeared. + * + * This property is reset to false when the ViewController disappears. It is + * guaranteed to only alternate between true and false for observers. + */ +@property(nonatomic, readonly, getter=isDisplayingFlutterUI) BOOL displayingFlutterUI; + +/** + * Specifies the view to use as a splash screen. Flutter's rendering is asynchronous, so the first + * frame rendered by the Flutter application might not immediately appear when the Flutter view is + * initially placed in the view hierarchy. The splash screen view will be used as + * a replacement until the first frame is rendered. + * + * The view used should be appropriate for multiple sizes; an autoresizing mask to + * have a flexible width and height will be applied automatically. + * + * Set to nil to remove the splash screen view. + */ +@property(strong, nonatomic, nullable) UIView* splashScreenView; + +/** + * Attempts to set the `splashScreenView` property from the `UILaunchStoryboardName` from the + * main bundle's `Info.plist` file. This method will not change the value of `splashScreenView` + * if it cannot find a default one from a storyboard or nib. + * + * @return `YES` if successful, `NO` otherwise. + */ +- (BOOL)loadDefaultSplashScreenView; + +/** + * Controls whether the created view will be opaque or not. + * + * Default is `YES`. Note that setting this to `NO` may negatively impact performance + * when using hardware acceleration, and toggling this will trigger a re-layout of the + * view. + */ +@property(nonatomic, getter=isViewOpaque) BOOL viewOpaque; + +/** + * The `FlutterEngine` instance for this view controller. This could be the engine this + * `FlutterViewController` is initialized with or a new `FlutterEngine` implicitly created if + * no engine was supplied during initialization. + */ +@property(weak, nonatomic, readonly) FlutterEngine* engine; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterViewController (used for communicating + * with channels). + * + * This is just a convenient way to get the |FlutterEngine|'s binary messenger. + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * If the `FlutterViewController` creates a `FlutterEngine`, this property + * determines if that `FlutterEngine` has `allowHeadlessExecution` set. + * + * The intention is that this is used with the XIB. Otherwise, a + * `FlutterEngine` can just be sent to the init methods. + * + * See also: `-[FlutterEngine initWithName:project:allowHeadlessExecution:]` + */ +@property(nonatomic, readonly) BOOL engineAllowHeadlessExecution; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERVIEWCONTROLLER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Info.plist new file mode 100644 index 0000000..6cdc70a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Info.plist @@ -0,0 +1,30 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + Flutter + CFBundleIdentifier + io.flutter.flutter + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Flutter + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + FlutterEngine + b20183e04096094bcc37d9cde2a4b96f5cc684cf + ClangVersion + b'Fuchsia clang version 17.0.0 (https://llvm.googlesource.com/llvm-project 6d667d4b261e81f325756fdfd5bb43b3b3d2451d)' + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Modules/module.modulemap b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Modules/module.modulemap new file mode 100644 index 0000000..bf81c8a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Flutter { + umbrella header "Flutter.h" + + export * + module * { export * } +} diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/_CodeSignature/CodeResources b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..f0ba51c --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/_CodeSignature/CodeResources @@ -0,0 +1,300 @@ + + + + + files + + Headers/Flutter.h + + Jfv2Vo3itUyjWGSxXIEV/9Skri8= + + Headers/FlutterAppDelegate.h + + QU3ZohDucENpee9k2C4s7Ovkwxw= + + Headers/FlutterBinaryMessenger.h + + Qj6OtkzORWI38PIdXyyJc+eribM= + + Headers/FlutterCallbackCache.h + + lTUaQzdBsC/YVTRn48+amlv1iw4= + + Headers/FlutterChannels.h + + bhEGVRctQGJxYtCb3asK0k4Iq74= + + Headers/FlutterCodecs.h + + 0hdw5jbuAAJJC64dk/bhma5HKIw= + + Headers/FlutterDartProject.h + + ONyPj3D2igT9nx6hVIYtVA5JFG0= + + Headers/FlutterEngine.h + + cupY3Xn8Bw2kFlGmh/gwYQCFMkU= + + Headers/FlutterEngineGroup.h + + nZcTgHGDD30QzPLlQfP8gP+S06o= + + Headers/FlutterHeadlessDartRunner.h + + XnDDN+yQj6qLXTuhI0tgTMDbtbI= + + Headers/FlutterMacros.h + + T2wuUnVU/0f9v8Mc7CGjJQWLdGU= + + Headers/FlutterPlatformViews.h + + JofRibXJB+HPxhe0SAphfoKFSTE= + + Headers/FlutterPlugin.h + + EPrA0Ggvn83vzoNUoJ1lETKIEGg= + + Headers/FlutterPluginAppLifeCycleDelegate.h + + eBwJo3E6jQLlhEPIm5a+XAUx3o0= + + Headers/FlutterTexture.h + + yBJovGku2dvjTDXp2km51wNc8yM= + + Headers/FlutterViewController.h + + 6nBSlZSj+EZbyrAd2cS7H0pF3bA= + + Info.plist + + 5EFZMHUgrzxWoGrIGrcxFp5fs3M= + + Modules/module.modulemap + + wJV5dCKEGl+FAtDc8wJJh/fvKXs= + + icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + + files2 + + Headers/Flutter.h + + hash2 + + uwm8JZgId56AcAI6HgoYvB86L3U5XLTdogukvzdieH0= + + + Headers/FlutterAppDelegate.h + + hash2 + + ZE5n3wyEphmq0NvXEk+TgX9+IH2WWIRdDoZj+8Zmu+E= + + + Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Headers/FlutterCallbackCache.h + + hash2 + + 1dNDb41OVcGRhdnQfLHPfpfNUSb9f9Dmg57Bqo4gJv0= + + + Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Headers/FlutterEngine.h + + hash2 + + nqtk8YLddo2rPiYBl7tgIviV+uOyWZO9Ey3zKZBCG2o= + + + Headers/FlutterEngineGroup.h + + hash2 + + I+878Ez9ZpVdAR2GOzKJKjaZ5m807AeAF++2pSMQss4= + + + Headers/FlutterHeadlessDartRunner.h + + hash2 + + sELlVsLARG1gBlPndKt24VxGVmBMgcXWeShflcVtZBQ= + + + Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Headers/FlutterPlatformViews.h + + hash2 + + c4TS8HplkxEc+09dBX5h+BZ+vkI9QJU/3ljud7WmdTM= + + + Headers/FlutterPlugin.h + + hash2 + + zRjDCQ3ULUe9Pf2BcmGjO5/rdI00/Siw5fnIQZsJjMI= + + + Headers/FlutterPluginAppLifeCycleDelegate.h + + hash2 + + yxMe4j+1eEByv8dhzIAxAdnDSnF01UZxK1q9r8DtR84= + + + Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Headers/FlutterViewController.h + + hash2 + + P0GsFW0zzP6Yi8y8zBx1bdWpXoBcaVpIbO3lgDBZoDY= + + + Modules/module.modulemap + + hash2 + + 0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs= + + + icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/icudtl.dat b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/icudtl.dat new file mode 100644 index 0000000..62cfc0d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Flutter.framework/icudtl.dat differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist new file mode 100644 index 0000000..0da50c7 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon60x60@2x.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon60x60@2x.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Assets.car b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Assets.car new file mode 100644 index 0000000..876cbb8 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Assets.car differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 0000000..623fb36 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 0000000..32288e8 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 0000000..1b57c9a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib new file mode 100644 index 0000000..5368f93 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 0000000..9a41f2c Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib new file mode 100644 index 0000000..63e8a39 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App new file mode 100755 index 0000000..8d561f2 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..86647d4 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources @@ -0,0 +1,799 @@ + + + + + files + + Info.plist + + 85iaADE5tc/NukRC+KGdiZaZ0ZA= + + flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + flutter_assets/assets/images/.DS_Store + + +8iQ6HyKW+M4wcscKAFYhanfUcY= + + flutter_assets/assets/images/1.jpeg + + T4eHigGqCjppEMN5PZjXN63j2UE= + + flutter_assets/assets/images/13.jpg + + xJdsU88dxzNUCrvQhUVJfA36vy8= + + flutter_assets/assets/images/2.jpeg + + Kpr+ISskXOhd00somUarsLf8WL0= + + flutter_assets/assets/images/3.jpeg + + d377rWShqdNs2Vg7Rxeo7aCMMLU= + + flutter_assets/assets/images/4.jpeg + + eJYwOmsjrusGdvMKWb5xwlngYP0= + + flutter_assets/assets/images/5.jpeg + + TT4rmr6kGvrgAnk8aSvOh+FM3g4= + + flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/beach.png + + HfyouspGEztalPd3FzMVoXZzLT8= + + flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + flutter_assets/assets/images/circleavatar.jpg + + +XFVNZMeO2KIXnV8K5yRvsLbBKI= + + flutter_assets/assets/images/circleavatar1.png + + be2kO6flRJYJDjjrTPvDWUHyy1E= + + flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + flutter_assets/assets/images/gondola.jpg + + KUZ1nT6qT6g9dc9k3mHtSaHzwp4= + + flutter_assets/assets/images/h1.jpg + + SdjVzsZhFoZGiKoKhpnGgOlT5r8= + + flutter_assets/assets/images/h2.jpeg + + /cjCaNGdItMcCUGcXJ4j280zJ0E= + + flutter_assets/assets/images/h3.jpeg + + 0pCymnfRDUKYEPZArx+bdBtV+Lc= + + flutter_assets/assets/images/h4.jpeg + + 6FSCt2wBul/Up7S/kzNFuA5PJZw= + + flutter_assets/assets/images/h5.jpeg + + qh7CO4lBJQtqHco5RyTFMXQhzks= + + flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + flutter_assets/assets/images/hotel0.jpg + + 8dGP3fsV/whkk0xfs4837sWwC20= + + flutter_assets/assets/images/hotel1.jpg + + XVN8jBEPFZ3u3bmJDnY2jgdm86c= + + flutter_assets/assets/images/hotel2.jpg + + X76EqYI/EqeZxJUy8sMIgHiP6Ys= + + flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + flutter_assets/assets/images/menubar.png + + +xTHaiVnUgCz3/80fHJSXQB+uxc= + + flutter_assets/assets/images/mountain.png + + se8c/XNUOdzYckTeX/1zAqQmJSk= + + flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + flutter_assets/assets/images/newyork.jpg + + Xuy5rCeN0+S9GRfWpnU7FbyUenM= + + flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + flutter_assets/assets/images/santorini.jpg + + lbQFbhthk6Q4yBzlisRJPRn9LmY= + + flutter_assets/assets/images/saopaulo.jpg + + 6to0LgPD/ciBT9tpY848Oqr4b5o= + + flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + flutter_assets/assets/images/stmarksbasilica.jpg + + GjV2FKCViife8mfluTBINMBgRas= + + flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + flutter_assets/assets/images/venice.jpg + + aZm0eWz2fCZxInaKk8MvsBMMx50= + + flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + flutter_assets/kernel_blob.bin + + 8lWs84oWU2hIOx3aMqz49h4NQ+0= + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + flutter_assets/shaders/ink_sparkle.frag + + KL+7f3IYR/Y9WDlxxUeDmgGoluc= + + flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + + files2 + + flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + flutter_assets/assets/images/1.jpeg + + hash2 + + ZM/gRNk9HmNFDT8BSanVTIPVGTQ+FvTvfqGl5dStDjc= + + + flutter_assets/assets/images/13.jpg + + hash2 + + 4pO0Zep+HqPIVOTvdV6gJqsSQM78/b6bhO9mqhqK0Wo= + + + flutter_assets/assets/images/2.jpeg + + hash2 + + ytFnREnrsNFG0NvVvVeP1mv8qsXFbpRGFhsWLUTiitY= + + + flutter_assets/assets/images/3.jpeg + + hash2 + + CBlcAJZwqOjCmj/xnHWOODg7HNdhf/I7S7P0eMKYRd4= + + + flutter_assets/assets/images/4.jpeg + + hash2 + + dzWkydrkKullJAGPu+316lHaUO6n36j6+181qZWpwPU= + + + flutter_assets/assets/images/5.jpeg + + hash2 + + gPZ55PgDY7Wo2nV6b9e10+mJ/vyk8bAv1gCeDnCfhGs= + + + flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/beach.png + + hash2 + + y5lhZTmDRFAd7umZIXEABF+boH2H97AiGStm+R9vwzc= + + + flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + flutter_assets/assets/images/circleavatar.jpg + + hash2 + + 4uXcGTkEvvHPJILKHdwAkUSh1QMC0uS7g0AZyG3EbuE= + + + flutter_assets/assets/images/circleavatar1.png + + hash2 + + AKFLcQ1ZyiiPNdbgAja0/IWSf7Dg47kF8Rp+JdCHR2g= + + + flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + flutter_assets/assets/images/gondola.jpg + + hash2 + + mxmsoD88A0QjPveARAEkDaNoY/VAmDDcYXmymROv3fA= + + + flutter_assets/assets/images/h1.jpg + + hash2 + + Kuqwn3Vbb46v7iAlUHyjY1yw3EniewBiMf9864JOJIg= + + + flutter_assets/assets/images/h2.jpeg + + hash2 + + d39wOwhkopGvyzoi+P0fP3v0TNoNj3qO1ec1rcEKbyE= + + + flutter_assets/assets/images/h3.jpeg + + hash2 + + 61GSrfe8Ie+gX0W/Nv2Ohg1Wn1sinOfDNEKw5Kgr+xE= + + + flutter_assets/assets/images/h4.jpeg + + hash2 + + vN3aG4W6YiSh5x3WB/zpBybI7mgaf3+m/ROF2J4i8yA= + + + flutter_assets/assets/images/h5.jpeg + + hash2 + + ZxRldVFZ83zRbJMkoFkweKZv9y1Jyo95tzwPJ9NS1Zc= + + + flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + flutter_assets/assets/images/hotel0.jpg + + hash2 + + zoDLFXM0uf+NpyOIWoJmYOevt10RMj61L/SzMDdLLXs= + + + flutter_assets/assets/images/hotel1.jpg + + hash2 + + i0jDGexKYKlgcqUekECVK6bGw7lk8i8owJesmETyo6g= + + + flutter_assets/assets/images/hotel2.jpg + + hash2 + + CRhXnlJcAiRByhcRsNwaIJ251Dkbdq38HE1KlALtfrE= + + + flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + flutter_assets/assets/images/menubar.png + + hash2 + + S0J8tgV0/QoXPWtZJt3lkFtejtlA0vqdjomDCmDGa6U= + + + flutter_assets/assets/images/mountain.png + + hash2 + + Btm1IjrbdIX0DJtXRYgqDnqFyhZ4YG0SYaymN511hmY= + + + flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + flutter_assets/assets/images/newyork.jpg + + hash2 + + AljF8ys1SFUk8syawF4yYWO6sq5hWziavfmi373bsEo= + + + flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + flutter_assets/assets/images/santorini.jpg + + hash2 + + LE7YVy/IXJ6R/DnWh7ZDrYkbnuEBfmUPggYBZFNXAo0= + + + flutter_assets/assets/images/saopaulo.jpg + + hash2 + + fpHVZSqdVLqqH7kyhfmqHLexwmFZZmfXDmdiQ0JoH6o= + + + flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + flutter_assets/assets/images/stmarksbasilica.jpg + + hash2 + + 5Dlr4bXcaBmYywaMeaVz/ycenIaf5SZPDuAxEPzmKq0= + + + flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + flutter_assets/assets/images/venice.jpg + + hash2 + + iarRj4YhsmffqPbqJbPdYZ0wD2705xLFbNzq3ZWVS64= + + + flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + flutter_assets/kernel_blob.bin + + hash2 + + Ec9Y5zdu5Sx/VUp1UJ6HC9YB56nPuA27QkkaI2PVEko= + + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + flutter_assets/shaders/ink_sparkle.frag + + hash2 + + v6u8YtYjslOLIIb1rrgcOW817fxVEiBaprKuV+f6FpY= + + + flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..146fb51 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/images/.DS_Store  assetassets/images/.DS_Storeassets/images/Disney_land.webp  assetassets/images/Disney_land.webpassets/images/Eiffel_tower.jpeg  assetassets/images/Eiffel_tower.jpegassets/images/Hill_station.jpeg  assetassets/images/Hill_station.jpeg"assets/images/KAGAGAHAN_RIJANI.jpg  asset"assets/images/KAGAGAHAN_RIJANI.jpgassets/images/Mountain_icon.png  assetassets/images/Mountain_icon.pngassets/images/Red_fort.jpg  assetassets/images/Red_fort.jpg+assets/images/Taj-Mahal-Agra-India.jpg.webp  asset+assets/images/Taj-Mahal-Agra-India.jpg.webpassets/images/cartoon.jpg  assetassets/images/cartoon.jpgassets/images/china_wall.webp  assetassets/images/china_wall.webpassets/images/city.png  assetassets/images/city.pngassets/images/desert.png  assetassets/images/desert.pngassets/images/forest.png  assetassets/images/forest.png$assets/images/historical_places.jpeg  asset$assets/images/historical_places.jpegassets/images/india_gate.jpeg  assetassets/images/india_gate.jpegassets/images/las.jpeg  assetassets/images/las.jpegassets/images/las_vegas.jpeg  assetassets/images/las_vegas.jpegassets/images/lotus-temple.jpeg  assetassets/images/lotus-temple.jpegassets/images/menu.png  assetassets/images/menu.pngassets/images/menu_icon.png  assetassets/images/menu_icon.pngassets/images/murano.jpg  assetassets/images/murano.jpgassets/images/newdelhi.jpg  assetassets/images/newdelhi.jpgassets/images/paris.jpg  assetassets/images/paris.jpgassets/images/red-fort.jpg  assetassets/images/red-fort.jpgassets/images/river.png  assetassets/images/river.pngassets/images/shimla.jpeg  assetassets/images/shimla.jpegassets/images/tajmahal.jpg  assetassets/images/tajmahal.jpgassets/images/temple.jpg  assetassets/images/temple.jpgassets/images/waterfall.png  assetassets/images/waterfall.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json new file mode 100644 index 0000000..cfb4f29 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/Disney_land.webp":["assets/images/Disney_land.webp"],"assets/images/Eiffel_tower.jpeg":["assets/images/Eiffel_tower.jpeg"],"assets/images/Hill_station.jpeg":["assets/images/Hill_station.jpeg"],"assets/images/KAGAGAHAN_RIJANI.jpg":["assets/images/KAGAGAHAN_RIJANI.jpg"],"assets/images/Mountain_icon.png":["assets/images/Mountain_icon.png"],"assets/images/Red_fort.jpg":["assets/images/Red_fort.jpg"],"assets/images/Taj-Mahal-Agra-India.jpg.webp":["assets/images/Taj-Mahal-Agra-India.jpg.webp"],"assets/images/cartoon.jpg":["assets/images/cartoon.jpg"],"assets/images/china_wall.webp":["assets/images/china_wall.webp"],"assets/images/city.png":["assets/images/city.png"],"assets/images/desert.png":["assets/images/desert.png"],"assets/images/forest.png":["assets/images/forest.png"],"assets/images/historical_places.jpeg":["assets/images/historical_places.jpeg"],"assets/images/india_gate.jpeg":["assets/images/india_gate.jpeg"],"assets/images/las.jpeg":["assets/images/las.jpeg"],"assets/images/las_vegas.jpeg":["assets/images/las_vegas.jpeg"],"assets/images/lotus-temple.jpeg":["assets/images/lotus-temple.jpeg"],"assets/images/menu.png":["assets/images/menu.png"],"assets/images/menu_icon.png":["assets/images/menu_icon.png"],"assets/images/murano.jpg":["assets/images/murano.jpg"],"assets/images/newdelhi.jpg":["assets/images/newdelhi.jpg"],"assets/images/paris.jpg":["assets/images/paris.jpg"],"assets/images/red-fort.jpg":["assets/images/red-fort.jpg"],"assets/images/river.png":["assets/images/river.png"],"assets/images/shimla.jpeg":["assets/images/shimla.jpeg"],"assets/images/tajmahal.jpg":["assets/images/tajmahal.jpg"],"assets/images/temple.jpg":["assets/images/temple.jpg"],"assets/images/waterfall.png":["assets/images/waterfall.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..5c16833 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg new file mode 100644 index 0000000..7b5580a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg new file mode 100644 index 0000000..78116ea Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg new file mode 100644 index 0000000..b4ae2e7 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg new file mode 100644 index 0000000..2b0450b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg new file mode 100644 index 0000000..b4ab457 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg new file mode 100644 index 0000000..9425dc3 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png new file mode 100644 index 0000000..573458f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg new file mode 100644 index 0000000..d784d21 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png new file mode 100644 index 0000000..e42275d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg new file mode 100644 index 0000000..bc6871b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg new file mode 100644 index 0000000..3f59149 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg new file mode 100644 index 0000000..8a5fb48 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg new file mode 100644 index 0000000..00cb385 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg new file mode 100644 index 0000000..6164c61 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg new file mode 100644 index 0000000..b99dc37 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg new file mode 100644 index 0000000..dd26fc8 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg new file mode 100644 index 0000000..d384aec Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg new file mode 100644 index 0000000..26a5a95 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png new file mode 100644 index 0000000..956f328 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png new file mode 100644 index 0000000..6e8a74d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg new file mode 100644 index 0000000..04264cd Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg new file mode 100644 index 0000000..6b74157 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg new file mode 100644 index 0000000..217c24a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg new file mode 100644 index 0000000..5ae620b Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg new file mode 100644 index 0000000..79b84aa Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6a5616f Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..a8c1c88 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..79ba7ea Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..2ba50c6 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..2464640 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter new file mode 100755 index 0000000..2e1edd4 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h new file mode 100644 index 0000000..cd59a82 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h @@ -0,0 +1,24 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTER_H_ +#define FLUTTER_FLUTTER_H_ + +#import "FlutterAppDelegate.h" +#import "FlutterBinaryMessenger.h" +#import "FlutterCallbackCache.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterEngineGroup.h" +#import "FlutterHeadlessDartRunner.h" +#import "FlutterMacros.h" +#import "FlutterPlatformViews.h" +#import "FlutterPlugin.h" +#import "FlutterPluginAppLifeCycleDelegate.h" +#import "FlutterTexture.h" +#import "FlutterViewController.h" + +#endif // FLUTTER_FLUTTER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h new file mode 100644 index 0000000..ed7589a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h @@ -0,0 +1,34 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERAPPDELEGATE_H_ +#define FLUTTER_FLUTTERAPPDELEGATE_H_ + +#import + +#import "FlutterMacros.h" +#import "FlutterPlugin.h" + +/** + * `UIApplicationDelegate` subclass for simple apps that want default behavior. + * + * This class implements the following behaviors: + * * Status bar touches are forwarded to the key window's root view + * `FlutterViewController`, in order to trigger scroll to top. + * * Keeps the Flutter connection open in debug mode when the phone screen + * locks. + * + * App delegates for Flutter applications are *not* required to inherit from + * this class. Developers of custom app delegate classes should copy and paste + * code as necessary from FlutterAppDelegate.mm. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterAppDelegate + : UIResponder + +@property(strong, nonatomic) UIWindow* window; + +@end + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h new file mode 100644 index 0000000..9f59ec8 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h @@ -0,0 +1,105 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERBINARYMESSENGER_H_ +#define FLUTTER_FLUTTERBINARYMESSENGER_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a binary reply back to a Flutter message sender. Also used + * in for handling a binary message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterBinaryReply)(NSData* _Nullable reply); + +/** + * A strategy for handling incoming binary messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param reply A callback for submitting an asynchronous reply to the sender. + */ +typedef void (^FlutterBinaryMessageHandler)(NSData* _Nullable message, FlutterBinaryReply reply); + +typedef int64_t FlutterBinaryMessengerConnection; + +@protocol FlutterTaskQueue; + +/** + * A facility for communicating with the Flutter side using asynchronous message + * passing with binary messages. + * + * Implementated by: + * - `FlutterBasicMessageChannel`, which supports communication using structured + * messages. + * - `FlutterMethodChannel`, which supports communication using asynchronous + * method calls. + * - `FlutterEventChannel`, which supports commuication using event streams. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterBinaryMessenger +/// TODO(gaaclarke): Remove optional when macos supports Background Platform Channels. +@optional +- (NSObject*)makeBackgroundTaskQueue; + +- (FlutterBinaryMessengerConnection) + setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler:(FlutterBinaryMessageHandler _Nullable)handler + taskQueue:(NSObject* _Nullable)taskQueue; + +@required +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * no reply. + * + * @param channel The channel name. + * @param message The message. + */ +- (void)sendOnChannel:(NSString*)channel message:(NSData* _Nullable)message; + +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * an asynchronous reply. + * + * @param channel The channel name. + * @param message The message. + * @param callback A callback for receiving a reply. + */ +- (void)sendOnChannel:(NSString*)channel + message:(NSData* _Nullable)message + binaryReply:(FlutterBinaryReply _Nullable)callback; + +/** + * Registers a message handler for incoming binary messages from the Flutter side + * on the specified channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param channel The channel name. + * @param handler The message handler. + * @return An identifier that represents the connection that was just created to the channel. + */ +- (FlutterBinaryMessengerConnection)setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler: + (FlutterBinaryMessageHandler _Nullable)handler; + +/** + * Clears out a channel's message handler if that handler is still the one that + * was created as a result of + * `setMessageHandlerOnChannel:binaryMessageHandler:`. + * + * @param connection The result from `setMessageHandlerOnChannel:binaryMessageHandler:`. + */ +- (void)cleanUpConnection:(FlutterBinaryMessengerConnection)connection; +@end +NS_ASSUME_NONNULL_END +#endif // FLUTTER_FLUTTERBINARYMESSENGER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h new file mode 100644 index 0000000..d206558 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h @@ -0,0 +1,54 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCALLBACKCACHE_H_ +#define FLUTTER_FLUTTERCALLBACKCACHE_H_ + +#import + +#import "FlutterMacros.h" + +/** + * An object containing the result of `FlutterCallbackCache`'s `lookupCallbackInformation` + * method. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackInformation : NSObject +/** + * The name of the callback. + */ +@property(copy) NSString* callbackName; +/** + * The class name of the callback. + */ +@property(copy) NSString* callbackClassName; +/** + * The library path of the callback. + */ +@property(copy) NSString* callbackLibraryPath; +@end + +/** + * The cache containing callback information for spawning a + * `FlutterHeadlessDartRunner`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackCache : NSObject +/** + * Returns the callback information for the given callback handle. + * This callback information can be used when spawning a + * `FlutterHeadlessDartRunner`. + * + * @param handle The handle for a callback, provided by the + * Dart method `PluginUtilities.getCallbackHandle`. + * @return A `FlutterCallbackInformation` object which contains the name of the + * callback, the name of the class in which the callback is defined, and the + * path of the library which contains the callback. If the provided handle is + * invalid, nil is returned. + */ ++ (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle; + +@end + +#endif // FLUTTER_FLUTTERCALLBACKCACHE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h new file mode 100644 index 0000000..9b84cd6 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h @@ -0,0 +1,452 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCHANNELS_H_ +#define FLUTTER_FLUTTERCHANNELS_H_ + +#import "FlutterBinaryMessenger.h" +#import "FlutterCodecs.h" + +@protocol FlutterTaskQueue; + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a reply back to a Flutter message sender. Also used in + * the dual capacity for handling a message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterReply)(id _Nullable reply); + +/** + * A strategy for handling incoming messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param callback A callback for submitting a reply to the sender which can be invoked from any + * thread. + */ +typedef void (^FlutterMessageHandler)(id _Nullable message, FlutterReply callback); + +/** + * A channel for communicating with the Flutter side using basic, asynchronous + * message passing. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBasicMessageChannel : NSObject +/** + * Creates a `FlutterBasicMessageChannel` with the specified name and binary + * messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMessageCodec` to encode and decode messages. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +/** + * Sends the specified message to the Flutter side, ignoring any reply. + * + * @param message The message. Must be supported by the codec of this + * channel. + */ +- (void)sendMessage:(id _Nullable)message; + +/** + * Sends the specified message to the Flutter side, expecting an asynchronous + * reply. + * + * @param message The message. Must be supported by the codec of this channel. + * @param callback A callback to be invoked with the message reply from Flutter. + */ +- (void)sendMessage:(id _Nullable)message reply:(FlutterReply _Nullable)callback; + +/** + * Registers a message handler with this channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The message handler. + */ +- (void)setMessageHandler:(FlutterMessageHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * A method call result callback. + * + * Used for submitting a method call result back to a Flutter caller. Also used in + * the dual capacity for handling a method call result received from Flutter. + * + * @param result The result. + */ +typedef void (^FlutterResult)(id _Nullable result); + +/** + * A strategy for handling method calls. + * + * @param call The incoming method call. + * @param result A callback to asynchronously submit the result of the call. + * Invoke the callback with a `FlutterError` to indicate that the call failed. + * Invoke the callback with `FlutterMethodNotImplemented` to indicate that the + * method was unknown. Any other values, including `nil`, are interpreted as + * successful results. This can be invoked from any thread. + */ +typedef void (^FlutterMethodCallHandler)(FlutterMethodCall* call, FlutterResult result); + +/** + * A constant used with `FlutterMethodCallHandler` to respond to the call of an + * unknown method. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterMethodNotImplemented; + +/** + * A channel for communicating with the Flutter side using invocation of + * asynchronous methods. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodChannel : NSObject +/** + * Creates a `FlutterMethodChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to encode and decode method calls + * and result envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterMethodChannel` with the specified name, binary messenger, and + * method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * method codec, and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +// clang-format off +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * no results. + * + * @see [MethodChannel.setMethodCallHandler](https://api.flutter.dev/flutter/services/MethodChannel/setMethodCallHandler.html) + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + */ +// clang-format on +- (void)invokeMethod:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * an asynchronous result. + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + * @param callback A callback that will be invoked with the asynchronous result. + * The result will be a `FlutterError` instance, if the method call resulted + * in an error on the Flutter side. Will be `FlutterMethodNotImplemented`, if + * the method called was not implemented on the Flutter side. Any other value, + * including `nil`, should be interpreted as successful results. + */ +- (void)invokeMethod:(NSString*)method + arguments:(id _Nullable)arguments + result:(FlutterResult _Nullable)callback; +/** + * Registers a handler for method calls from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The method call handler. + */ +- (void)setMethodCallHandler:(FlutterMethodCallHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * An event sink callback. + * + * @param event The event. + */ +typedef void (^FlutterEventSink)(id _Nullable event); + +/** + * A strategy for exposing an event stream to the Flutter side. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterStreamHandler +/** + * Sets up an event stream and begin emitting events. + * + * Invoked when the first listener is registered with the Stream associated to + * this channel on the Flutter side. + * + * @param arguments Arguments for the stream. + * @param events A callback to asynchronously emit events. Invoke the + * callback with a `FlutterError` to emit an error event. Invoke the + * callback with `FlutterEndOfEventStream` to indicate that no more + * events will be emitted. Any other value, including `nil` are emitted as + * successful events. + * @return A FlutterError instance, if setup fails. + */ +- (FlutterError* _Nullable)onListenWithArguments:(id _Nullable)arguments + eventSink:(FlutterEventSink)events; + +/** + * Tears down an event stream. + * + * Invoked when the last listener is deregistered from the Stream associated to + * this channel on the Flutter side. + * + * The channel implementation may call this method with `nil` arguments + * to separate a pair of two consecutive set up requests. Such request pairs + * may occur during Flutter hot restart. + * + * @param arguments Arguments for the stream. + * @return A FlutterError instance, if teardown fails. + */ +- (FlutterError* _Nullable)onCancelWithArguments:(id _Nullable)arguments; +@end + +/** + * A constant used with `FlutterEventChannel` to indicate end of stream. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterEndOfEventStream; + +/** + * A channel for communicating with the Flutter side using event streams. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEventChannel : NSObject +/** + * Creates a `FlutterEventChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to decode stream setup and + * teardown requests, and to encode event envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * method codec and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; +/** + * Registers a handler for stream setup requests from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The stream handler. + */ +- (void)setStreamHandler:(NSObject* _Nullable)handler; +@end +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCHANNELS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h new file mode 100644 index 0000000..f7117f0 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h @@ -0,0 +1,476 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCODECS_H_ +#define FLUTTER_FLUTTERCODECS_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A message encoding/decoding mechanism. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMessageCodec +/** + * Returns a shared instance of this `FlutterMessageCodec`. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified message into binary. + * + * @param message The message. + * @return The binary encoding, or `nil`, if `message` was `nil`. + */ +- (NSData* _Nullable)encode:(id _Nullable)message; + +/** + * Decodes the specified message from binary. + * + * @param message The message. + * @return The decoded message, or `nil`, if `message` was `nil`. + */ +- (id _Nullable)decode:(NSData* _Nullable)message; +@end + +/** + * A `FlutterMessageCodec` using unencoded binary messages, represented as + * `NSData` instances. + * + * This codec is guaranteed to be compatible with the corresponding + * [BinaryCodec](https://api.flutter.dev/flutter/services/BinaryCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * On the Dart side, messages are represented using `ByteData`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBinaryCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded `NSString` messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [StringCodec](https://api.flutter.dev/flutter/services/StringCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStringCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded JSON messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMessageCodec](https://api.flutter.dev/flutter/services/JSONMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supports values accepted by `NSJSONSerialization` plus top-level + * `nil`, `NSNumber`, and `NSString`. + * + * On the Dart side, JSON messages are handled by the JSON facilities of the + * [`dart:convert`](https://api.dartlang.org/stable/dart-convert/JSON-constant.html) + * package. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMessageCodec : NSObject +@end + +/** + * A writer of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `writeValue`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardWriter : NSObject +/** + * Create a `FlutterStandardWriter` who will write to \p data. + */ +- (instancetype)initWithData:(NSMutableData*)data; +/** Write a 8-bit byte. */ +- (void)writeByte:(UInt8)value; +/** Write an array of \p bytes of size \p length. */ +- (void)writeBytes:(const void*)bytes length:(NSUInteger)length; +/** Write an array of bytes contained in \p data. */ +- (void)writeData:(NSData*)data; +/** Write 32-bit unsigned integer that represents a \p size of a collection. */ +- (void)writeSize:(UInt32)size; +/** Write zero padding until data is aligned with \p alignment. */ +- (void)writeAlignment:(UInt8)alignment; +/** Write a string with UTF-8 encoding. */ +- (void)writeUTF8:(NSString*)value; +/** Introspects into an object and writes its representation. + * + * Supported Data Types: + * - NSNull + * - NSNumber + * - NSString (as UTF-8) + * - FlutterStandardTypedData + * - NSArray of supported types + * - NSDictionary of supporte types + * + * NSAsserts on failure. + */ +- (void)writeValue:(id)value; +@end + +/** + * A reader of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `readValueOfType`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReader : NSObject +/** + * Create a new `FlutterStandardReader` who reads from \p data. + */ +- (instancetype)initWithData:(NSData*)data; +/** Returns YES when the reader hasn't reached the end of its data. */ +- (BOOL)hasMore; +/** Reads a byte value and increments the position. */ +- (UInt8)readByte; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (void)readBytes:(void*)destination length:(NSUInteger)length; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (NSData*)readData:(NSUInteger)length; +/** Reads a 32-bit unsigned integer representing a collection size and increments the position.*/ +- (UInt32)readSize; +/** Advances the read position until it is aligned with \p alignment. */ +- (void)readAlignment:(UInt8)alignment; +/** Read a null terminated string encoded with UTF-8/ */ +- (NSString*)readUTF8; +/** + * Reads a byte for `FlutterStandardField` the decodes a value matching that type. + * + * See also: -[FlutterStandardWriter writeValue] + */ +- (nullable id)readValue; +/** + * Decodes a value matching the \p type specified. + * + * See also: + * - `FlutterStandardField` + * - `-[FlutterStandardWriter writeValue]` + */ +- (nullable id)readValueOfType:(UInt8)type; +@end + +/** + * A factory of compatible reader/writer instances using the Flutter standard + * binary encoding or extensions thereof. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReaderWriter : NSObject +/** + * Create a new `FlutterStandardWriter` for writing to \p data. + */ +- (FlutterStandardWriter*)writerWithData:(NSMutableData*)data; +/** + * Create a new `FlutterStandardReader` for reading from \p data. + */ +- (FlutterStandardReader*)readerWithData:(NSData*)data; +@end + +/** + * A `FlutterMessageCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMessageCodec](https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supported messages are acyclic values of these forms: + * + * - `nil` or `NSNull` + * - `NSNumber` (including their representation of Boolean values) + * - `NSString` + * - `FlutterStandardTypedData` + * - `NSArray` of supported values + * - `NSDictionary` with supported keys and values + * + * On the Dart side, these values are represented as follows: + * + * - `nil` or `NSNull`: null + * - `NSNumber`: `bool`, `int`, or `double`, depending on the contained value. + * - `NSString`: `String` + * - `FlutterStandardTypedData`: `Uint8List`, `Int32List`, `Int64List`, or `Float64List` + * - `NSArray`: `List` + * - `NSDictionary`: `Map` + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMessageCodec : NSObject +/** + * Create a `FlutterStandardMessageCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +/** + * Command object representing a method call on a `FlutterMethodChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodCall : NSObject +/** + * Creates a method call for invoking the specified named method with the + * specified arguments. + * + * @param method the name of the method to call. + * @param arguments the arguments value. + */ ++ (instancetype)methodCallWithMethodName:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * The method name. + */ +@property(readonly, nonatomic) NSString* method; + +/** + * The arguments. + */ +@property(readonly, nonatomic, nullable) id arguments; +@end + +/** + * Error object representing an unsuccessful outcome of invoking a method + * on a `FlutterMethodChannel`, or an error event on a `FlutterEventChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterError : NSObject +/** + * Creates a `FlutterError` with the specified error code, message, and details. + * + * @param code An error code string for programmatic use. + * @param message A human-readable error message. + * @param details Custom error details. + */ ++ (instancetype)errorWithCode:(NSString*)code + message:(NSString* _Nullable)message + details:(id _Nullable)details; +/** + The error code. + */ +@property(readonly, nonatomic) NSString* code; + +/** + The error message. + */ +@property(readonly, nonatomic, nullable) NSString* message; + +/** + The error details. + */ +@property(readonly, nonatomic, nullable) id details; +@end + +/** + * Type of numeric data items encoded in a `FlutterStandardDataType`. + * + * - FlutterStandardDataTypeUInt8: plain bytes + * - FlutterStandardDataTypeInt32: 32-bit signed integers + * - FlutterStandardDataTypeInt64: 64-bit signed integers + * - FlutterStandardDataTypeFloat64: 64-bit floats + */ +typedef NS_ENUM(NSInteger, FlutterStandardDataType) { + FlutterStandardDataTypeUInt8, + FlutterStandardDataTypeInt32, + FlutterStandardDataTypeInt64, + FlutterStandardDataTypeFloat32, + FlutterStandardDataTypeFloat64, +}; + +/** + * A byte buffer holding `UInt8`, `SInt32`, `SInt64`, or `Float64` values, used + * with `FlutterStandardMessageCodec` and `FlutterStandardMethodCodec`. + * + * Two's complement encoding is used for signed integers. IEEE754 + * double-precision representation is used for floats. The platform's native + * endianness is assumed. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardTypedData : NSObject +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as plain bytes. + * + * @param data the byte data. + */ ++ (instancetype)typedDataWithBytes:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit signed integers. + * + * @param data the byte data. The length must be divisible by 4. + */ ++ (instancetype)typedDataWithInt32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit signed integers. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithInt64:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat64:(NSData*)data; + +/** + * The raw underlying data buffer. + */ +@property(readonly, nonatomic) NSData* data; + +/** + * The type of the encoded values. + */ +@property(readonly, nonatomic, assign) FlutterStandardDataType type; + +/** + * The number of value items encoded. + */ +@property(readonly, nonatomic, assign) UInt32 elementCount; + +/** + * The number of bytes used by the encoding of a single value item. + */ +@property(readonly, nonatomic, assign) UInt8 elementSize; +@end + +/** + * An arbitrarily large integer value, used with `FlutterStandardMessageCodec` + * and `FlutterStandardMethodCodec`. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_UNAVAILABLE("Unavailable on 2018-08-31. Deprecated on 2018-01-09. " + "FlutterStandardBigInteger was needed because the Dart 1.0 int type had no " + "size limit. With Dart 2.0, the int type is a fixed-size, 64-bit signed " + "integer. If you need to communicate larger integers, use NSString encoding " + "instead.") +@interface FlutterStandardBigInteger : NSObject +@end + +/** + * A codec for method calls and enveloped results. + * + * Method calls are encoded as binary messages with enough structure that the + * codec can extract a method name `NSString` and an arguments `NSObject`, + * possibly `nil`. These data items are used to populate a `FlutterMethodCall`. + * + * Result envelopes are encoded as binary messages with enough structure that + * the codec can determine whether the result was successful or an error. In + * the former case, the codec can extract the result `NSObject`, possibly `nil`. + * In the latter case, the codec can extract an error code `NSString`, a + * human-readable `NSString` error message (possibly `nil`), and a custom + * error details `NSObject`, possibly `nil`. These data items are used to + * populate a `FlutterError`. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMethodCodec +/** + * Provides access to a shared instance this codec. + * + * @return The shared instance. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified method call into binary. + * + * @param methodCall The method call. The arguments value + * must be supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeMethodCall:(FlutterMethodCall*)methodCall; + +/** + * Decodes the specified method call from binary. + * + * @param methodCall The method call to decode. + * @return The decoded method call. + */ +- (FlutterMethodCall*)decodeMethodCall:(NSData*)methodCall; + +/** + * Encodes the specified successful result into binary. + * + * @param result The result. Must be a value supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeSuccessEnvelope:(id _Nullable)result; + +/** + * Encodes the specified error result into binary. + * + * @param error The error object. The error details value must be supported + * by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeErrorEnvelope:(FlutterError*)error; + +/** + * Deccodes the specified result envelope from binary. + * + * @param envelope The error object. + * @return The result value, if the envelope represented a successful result, + * or a `FlutterError` instance, if not. + */ +- (id _Nullable)decodeEnvelope:(NSData*)envelope; +@end + +/** + * A `FlutterMethodCodec` using UTF-8 encoded JSON method calls and result + * envelopes. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMethodCodec](https://api.flutter.dev/flutter/services/JSONMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as methods arguments and result payloads are + * those supported as top-level or leaf values by `FlutterJSONMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMethodCodec : NSObject +@end + +/** + * A `FlutterMethodCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMethodCodec](https://api.flutter.dev/flutter/services/StandardMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as method arguments and result payloads are those supported by + * `FlutterStandardMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMethodCodec : NSObject +/** + * Create a `FlutterStandardMethodCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCODECS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h new file mode 100644 index 0000000..2878a1d --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h @@ -0,0 +1,103 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERDARTPROJECT_H_ +#define FLUTTER_FLUTTERDARTPROJECT_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A set of Flutter and Dart assets used by a `FlutterEngine` to initialize execution. + * + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterDartProject : NSObject + +/** + * Initializes a Flutter Dart project from a bundle. + * + * The bundle must either contain a flutter_assets resource directory, or set the Info.plist key + * FLTAssetsPath to override that name (if you are doing a custom build using a different name). + * + * @param bundle The bundle containing the Flutter assets directory. If nil, the App framework + * created by Flutter will be used. + */ +- (instancetype)initWithPrecompiledDartBundle:(nullable NSBundle*)bundle NS_DESIGNATED_INITIALIZER; +/** + * Unavailable - use `init` instead. + */ +- (instancetype)initFromDefaultSourceForConfiguration API_UNAVAILABLE(macos) + FLUTTER_UNAVAILABLE("Use -init instead."); + +/** + * Returns the default identifier for the bundle where we expect to find the Flutter Dart + * application. + */ ++ (NSString*)defaultBundleIdentifier; + +/** + * An NSArray of NSStrings to be passed as command line arguments to the Dart entrypoint. + * + * If this is not explicitly set, this will default to the contents of + * [NSProcessInfo arguments], without the binary name. + * + * Set this to nil to pass no arguments to the Dart entrypoint. + */ +@property(nonatomic, nullable, copy) + NSArray* dartEntrypointArguments API_UNAVAILABLE(ios); + +/** + * Returns the file name for the given asset. If the bundle with the identifier + * "io.flutter.flutter.app" exists, it will try use that bundle; otherwise, it + * will use the main bundle. To specify a different bundle, use + * `+lookupKeyForAsset:fromBundle`. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the supplied bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param bundle The `NSBundle` to use for looking up the asset. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromBundle:(nullable NSBundle*)bundle; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the specified bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @param bundle The bundle to use when doing the lookup. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset + fromPackage:(NSString*)package + fromBundle:(nullable NSBundle*)bundle; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h new file mode 100644 index 0000000..caf2b3d --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h @@ -0,0 +1,460 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERENGINE_H_ +#define FLUTTER_FLUTTERENGINE_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +@class FlutterViewController; + +NS_ASSUME_NONNULL_BEGIN + +/** + * The dart entrypoint that is associated with `main()`. This is to be used as an argument to the + * `runWithEntrypoint*` methods. + */ +extern NSString* const FlutterDefaultDartEntrypoint; + +/** + * The default Flutter initial route ("/"). + */ +extern NSString* const FlutterDefaultInitialRoute; + +/** + * The FlutterEngine class coordinates a single instance of execution for a + * `FlutterDartProject`. It may have zero or one `FlutterViewController` at a + * time, which can be specified via `-setViewController:`. + * `FlutterViewController`'s `initWithEngine` initializer will automatically call + * `-setViewController:` for itself. + * + * A FlutterEngine can be created independently of a `FlutterViewController` for + * headless execution. It can also persist across the lifespan of multiple + * `FlutterViewController` instances to maintain state and/or asynchronous tasks + * (such as downloading a large file). + * + * A FlutterEngine can also be used to prewarm the Dart execution environment and reduce the + * latency of showing the Flutter screen when a `FlutterViewController` is created and presented. + * See http://flutter.dev/docs/development/add-to-app/performance for more details on loading + * performance. + * + * Alternatively, you can simply create a new `FlutterViewController` with only a + * `FlutterDartProject`. That `FlutterViewController` will internally manage its + * own instance of a FlutterEngine, but will not guarantee survival of the engine + * beyond the life of the ViewController. + * + * A newly initialized FlutterEngine will not actually run a Dart Isolate until + * either `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is invoked. + * One of these methods must be invoked before calling `-setViewController:`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngine : NSObject + +/** + * Default initializer for a FlutterEngine. + * + * Threads created by this FlutterEngine will appear as "FlutterEngine #" in + * Instruments. The prefix can be customized using `initWithName`. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + */ +- (instancetype)init; + +/** + * Initialize this FlutterEngine. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + */ +- (instancetype)initWithName:(NSString*)labelPrefix; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(nullable FlutterDartProject*)project; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + * @param restorationEnabled Whether state restoration is enabled. When true, the framework will + * wait for the attached view controller to provide restoration data. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using `main()` as the entrypoint (the default for Flutter projects), + * and using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)run; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil) it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`). + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil), it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param uri The URI of the Dart library which contains the entrypoint method + * (example "package:foo_package/main.dart"). If nil, this will default to + * the same library as the `main()` function in the Dart program. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint libraryURI:(nullable NSString*)uri; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @param entrypointArgs Arguments passed as a list of string to Dart's entrypoint function. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute + entrypointArgs:(nullable NSArray*)entrypointArgs; + +/** + * Destroy running context for an engine. + * + * This method can be used to force the FlutterEngine object to release all resources. + * After sending this message, the object will be in an unusable state until it is deallocated. + * Accessing properties or sending messages to it will result in undefined behavior or runtime + * errors. + */ +- (void)destroyContext; + +/** + * Ensures that Flutter will generate a semantics tree. + * + * This is enabled by default if certain accessibility services are turned on by + * the user, or when using a Simulator. This method allows a user to turn + * semantics on when they would not ordinarily be generated and the performance + * overhead is not a concern, e.g. for UI testing. Note that semantics should + * never be programmatically turned off, as it would potentially disable + * accessibility services an end user has requested. + * + * This method must only be called after launching the engine via + * `-runWithEntrypoint:` or `-runWithEntryPoint:libraryURI`. + * + * Although this method returns synchronously, it does not guarantee that a + * semantics tree is actually available when the method returns. It + * synchronously ensures that the next frame the Flutter framework creates will + * have a semantics tree. + * + * You can subscribe to semantics updates via `NSNotificationCenter` by adding + * an observer for the name `FlutterSemanticsUpdateNotification`. The `object` + * parameter will be the `FlutterViewController` associated with the semantics + * update. This will asynchronously fire after a semantics tree has actually + * built (which may be some time after the frame has been rendered). + */ +- (void)ensureSemanticsEnabled; + +/** + * Sets the `FlutterViewController` for this instance. The FlutterEngine must be + * running (e.g. a successful call to `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI`) + * before calling this method. Callers may pass nil to remove the viewController + * and have the engine run headless in the current process. + * + * A FlutterEngine can only have one `FlutterViewController` at a time. If there is + * already a `FlutterViewController` associated with this instance, this method will replace + * the engine's current viewController with the newly specified one. + * + * Setting the viewController will signal the engine to start animations and drawing, and unsetting + * it will signal the engine to stop animations and drawing. However, neither will impact the state + * of the Dart program's execution. + */ +@property(nonatomic, weak) FlutterViewController* viewController; + +/** + * The `FlutterMethodChannel` used for localization related platform messages, such as + * setting the locale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly, nullable) FlutterMethodChannel* localizationChannel; +/** + * The `FlutterMethodChannel` used for navigation related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Navigation + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/navigation-constant.html) + * @see [Navigator Widget](https://api.flutter.dev/flutter/widgets/Navigator-class.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* navigationChannel; + +/** + * The `FlutterMethodChannel` used for restoration related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Restoration + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/restoration-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* restorationChannel; + +/** + * The `FlutterMethodChannel` used for core platform messages, such as + * information about the screen orientation. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterMethodChannel* platformChannel; + +/** + * The `FlutterMethodChannel` used to communicate text input events to the + * Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Text Input + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/textInput-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* textInputChannel; + +/** + * The `FlutterBasicMessageChannel` used to communicate app lifecycle events + * to the Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Lifecycle + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/lifecycle-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* lifecycleChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating system events, such as + * memory pressure events. + * + * Can be nil after `destroyContext` is called. + * + * @see [System + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/system-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* systemChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating user settings such as + * clock format and text scale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* settingsChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating key events + * from physical keyboards + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* keyEventChannel; + +/** + * The depcreated `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) + NSURL* observatoryUrl FLUTTER_DEPRECATED("Use vmServiceUrl instead"); + +/** + * The `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) NSURL* vmServiceUrl; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterEngine (used for communicating with + * channels). + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * The `FlutterTextureRegistry` associated with this FlutterEngine (used to register textures). + */ +@property(nonatomic, readonly) NSObject* textureRegistry; + +/** + * The UI Isolate ID of the engine. + * + * This property will be nil if the engine is not running. + */ +@property(nonatomic, readonly, copy, nullable) NSString* isolateId; + +/** + * Whether or not GPU calls are allowed. + * + * Typically this is set when the app is backgrounded and foregrounded. + */ +@property(nonatomic, assign) BOOL isGpuDisabled; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERENGINE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h new file mode 100644 index 0000000..097ffd6 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h @@ -0,0 +1,110 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterEngine.h" + +NS_ASSUME_NONNULL_BEGIN + +/** Options that control how a FlutterEngine should be created. */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroupOptions : NSObject + +/** + * The name of a top-level function from a Dart library. If this is FlutterDefaultDartEntrypoint + * (or nil); this will default to `main()`. If it is not the app's main() function, that function + * must be decorated with `@pragma(vm:entry-point)` to ensure themethod is not tree-shaken by the + * Dart compiler. + */ +@property(nonatomic, copy, nullable) NSString* entrypoint; + +/** + * The URI of the Dart library which contains the entrypoint method. If nil, this will default to + * the same library as the `main()` function in the Dart program. + */ +@property(nonatomic, copy, nullable) NSString* libraryURI; + +/** + * The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + */ +@property(nonatomic, copy, nullable) NSString* initialRoute; + +/** + * Arguments passed as a list of string to Dart's entrypoint function. + */ +@property(nonatomic, retain, nullable) NSArray* entrypointArgs; +@end + +/** + * Represents a collection of FlutterEngines who share resources which allows + * them to be created with less time const and occupy less memory than just + * creating multiple FlutterEngines. + * + * Deleting a FlutterEngineGroup doesn't invalidate existing FlutterEngines, but + * it eliminates the possibility to create more FlutterEngines in that group. + * + * @warning This class is a work-in-progress and may change. + * @see https://github.com/flutter/flutter/issues/72009 + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroup : NSObject +- (instancetype)init NS_UNAVAILABLE; + +/** + * Initialize a new FlutterEngineGroup. + * + * @param name The name that will present in the threads shared across the + * engines in this group. + * @param project The `FlutterDartProject` that all FlutterEngines in this group + * will be executing. + */ +- (instancetype)initWithName:(NSString*)name + project:(nullable FlutterDartProject*)project NS_DESIGNATED_INITIALIZER; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param options Options that control how a FlutterEngine should be created. + * + * @see FlutterEngineGroupOptions + */ +- (FlutterEngine*)makeEngineWithOptions:(nullable FlutterEngineGroupOptions*)options; +@end + +NS_ASSUME_NONNULL_END diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h new file mode 100644 index 0000000..bc58dd8 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h @@ -0,0 +1,97 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ +#define FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ + +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" + +/** + * A callback for when FlutterHeadlessDartRunner has attempted to start a Dart + * Isolate in the background. + * + * @param success YES if the Isolate was started and run successfully, NO + * otherwise. + */ +typedef void (^FlutterHeadlessDartRunnerCallback)(BOOL success); + +/** + * The deprecated FlutterHeadlessDartRunner runs Flutter Dart code with a null rasterizer, + * and no native drawing surface. It is appropriate for use in running Dart + * code e.g. in the background from a plugin. + * + * Most callers should prefer using `FlutterEngine` directly; this interface exists + * for legacy support. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_DEPRECATED("FlutterEngine should be used rather than FlutterHeadlessDartRunner") +@interface FlutterHeadlessDartRunner : FlutterEngine + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(FlutterDartProject*)projectOrNil; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + * @param restorationEnabled Must be set to `NO`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Not recommended for use - will initialize with a default label ("io.flutter.headless") + * and the default FlutterDartProject. + */ +- (instancetype)init; + +@end + +#endif // FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h new file mode 100644 index 0000000..da99e10 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h @@ -0,0 +1,48 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERMACROS_H_ +#define FLUTTER_FLUTTERMACROS_H_ + +#if defined(FLUTTER_FRAMEWORK) + +#define FLUTTER_DARWIN_EXPORT __attribute__((visibility("default"))) + +#else // defined(FLUTTER_SDK) + +#define FLUTTER_DARWIN_EXPORT + +#endif // defined(FLUTTER_SDK) + +#ifndef NS_ASSUME_NONNULL_BEGIN +#define NS_ASSUME_NONNULL_BEGIN _Pragma("clang assume_nonnull begin") +#define NS_ASSUME_NONNULL_END _Pragma("clang assume_nonnull end") +#endif // defined(NS_ASSUME_NONNULL_BEGIN) + +/** + * Indicates that the API has been deprecated for the specified reason. Code + * that uses the deprecated API will continue to work as before. However, the + * API will soon become unavailable and users are encouraged to immediately take + * the appropriate action mentioned in the deprecation message and the BREAKING + * CHANGES section present in the Flutter.h umbrella header. + */ +#define FLUTTER_DEPRECATED(msg) __attribute__((__deprecated__(msg))) + +/** + * Indicates that the previously deprecated API is now unavailable. Code that + * uses the API will not work and the declaration of the API is only a stub + * meant to display the given message detailing the actions for the user to take + * immediately. + */ +#define FLUTTER_UNAVAILABLE(msg) __attribute__((__unavailable__(msg))) + +#if __has_feature(objc_arc) +#define FLUTTER_ASSERT_ARC +#define FLUTTER_ASSERT_NOT_ARC #error ARC must be disabled ! +#else +#define FLUTTER_ASSERT_ARC #error ARC must be enabled ! +#define FLUTTER_ASSERT_NOT_ARC +#endif + +#endif // FLUTTER_FLUTTERMACROS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h new file mode 100644 index 0000000..18a5709 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h @@ -0,0 +1,56 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLATFORMVIEWS_H_ +#define FLUTTER_FLUTTERPLATFORMVIEWS_H_ + +#import + +#import "FlutterCodecs.h" +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Wraps a `UIView` for embedding in the Flutter hierarchy + */ +@protocol FlutterPlatformView +/** + * Returns a reference to the `UIView` that is wrapped by this `FlutterPlatformView`. + */ +- (UIView*)view; +@end + +FLUTTER_DARWIN_EXPORT +@protocol FlutterPlatformViewFactory +/** + * Create a `FlutterPlatformView`. + * + * Implemented by iOS code that expose a `UIView` for embedding in a Flutter app. + * + * The implementation of this method should create a new `UIView` and return it. + * + * @param frame The rectangle for the newly created `UIView` measured in points. + * @param viewId A unique identifier for this `UIView`. + * @param args Parameters for creating the `UIView` sent from the Dart side of the Flutter app. + * If `createArgsCodec` is not implemented, or if no creation arguments were sent from the Dart + * code, this will be null. Otherwise this will be the value sent from the Dart code as decoded by + * `createArgsCodec`. + */ +- (NSObject*)createWithFrame:(CGRect)frame + viewIdentifier:(int64_t)viewId + arguments:(id _Nullable)args; + +/** + * Returns the `FlutterMessageCodec` for decoding the args parameter of `createWithFrame`. + * + * Only needs to be implemented if `createWithFrame` needs an arguments parameter. + */ +@optional +- (NSObject*)createArgsCodec; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLATFORMVIEWS_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h new file mode 100644 index 0000000..b270414 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h @@ -0,0 +1,445 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGIN_H_ +#define FLUTTER_FLUTTERPLUGIN_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterPlatformViews.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN +@protocol FlutterPluginRegistrar; +@protocol FlutterPluginRegistry; + +#pragma mark - +/** + * Protocol for listener of events from the UIApplication, typically a FlutterPlugin. + */ +@protocol FlutterApplicationLifeCycleDelegate + +@optional +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidBecomeActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillResignActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidEnterBackground:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillEnterForeground:(UIApplication*)application; + +/** + Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillTerminate:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +#pragma mark - +/** + * A plugin registration callback. + * + * Used for registering plugins with additional instances of + * `FlutterPluginRegistry`. + * + * @param registry The registry to register plugins with. + */ +typedef void (*FlutterPluginRegistrantCallback)(NSObject* registry); + +#pragma mark - +/** + * Implemented by the iOS part of a Flutter plugin. + * + * Defines a set of optional callback methods and a method to set up the plugin + * and register it to be called by other application components. + */ +@protocol FlutterPlugin +@required +/** + * Registers this plugin using the context information and callback registration + * methods exposed by the given registrar. + * + * The registrar is obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + * + * The caller of this method, a plugin registrant, is usually autogenerated by + * Flutter tooling based on declared plugin dependencies. The generated registrant + * asks the registry for a registrar for each plugin, and calls this method to + * allow the plugin to initialize itself and register callbacks with application + * objects available through the registrar protocol. + * + * @param registrar A helper providing application context and methods for + * registering callbacks. + */ ++ (void)registerWithRegistrar:(NSObject*)registrar; +@optional +/** + * Set a callback for registering plugins to an additional `FlutterPluginRegistry`, + * including headless `FlutterEngine` instances. + * + * This method is typically called from within an application's `AppDelegate` at + * startup to allow for plugins which create additional `FlutterEngine` instances + * to register the application's plugins. + * + * @param callback A callback for registering some set of plugins with a + * `FlutterPluginRegistry`. + */ ++ (void)setPluginRegistrantCallback:(FlutterPluginRegistrantCallback)callback; +@optional +/** + * Called if this plugin has been registered to receive `FlutterMethodCall`s. + * + * @param call The method call command object. + * @param result A callback for submitting the result of the call. + */ +- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result; +@optional +/** + * Called when a plugin is being removed from a `FlutterEngine`, which is + * usually the result of the `FlutterEngine` being deallocated. This method + * provides the opportunity to do necessary cleanup. + * + * You will only receive this method if you registered your plugin instance with + * the `FlutterEngine` via `-[FlutterPluginRegistry publish:]`. + * + * @param registrar The registrar that was used to publish the plugin. + * + */ +- (void)detachFromEngineForRegistrar:(NSObject*)registrar; +@end + +#pragma mark - +/** + * How the UIGestureRecognizers of a platform view are blocked. + * + * UIGestureRecognizers of platform views can be blocked based on decisions made by the + * Flutter Framework (e.g. When an interact-able widget is covering the platform view). + */ +typedef enum { + /** + * Flutter blocks all the UIGestureRecognizers on the platform view as soon as it + * decides they should be blocked. + * + * With this policy, only the `touchesBegan` method for all the UIGestureRecognizers is guaranteed + * to be called. + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyEager, + /** + * Flutter blocks the platform view's UIGestureRecognizers from recognizing only after + * touchesEnded was invoked. + * + * This results in the platform view's UIGestureRecognizers seeing the entire touch sequence, + * but never recognizing the gesture (and never invoking actions). + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded, +} FlutterPlatformViewGestureRecognizersBlockingPolicy; + +#pragma mark - +/** + * Registration context for a single `FlutterPlugin`, providing a one stop shop + * for the plugin to access contextual information and register callbacks for + * various application events. + * + * Registrars are obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + */ +@protocol FlutterPluginRegistrar +/** + * Returns a `FlutterBinaryMessenger` for creating Dart/iOS communication + * channels to be used by the plugin. + * + * @return The messenger. + */ +- (NSObject*)messenger; + +/** + * Returns a `FlutterTextureRegistry` for registering textures + * provided by the plugin. + * + * @return The texture registry. + */ +- (NSObject*)textures; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins expose `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins can expose a `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + * @param gestureRecognizersBlockingPolicy How UIGestureRecognizers on the platform views are + * blocked. + * + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId + gestureRecognizersBlockingPolicy: + (FlutterPlatformViewGestureRecognizersBlockingPolicy)gestureRecognizersBlockingPolicy; + +/** + * Publishes a value for external use of the plugin. + * + * Plugins may publish a single value, such as an instance of the + * plugin's main class, for situations where external control or + * interaction is needed. + * + * The published value will be available from the `FlutterPluginRegistry`. + * Repeated calls overwrite any previous publication. + * + * @param value The value to be published. + */ +- (void)publish:(NSObject*)value; + +/** + * Registers the plugin as a receiver of incoming method calls from the Dart side + * on the specified `FlutterMethodChannel`. + * + * @param delegate The receiving object, such as the plugin's main class. + * @param channel The channel + */ +- (void)addMethodCallDelegate:(NSObject*)delegate + channel:(FlutterMethodChannel*)channel; + +/** + * Registers the plugin as a receiver of `UIApplicationDelegate` calls. + * + * @param delegate The receiving object, such as the plugin's main class. + */ +- (void)addApplicationDelegate:(NSObject*)delegate; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; +@end + +#pragma mark - +/** + * A registry of Flutter iOS plugins. + * + * Plugins are identified by unique string keys, typically the name of the + * plugin's main class. The registry tracks plugins by this key, mapping it to + * a value published by the plugin during registration, if any. This provides a + * very basic means of cross-plugin coordination with loose coupling between + * unrelated plugins. + * + * Plugins typically need contextual information and the ability to register + * callbacks for various application events. To keep the API of the registry + * focused, these facilities are not provided directly by the registry, but by + * a `FlutterPluginRegistrar`, created by the registry in exchange for the unique + * key of the plugin. + * + * There is no implied connection between the registry and the registrar. + * Specifically, callbacks registered by the plugin via the registrar may be + * relayed directly to the underlying iOS application objects. + */ +@protocol FlutterPluginRegistry +/** + * Returns a registrar for registering a plugin. + * + * @param pluginKey The unique key identifying the plugin. + */ +- (nullable NSObject*)registrarForPlugin:(NSString*)pluginKey; +/** + * Returns whether the specified plugin has been registered. + * + * @param pluginKey The unique key identifying the plugin. + * @return `YES` if `registrarForPlugin` has been called with `pluginKey`. + */ +- (BOOL)hasPlugin:(NSString*)pluginKey; + +/** + * Returns a value published by the specified plugin. + * + * @param pluginKey The unique key identifying the plugin. + * @return An object published by the plugin, if any. Will be `NSNull` if + * nothing has been published. Will be `nil` if the plugin has not been + * registered. + */ +- (nullable NSObject*)valuePublishedByPlugin:(NSString*)pluginKey; +@end + +#pragma mark - +/** + * Implement this in the `UIAppDelegate` of your app to enable Flutter plugins to register + * themselves to the application life cycle events. + * + * For plugins to receive events from `UNUserNotificationCenter`, register this as the + * `UNUserNotificationCenterDelegate`. + */ +@protocol FlutterAppLifeCycleProvider + +/** + * Called when registering a new `FlutterApplicaitonLifeCycleDelegate`. + * + * See also: `-[FlutterAppDelegate addApplicationLifeCycleDelegate:]` + */ +- (void)addApplicationLifeCycleDelegate:(NSObject*)delegate; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGIN_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h new file mode 100644 index 0000000..ba317f4 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h @@ -0,0 +1,148 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ +#define FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ + +#import "FlutterPlugin.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Propagates `UIAppDelegate` callbacks to registered plugins. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterPluginAppLifeCycleDelegate : NSObject + +/** + * Registers `delegate` to receive life cycle callbacks via this FlutterPluginAppLifeCycleDelegate + * as long as it is alive. + * + * `delegate` will only be referenced weakly. + */ +- (void)addDelegate:(NSObject*)delegate; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this plugin has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @returns `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h new file mode 100644 index 0000000..59d2ced --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h @@ -0,0 +1,62 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERTEXTURE_H_ +#define FLUTTER_FLUTTERTEXTURE_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +FLUTTER_DARWIN_EXPORT +/** + * Represents a texture that can be shared with Flutter. + * + * See also: https://github.com/flutter/plugins/tree/master/packages/camera + */ +@protocol FlutterTexture +/** Copy the contents of the texture into a `CVPixelBuffer`. */ +- (CVPixelBufferRef _Nullable)copyPixelBuffer; + +/** + * Called when the texture is unregistered. + * + * Called on the raster thread. + */ +@optional +- (void)onTextureUnregistered:(NSObject*)texture; +@end + +FLUTTER_DARWIN_EXPORT +/** + * A collection of registered `FlutterTexture`'s. + */ +@protocol FlutterTextureRegistry +/** + * Registers a `FlutterTexture` for usage in Flutter and returns an id that can be used to reference + * that texture when calling into Flutter with channels. Textures must be registered on the + * platform thread. On success returns the pointer to the registered texture, else returns 0. + */ +- (int64_t)registerTexture:(NSObject*)texture; +/** + * Notifies Flutter that the content of the previously registered texture has been updated. + * + * This will trigger a call to `-[FlutterTexture copyPixelBuffer]` on the raster thread. + */ +- (void)textureFrameAvailable:(int64_t)textureId; +/** + * Unregisters a `FlutterTexture` that has previously regeistered with `registerTexture:`. Textures + * must be unregistered on the platform thread. + * + * @param textureId The result that was previously returned from `registerTexture:`. + */ +- (void)unregisterTexture:(int64_t)textureId; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERTEXTURE_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h new file mode 100644 index 0000000..d33d989 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h @@ -0,0 +1,259 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERVIEWCONTROLLER_H_ +#define FLUTTER_FLUTTERVIEWCONTROLLER_H_ + +#import +#include + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FlutterEngine; + +/** + * The name used for semantic update notifications via `NSNotificationCenter`. + * + * The object passed as the sender is the `FlutterViewController` associated + * with the update. + */ +FLUTTER_DARWIN_EXPORT +extern NSNotificationName const FlutterSemanticsUpdateNotification; + +/** + * A `UIViewController` implementation for Flutter views. + * + * Dart execution, channel communication, texture registration, and plugin registration are all + * handled by `FlutterEngine`. Calls on this class to those members all proxy through to the + * `FlutterEngine` attached FlutterViewController. + * + * A FlutterViewController can be initialized either with an already-running `FlutterEngine` via the + * `initWithEngine:` initializer, or it can be initialized with a `FlutterDartProject` that will be + * used to implicitly spin up a new `FlutterEngine`. Creating a `FlutterEngine` before showing a + * FlutterViewController can be used to pre-initialize the Dart VM and to prepare the isolate in + * order to reduce the latency to the first rendered frame. See + * https://flutter.dev/docs/development/add-to-app/performance for more details on loading + * latency. + * + * Holding a `FlutterEngine` independently of FlutterViewControllers can also be used to not to lose + * Dart-related state and asynchronous tasks when navigating back and forth between a + * FlutterViewController and other `UIViewController`s. + */ +FLUTTER_DARWIN_EXPORT +#ifdef __IPHONE_13_4 +@interface FlutterViewController + : UIViewController +#else +@interface FlutterViewController : UIViewController +#endif + +/** + * Initializes this FlutterViewController with the specified `FlutterEngine`. + * + * The initialized viewcontroller will attach itself to the engine as part of this process. + * + * @param engine The `FlutterEngine` instance to attach to. Cannot be nil. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithEngine:(FlutterEngine*)engine + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject` and `initialRoute`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param initialRoute The initial `Navigator` route to load. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + initialRoute:(nullable NSString*)initialRoute + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializer that is called from loading a FlutterViewController from a XIB. + * + * See also: + * https://developer.apple.com/documentation/foundation/nscoding/1416145-initwithcoder?language=objc + */ +- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_DESIGNATED_INITIALIZER; + +/** + * Registers a callback that will be invoked when the Flutter view has been rendered. + * The callback will be fired only once. + * + * Replaces an existing callback. Use a `nil` callback to unregister the existing one. + */ +- (void)setFlutterViewDidRenderCallback:(void (^)(void))callback; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified + * package. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Deprecated API to set initial route. + * + * Attempts to set the first route that the Flutter app shows if the Flutter + * runtime hasn't yet started. The default is "/". + * + * This method must be called immediately after `initWithProject` and has no + * effect when using `initWithEngine` if the `FlutterEngine` has already been + * run. + * + * Setting this after the Flutter started running has no effect. See `pushRoute` + * and `popRoute` to change the route after Flutter started running. + * + * This is deprecated because it needs to be called at the time of initialization + * and thus should just be in the `initWithProject` initializer. If using + * `initWithEngine`, the initial route should be set on the engine's + * initializer. + * + * @param route The name of the first route to show. + */ +- (void)setInitialRoute:(NSString*)route + FLUTTER_DEPRECATED("Use FlutterViewController initializer to specify initial route"); + +/** + * Instructs the Flutter Navigator (if any) to go back. + */ +- (void)popRoute; + +/** + * Instructs the Flutter Navigator (if any) to push a route on to the navigation + * stack. + * + * @param route The name of the route to push to the navigation stack. + */ +- (void)pushRoute:(NSString*)route; + +/** + * The `FlutterPluginRegistry` used by this FlutterViewController. + */ +- (id)pluginRegistry; + +/** + * A wrapper around UIAccessibilityIsVoiceOverRunning(). + * + * As a C function, UIAccessibilityIsVoiceOverRunning() cannot be mocked in testing. Mock + * this class method to testing features depends on UIAccessibilityIsVoiceOverRunning(). + */ ++ (BOOL)isUIAccessibilityIsVoiceOverRunning; + +/** + * True if at least one frame has rendered and the ViewController has appeared. + * + * This property is reset to false when the ViewController disappears. It is + * guaranteed to only alternate between true and false for observers. + */ +@property(nonatomic, readonly, getter=isDisplayingFlutterUI) BOOL displayingFlutterUI; + +/** + * Specifies the view to use as a splash screen. Flutter's rendering is asynchronous, so the first + * frame rendered by the Flutter application might not immediately appear when the Flutter view is + * initially placed in the view hierarchy. The splash screen view will be used as + * a replacement until the first frame is rendered. + * + * The view used should be appropriate for multiple sizes; an autoresizing mask to + * have a flexible width and height will be applied automatically. + * + * Set to nil to remove the splash screen view. + */ +@property(strong, nonatomic, nullable) UIView* splashScreenView; + +/** + * Attempts to set the `splashScreenView` property from the `UILaunchStoryboardName` from the + * main bundle's `Info.plist` file. This method will not change the value of `splashScreenView` + * if it cannot find a default one from a storyboard or nib. + * + * @return `YES` if successful, `NO` otherwise. + */ +- (BOOL)loadDefaultSplashScreenView; + +/** + * Controls whether the created view will be opaque or not. + * + * Default is `YES`. Note that setting this to `NO` may negatively impact performance + * when using hardware acceleration, and toggling this will trigger a re-layout of the + * view. + */ +@property(nonatomic, getter=isViewOpaque) BOOL viewOpaque; + +/** + * The `FlutterEngine` instance for this view controller. This could be the engine this + * `FlutterViewController` is initialized with or a new `FlutterEngine` implicitly created if + * no engine was supplied during initialization. + */ +@property(weak, nonatomic, readonly) FlutterEngine* engine; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterViewController (used for communicating + * with channels). + * + * This is just a convenient way to get the |FlutterEngine|'s binary messenger. + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * If the `FlutterViewController` creates a `FlutterEngine`, this property + * determines if that `FlutterEngine` has `allowHeadlessExecution` set. + * + * The intention is that this is used with the XIB. Otherwise, a + * `FlutterEngine` can just be sent to the init methods. + * + * See also: `-[FlutterEngine initWithName:project:allowHeadlessExecution:]` + */ +@property(nonatomic, readonly) BOOL engineAllowHeadlessExecution; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERVIEWCONTROLLER_H_ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist new file mode 100644 index 0000000..6cdc70a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist @@ -0,0 +1,30 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + Flutter + CFBundleIdentifier + io.flutter.flutter + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Flutter + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + FlutterEngine + b20183e04096094bcc37d9cde2a4b96f5cc684cf + ClangVersion + b'Fuchsia clang version 17.0.0 (https://llvm.googlesource.com/llvm-project 6d667d4b261e81f325756fdfd5bb43b3b3d2451d)' + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap new file mode 100644 index 0000000..bf81c8a --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Flutter { + umbrella header "Flutter.h" + + export * + module * { export * } +} diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..f0ba51c --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources @@ -0,0 +1,300 @@ + + + + + files + + Headers/Flutter.h + + Jfv2Vo3itUyjWGSxXIEV/9Skri8= + + Headers/FlutterAppDelegate.h + + QU3ZohDucENpee9k2C4s7Ovkwxw= + + Headers/FlutterBinaryMessenger.h + + Qj6OtkzORWI38PIdXyyJc+eribM= + + Headers/FlutterCallbackCache.h + + lTUaQzdBsC/YVTRn48+amlv1iw4= + + Headers/FlutterChannels.h + + bhEGVRctQGJxYtCb3asK0k4Iq74= + + Headers/FlutterCodecs.h + + 0hdw5jbuAAJJC64dk/bhma5HKIw= + + Headers/FlutterDartProject.h + + ONyPj3D2igT9nx6hVIYtVA5JFG0= + + Headers/FlutterEngine.h + + cupY3Xn8Bw2kFlGmh/gwYQCFMkU= + + Headers/FlutterEngineGroup.h + + nZcTgHGDD30QzPLlQfP8gP+S06o= + + Headers/FlutterHeadlessDartRunner.h + + XnDDN+yQj6qLXTuhI0tgTMDbtbI= + + Headers/FlutterMacros.h + + T2wuUnVU/0f9v8Mc7CGjJQWLdGU= + + Headers/FlutterPlatformViews.h + + JofRibXJB+HPxhe0SAphfoKFSTE= + + Headers/FlutterPlugin.h + + EPrA0Ggvn83vzoNUoJ1lETKIEGg= + + Headers/FlutterPluginAppLifeCycleDelegate.h + + eBwJo3E6jQLlhEPIm5a+XAUx3o0= + + Headers/FlutterTexture.h + + yBJovGku2dvjTDXp2km51wNc8yM= + + Headers/FlutterViewController.h + + 6nBSlZSj+EZbyrAd2cS7H0pF3bA= + + Info.plist + + 5EFZMHUgrzxWoGrIGrcxFp5fs3M= + + Modules/module.modulemap + + wJV5dCKEGl+FAtDc8wJJh/fvKXs= + + icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + + files2 + + Headers/Flutter.h + + hash2 + + uwm8JZgId56AcAI6HgoYvB86L3U5XLTdogukvzdieH0= + + + Headers/FlutterAppDelegate.h + + hash2 + + ZE5n3wyEphmq0NvXEk+TgX9+IH2WWIRdDoZj+8Zmu+E= + + + Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Headers/FlutterCallbackCache.h + + hash2 + + 1dNDb41OVcGRhdnQfLHPfpfNUSb9f9Dmg57Bqo4gJv0= + + + Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Headers/FlutterEngine.h + + hash2 + + nqtk8YLddo2rPiYBl7tgIviV+uOyWZO9Ey3zKZBCG2o= + + + Headers/FlutterEngineGroup.h + + hash2 + + I+878Ez9ZpVdAR2GOzKJKjaZ5m807AeAF++2pSMQss4= + + + Headers/FlutterHeadlessDartRunner.h + + hash2 + + sELlVsLARG1gBlPndKt24VxGVmBMgcXWeShflcVtZBQ= + + + Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Headers/FlutterPlatformViews.h + + hash2 + + c4TS8HplkxEc+09dBX5h+BZ+vkI9QJU/3ljud7WmdTM= + + + Headers/FlutterPlugin.h + + hash2 + + zRjDCQ3ULUe9Pf2BcmGjO5/rdI00/Siw5fnIQZsJjMI= + + + Headers/FlutterPluginAppLifeCycleDelegate.h + + hash2 + + yxMe4j+1eEByv8dhzIAxAdnDSnF01UZxK1q9r8DtR84= + + + Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Headers/FlutterViewController.h + + hash2 + + P0GsFW0zzP6Yi8y8zBx1bdWpXoBcaVpIbO3lgDBZoDY= + + + Modules/module.modulemap + + hash2 + + 0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs= + + + icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat new file mode 100644 index 0000000..62cfc0d Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Info.plist b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Info.plist new file mode 100644 index 0000000..82dea29 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Info.plist differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo b/Task1/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/Runner b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Runner new file mode 100755 index 0000000..14f9100 Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.app/Runner differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature/CodeResources b/Task1/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature/CodeResources new file mode 100644 index 0000000..5bdab1c --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature/CodeResources @@ -0,0 +1,1173 @@ + + + + + files + + AppFrameworkInfo.plist + + TsHk0H1Eny0vQ4S4SNJAJsXRTig= + + AppIcon60x60@2x.png + + WBDcNG/0BUOtsKQgKYOLyuqAbAM= + + AppIcon76x76@2x~ipad.png + + Bqtil6RquU1Hfn8gu0IYARWvCIM= + + Assets.car + + fU8Tyoh0z9uLOv0OIKa8oiszDDA= + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + 28xWMBQ91UzszfdXY91SqhC7ecg= + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + U0x8EM0781fCPb62BbZIXKeDlZ4= + + Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib + + hMnf/VIyTGR2nRcoLS3JCfeGmDs= + + Base.lproj/Main.storyboardc/Info.plist + + MDrKFvFWroTb0+KEbQShBcoBvo4= + + Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib + + sPhzGA41FQRsyiQc9b/v8rCOPg8= + + Frameworks/App.framework/App + + TxypRhEA9uTMhgFuaX+d63C/Ugg= + + Frameworks/App.framework/Info.plist + + 85iaADE5tc/NukRC+KGdiZaZ0ZA= + + Frameworks/App.framework/_CodeSignature/CodeResources + + gHib48ww9JpS1fM2789JjkjY12w= + + Frameworks/App.framework/flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + Frameworks/App.framework/flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + Frameworks/App.framework/flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + Frameworks/App.framework/flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + Frameworks/App.framework/flutter_assets/assets/images/1.jpeg + + T4eHigGqCjppEMN5PZjXN63j2UE= + + Frameworks/App.framework/flutter_assets/assets/images/13.jpg + + xJdsU88dxzNUCrvQhUVJfA36vy8= + + Frameworks/App.framework/flutter_assets/assets/images/2.jpeg + + Kpr+ISskXOhd00somUarsLf8WL0= + + Frameworks/App.framework/flutter_assets/assets/images/3.jpeg + + d377rWShqdNs2Vg7Rxeo7aCMMLU= + + Frameworks/App.framework/flutter_assets/assets/images/4.jpeg + + eJYwOmsjrusGdvMKWb5xwlngYP0= + + Frameworks/App.framework/flutter_assets/assets/images/5.jpeg + + TT4rmr6kGvrgAnk8aSvOh+FM3g4= + + Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Frameworks/App.framework/flutter_assets/assets/images/beach.png + + HfyouspGEztalPd3FzMVoXZzLT8= + + Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg + + +XFVNZMeO2KIXnV8K5yRvsLbBKI= + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png + + be2kO6flRJYJDjjrTPvDWUHyy1E= + + Frameworks/App.framework/flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + Frameworks/App.framework/flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + Frameworks/App.framework/flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg + + KUZ1nT6qT6g9dc9k3mHtSaHzwp4= + + Frameworks/App.framework/flutter_assets/assets/images/h1.jpg + + SdjVzsZhFoZGiKoKhpnGgOlT5r8= + + Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg + + /cjCaNGdItMcCUGcXJ4j280zJ0E= + + Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg + + 0pCymnfRDUKYEPZArx+bdBtV+Lc= + + Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg + + 6FSCt2wBul/Up7S/kzNFuA5PJZw= + + Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg + + qh7CO4lBJQtqHco5RyTFMXQhzks= + + Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg + + 8dGP3fsV/whkk0xfs4837sWwC20= + + Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg + + XVN8jBEPFZ3u3bmJDnY2jgdm86c= + + Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg + + X76EqYI/EqeZxJUy8sMIgHiP6Ys= + + Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + Frameworks/App.framework/flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + Frameworks/App.framework/flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + Frameworks/App.framework/flutter_assets/assets/images/menubar.png + + +xTHaiVnUgCz3/80fHJSXQB+uxc= + + Frameworks/App.framework/flutter_assets/assets/images/mountain.png + + se8c/XNUOdzYckTeX/1zAqQmJSk= + + Frameworks/App.framework/flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg + + Xuy5rCeN0+S9GRfWpnU7FbyUenM= + + Frameworks/App.framework/flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Frameworks/App.framework/flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg + + lbQFbhthk6Q4yBzlisRJPRn9LmY= + + Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg + + 6to0LgPD/ciBT9tpY848Oqr4b5o= + + Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg + + GjV2FKCViife8mfluTBINMBgRas= + + Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Frameworks/App.framework/flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + Frameworks/App.framework/flutter_assets/assets/images/venice.jpg + + aZm0eWz2fCZxInaKk8MvsBMMx50= + + Frameworks/App.framework/flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + Frameworks/App.framework/flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + Frameworks/App.framework/flutter_assets/kernel_blob.bin + + 8lWs84oWU2hIOx3aMqz49h4NQ+0= + + Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag + + KL+7f3IYR/Y9WDlxxUeDmgGoluc= + + Frameworks/App.framework/flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + Frameworks/Flutter.framework/Flutter + + kFCVEP0Wt53m5uSsU5ZlBFkvtuI= + + Frameworks/Flutter.framework/Headers/Flutter.h + + Jfv2Vo3itUyjWGSxXIEV/9Skri8= + + Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h + + QU3ZohDucENpee9k2C4s7Ovkwxw= + + Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h + + Qj6OtkzORWI38PIdXyyJc+eribM= + + Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h + + lTUaQzdBsC/YVTRn48+amlv1iw4= + + Frameworks/Flutter.framework/Headers/FlutterChannels.h + + bhEGVRctQGJxYtCb3asK0k4Iq74= + + Frameworks/Flutter.framework/Headers/FlutterCodecs.h + + 0hdw5jbuAAJJC64dk/bhma5HKIw= + + Frameworks/Flutter.framework/Headers/FlutterDartProject.h + + ONyPj3D2igT9nx6hVIYtVA5JFG0= + + Frameworks/Flutter.framework/Headers/FlutterEngine.h + + cupY3Xn8Bw2kFlGmh/gwYQCFMkU= + + Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h + + nZcTgHGDD30QzPLlQfP8gP+S06o= + + Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h + + XnDDN+yQj6qLXTuhI0tgTMDbtbI= + + Frameworks/Flutter.framework/Headers/FlutterMacros.h + + T2wuUnVU/0f9v8Mc7CGjJQWLdGU= + + Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h + + JofRibXJB+HPxhe0SAphfoKFSTE= + + Frameworks/Flutter.framework/Headers/FlutterPlugin.h + + EPrA0Ggvn83vzoNUoJ1lETKIEGg= + + Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h + + eBwJo3E6jQLlhEPIm5a+XAUx3o0= + + Frameworks/Flutter.framework/Headers/FlutterTexture.h + + yBJovGku2dvjTDXp2km51wNc8yM= + + Frameworks/Flutter.framework/Headers/FlutterViewController.h + + 6nBSlZSj+EZbyrAd2cS7H0pF3bA= + + Frameworks/Flutter.framework/Info.plist + + 5EFZMHUgrzxWoGrIGrcxFp5fs3M= + + Frameworks/Flutter.framework/Modules/module.modulemap + + wJV5dCKEGl+FAtDc8wJJh/fvKXs= + + Frameworks/Flutter.framework/_CodeSignature/CodeResources + + ytWXa4Cb2iAu1rVt/mlB/wgY2XY= + + Frameworks/Flutter.framework/icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + Info.plist + + feCtZW2/3b5pj5nTCH3wfxYeWSs= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + + files2 + + AppFrameworkInfo.plist + + hash2 + + ZewAT3qa2Eymb9isycy5D/pSpFBsEhFjCoY0I8m+BYc= + + + AppIcon60x60@2x.png + + hash2 + + Gb4XFIHccaCygD680B3YsMX9V3je40wKPKvJSMIl8k4= + + + AppIcon76x76@2x~ipad.png + + hash2 + + QcfUL25h+P5/MLH/oiVq7LyWgr4G0YxKMGIEPhouVHw= + + + Assets.car + + hash2 + + u+33u+K2xHRx3G8kr71Vhz4wsDojWJMpnnEPxWoEh+E= + + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash2 + + by6WshwXWgbEYiAy2bvh0UtjSVa3EwySkNFc1FazGdY= + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash2 + + HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash2 + + cWq7q+iQcmpSoaFGecnyPdKFEPFwRD3slgUmxFADkVs= + + + Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib + + hash2 + + BY/hOMO0FcCl8mCMQqjVbFeb8Q97c1G9lHscfspHFNk= + + + Base.lproj/Main.storyboardc/Info.plist + + hash2 + + PpvapAjR62rl6Ym4E6hkTgpKmBICxTaQXeUqcpHmmqQ= + + + Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib + + hash2 + + ZQ2gUxmWEdRgkn12jxaOmSDD+9/+PopRzqA3/yf4tK4= + + + Frameworks/App.framework/App + + hash2 + + 8VBQ+hBJqx1ZMJBGIie+mgaqoG5eYlb0W0779mvfVRs= + + + Frameworks/App.framework/Info.plist + + hash2 + + F5eso6WFjNZ3xF2PtIJY3OWSUnnInZwdgEkS5dxnfco= + + + Frameworks/App.framework/_CodeSignature/CodeResources + + hash2 + + Zt8F3c0oqaqLNL7dkgWIM2BHncRavJtBla3ZfAn++SM= + + + Frameworks/App.framework/flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + Frameworks/App.framework/flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + Frameworks/App.framework/flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + Frameworks/App.framework/flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + Frameworks/App.framework/flutter_assets/assets/images/1.jpeg + + hash2 + + ZM/gRNk9HmNFDT8BSanVTIPVGTQ+FvTvfqGl5dStDjc= + + + Frameworks/App.framework/flutter_assets/assets/images/13.jpg + + hash2 + + 4pO0Zep+HqPIVOTvdV6gJqsSQM78/b6bhO9mqhqK0Wo= + + + Frameworks/App.framework/flutter_assets/assets/images/2.jpeg + + hash2 + + ytFnREnrsNFG0NvVvVeP1mv8qsXFbpRGFhsWLUTiitY= + + + Frameworks/App.framework/flutter_assets/assets/images/3.jpeg + + hash2 + + CBlcAJZwqOjCmj/xnHWOODg7HNdhf/I7S7P0eMKYRd4= + + + Frameworks/App.framework/flutter_assets/assets/images/4.jpeg + + hash2 + + dzWkydrkKullJAGPu+316lHaUO6n36j6+181qZWpwPU= + + + Frameworks/App.framework/flutter_assets/assets/images/5.jpeg + + hash2 + + gPZ55PgDY7Wo2nV6b9e10+mJ/vyk8bAv1gCeDnCfhGs= + + + Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Frameworks/App.framework/flutter_assets/assets/images/beach.png + + hash2 + + y5lhZTmDRFAd7umZIXEABF+boH2H97AiGStm+R9vwzc= + + + Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg + + hash2 + + 4uXcGTkEvvHPJILKHdwAkUSh1QMC0uS7g0AZyG3EbuE= + + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png + + hash2 + + AKFLcQ1ZyiiPNdbgAja0/IWSf7Dg47kF8Rp+JdCHR2g= + + + Frameworks/App.framework/flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + Frameworks/App.framework/flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + Frameworks/App.framework/flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg + + hash2 + + mxmsoD88A0QjPveARAEkDaNoY/VAmDDcYXmymROv3fA= + + + Frameworks/App.framework/flutter_assets/assets/images/h1.jpg + + hash2 + + Kuqwn3Vbb46v7iAlUHyjY1yw3EniewBiMf9864JOJIg= + + + Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg + + hash2 + + d39wOwhkopGvyzoi+P0fP3v0TNoNj3qO1ec1rcEKbyE= + + + Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg + + hash2 + + 61GSrfe8Ie+gX0W/Nv2Ohg1Wn1sinOfDNEKw5Kgr+xE= + + + Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg + + hash2 + + vN3aG4W6YiSh5x3WB/zpBybI7mgaf3+m/ROF2J4i8yA= + + + Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg + + hash2 + + ZxRldVFZ83zRbJMkoFkweKZv9y1Jyo95tzwPJ9NS1Zc= + + + Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg + + hash2 + + zoDLFXM0uf+NpyOIWoJmYOevt10RMj61L/SzMDdLLXs= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg + + hash2 + + i0jDGexKYKlgcqUekECVK6bGw7lk8i8owJesmETyo6g= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg + + hash2 + + CRhXnlJcAiRByhcRsNwaIJ251Dkbdq38HE1KlALtfrE= + + + Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + Frameworks/App.framework/flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + Frameworks/App.framework/flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + Frameworks/App.framework/flutter_assets/assets/images/menubar.png + + hash2 + + S0J8tgV0/QoXPWtZJt3lkFtejtlA0vqdjomDCmDGa6U= + + + Frameworks/App.framework/flutter_assets/assets/images/mountain.png + + hash2 + + Btm1IjrbdIX0DJtXRYgqDnqFyhZ4YG0SYaymN511hmY= + + + Frameworks/App.framework/flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg + + hash2 + + AljF8ys1SFUk8syawF4yYWO6sq5hWziavfmi373bsEo= + + + Frameworks/App.framework/flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Frameworks/App.framework/flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg + + hash2 + + LE7YVy/IXJ6R/DnWh7ZDrYkbnuEBfmUPggYBZFNXAo0= + + + Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg + + hash2 + + fpHVZSqdVLqqH7kyhfmqHLexwmFZZmfXDmdiQ0JoH6o= + + + Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg + + hash2 + + 5Dlr4bXcaBmYywaMeaVz/ycenIaf5SZPDuAxEPzmKq0= + + + Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Frameworks/App.framework/flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + Frameworks/App.framework/flutter_assets/assets/images/venice.jpg + + hash2 + + iarRj4YhsmffqPbqJbPdYZ0wD2705xLFbNzq3ZWVS64= + + + Frameworks/App.framework/flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + Frameworks/App.framework/flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + Frameworks/App.framework/flutter_assets/kernel_blob.bin + + hash2 + + Ec9Y5zdu5Sx/VUp1UJ6HC9YB56nPuA27QkkaI2PVEko= + + + Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag + + hash2 + + v6u8YtYjslOLIIb1rrgcOW817fxVEiBaprKuV+f6FpY= + + + Frameworks/App.framework/flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + Frameworks/Flutter.framework/Flutter + + hash2 + + 6q3IHEz0Zcv6VixYpcj0OZTfP30o1O7E9/0/1LlY62w= + + + Frameworks/Flutter.framework/Headers/Flutter.h + + hash2 + + uwm8JZgId56AcAI6HgoYvB86L3U5XLTdogukvzdieH0= + + + Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h + + hash2 + + ZE5n3wyEphmq0NvXEk+TgX9+IH2WWIRdDoZj+8Zmu+E= + + + Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h + + hash2 + + 1dNDb41OVcGRhdnQfLHPfpfNUSb9f9Dmg57Bqo4gJv0= + + + Frameworks/Flutter.framework/Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Frameworks/Flutter.framework/Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Frameworks/Flutter.framework/Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Frameworks/Flutter.framework/Headers/FlutterEngine.h + + hash2 + + nqtk8YLddo2rPiYBl7tgIviV+uOyWZO9Ey3zKZBCG2o= + + + Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h + + hash2 + + I+878Ez9ZpVdAR2GOzKJKjaZ5m807AeAF++2pSMQss4= + + + Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h + + hash2 + + sELlVsLARG1gBlPndKt24VxGVmBMgcXWeShflcVtZBQ= + + + Frameworks/Flutter.framework/Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h + + hash2 + + c4TS8HplkxEc+09dBX5h+BZ+vkI9QJU/3ljud7WmdTM= + + + Frameworks/Flutter.framework/Headers/FlutterPlugin.h + + hash2 + + zRjDCQ3ULUe9Pf2BcmGjO5/rdI00/Siw5fnIQZsJjMI= + + + Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h + + hash2 + + yxMe4j+1eEByv8dhzIAxAdnDSnF01UZxK1q9r8DtR84= + + + Frameworks/Flutter.framework/Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Frameworks/Flutter.framework/Headers/FlutterViewController.h + + hash2 + + P0GsFW0zzP6Yi8y8zBx1bdWpXoBcaVpIbO3lgDBZoDY= + + + Frameworks/Flutter.framework/Info.plist + + hash2 + + iy8u+1tPceAZSDmuhbFLa2NjsSq3TtdLnvF0mNAWFhM= + + + Frameworks/Flutter.framework/Modules/module.modulemap + + hash2 + + 0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs= + + + Frameworks/Flutter.framework/_CodeSignature/CodeResources + + hash2 + + ovF+xSc21G+ODAaReOPJN0v9PhSFKznEz1Y3xIUvnqM= + + + Frameworks/Flutter.framework/icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo new file mode 100644 index 0000000..c33dffe Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.abi.json b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..dc109fc --- /dev/null +++ b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,9 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..a04b11a Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..34a7bec Binary files /dev/null and b/Task1/build/ios/Debug-iphonesimulator/Runner.swiftmodule/arm64-apple-ios-simulator.swiftmodule differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/AppFrameworkInfo.plist b/Task1/build/ios/iphonesimulator/Runner.app/AppFrameworkInfo.plist new file mode 100644 index 0000000..0da50c7 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/AppFrameworkInfo.plist differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/AppIcon60x60@2x.png b/Task1/build/ios/iphonesimulator/Runner.app/AppIcon60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/AppIcon60x60@2x.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png b/Task1/build/ios/iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Assets.car b/Task1/build/ios/iphonesimulator/Runner.app/Assets.car new file mode 100644 index 0000000..876cbb8 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Assets.car differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 0000000..623fb36 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 0000000..32288e8 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 0000000..1b57c9a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib new file mode 100644 index 0000000..5368f93 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 0000000..9a41f2c Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib new file mode 100644 index 0000000..63e8a39 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/App b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/App new file mode 100755 index 0000000..8d561f2 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/App differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..86647d4 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources @@ -0,0 +1,799 @@ + + + + + files + + Info.plist + + 85iaADE5tc/NukRC+KGdiZaZ0ZA= + + flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + flutter_assets/assets/images/.DS_Store + + +8iQ6HyKW+M4wcscKAFYhanfUcY= + + flutter_assets/assets/images/1.jpeg + + T4eHigGqCjppEMN5PZjXN63j2UE= + + flutter_assets/assets/images/13.jpg + + xJdsU88dxzNUCrvQhUVJfA36vy8= + + flutter_assets/assets/images/2.jpeg + + Kpr+ISskXOhd00somUarsLf8WL0= + + flutter_assets/assets/images/3.jpeg + + d377rWShqdNs2Vg7Rxeo7aCMMLU= + + flutter_assets/assets/images/4.jpeg + + eJYwOmsjrusGdvMKWb5xwlngYP0= + + flutter_assets/assets/images/5.jpeg + + TT4rmr6kGvrgAnk8aSvOh+FM3g4= + + flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/beach.png + + HfyouspGEztalPd3FzMVoXZzLT8= + + flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + flutter_assets/assets/images/circleavatar.jpg + + +XFVNZMeO2KIXnV8K5yRvsLbBKI= + + flutter_assets/assets/images/circleavatar1.png + + be2kO6flRJYJDjjrTPvDWUHyy1E= + + flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + flutter_assets/assets/images/gondola.jpg + + KUZ1nT6qT6g9dc9k3mHtSaHzwp4= + + flutter_assets/assets/images/h1.jpg + + SdjVzsZhFoZGiKoKhpnGgOlT5r8= + + flutter_assets/assets/images/h2.jpeg + + /cjCaNGdItMcCUGcXJ4j280zJ0E= + + flutter_assets/assets/images/h3.jpeg + + 0pCymnfRDUKYEPZArx+bdBtV+Lc= + + flutter_assets/assets/images/h4.jpeg + + 6FSCt2wBul/Up7S/kzNFuA5PJZw= + + flutter_assets/assets/images/h5.jpeg + + qh7CO4lBJQtqHco5RyTFMXQhzks= + + flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + flutter_assets/assets/images/hotel0.jpg + + 8dGP3fsV/whkk0xfs4837sWwC20= + + flutter_assets/assets/images/hotel1.jpg + + XVN8jBEPFZ3u3bmJDnY2jgdm86c= + + flutter_assets/assets/images/hotel2.jpg + + X76EqYI/EqeZxJUy8sMIgHiP6Ys= + + flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + flutter_assets/assets/images/menubar.png + + +xTHaiVnUgCz3/80fHJSXQB+uxc= + + flutter_assets/assets/images/mountain.png + + se8c/XNUOdzYckTeX/1zAqQmJSk= + + flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + flutter_assets/assets/images/newyork.jpg + + Xuy5rCeN0+S9GRfWpnU7FbyUenM= + + flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + flutter_assets/assets/images/santorini.jpg + + lbQFbhthk6Q4yBzlisRJPRn9LmY= + + flutter_assets/assets/images/saopaulo.jpg + + 6to0LgPD/ciBT9tpY848Oqr4b5o= + + flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + flutter_assets/assets/images/stmarksbasilica.jpg + + GjV2FKCViife8mfluTBINMBgRas= + + flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + flutter_assets/assets/images/venice.jpg + + aZm0eWz2fCZxInaKk8MvsBMMx50= + + flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + flutter_assets/kernel_blob.bin + + 8lWs84oWU2hIOx3aMqz49h4NQ+0= + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + flutter_assets/shaders/ink_sparkle.frag + + KL+7f3IYR/Y9WDlxxUeDmgGoluc= + + flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + + files2 + + flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + flutter_assets/assets/images/1.jpeg + + hash2 + + ZM/gRNk9HmNFDT8BSanVTIPVGTQ+FvTvfqGl5dStDjc= + + + flutter_assets/assets/images/13.jpg + + hash2 + + 4pO0Zep+HqPIVOTvdV6gJqsSQM78/b6bhO9mqhqK0Wo= + + + flutter_assets/assets/images/2.jpeg + + hash2 + + ytFnREnrsNFG0NvVvVeP1mv8qsXFbpRGFhsWLUTiitY= + + + flutter_assets/assets/images/3.jpeg + + hash2 + + CBlcAJZwqOjCmj/xnHWOODg7HNdhf/I7S7P0eMKYRd4= + + + flutter_assets/assets/images/4.jpeg + + hash2 + + dzWkydrkKullJAGPu+316lHaUO6n36j6+181qZWpwPU= + + + flutter_assets/assets/images/5.jpeg + + hash2 + + gPZ55PgDY7Wo2nV6b9e10+mJ/vyk8bAv1gCeDnCfhGs= + + + flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/beach.png + + hash2 + + y5lhZTmDRFAd7umZIXEABF+boH2H97AiGStm+R9vwzc= + + + flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + flutter_assets/assets/images/circleavatar.jpg + + hash2 + + 4uXcGTkEvvHPJILKHdwAkUSh1QMC0uS7g0AZyG3EbuE= + + + flutter_assets/assets/images/circleavatar1.png + + hash2 + + AKFLcQ1ZyiiPNdbgAja0/IWSf7Dg47kF8Rp+JdCHR2g= + + + flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + flutter_assets/assets/images/gondola.jpg + + hash2 + + mxmsoD88A0QjPveARAEkDaNoY/VAmDDcYXmymROv3fA= + + + flutter_assets/assets/images/h1.jpg + + hash2 + + Kuqwn3Vbb46v7iAlUHyjY1yw3EniewBiMf9864JOJIg= + + + flutter_assets/assets/images/h2.jpeg + + hash2 + + d39wOwhkopGvyzoi+P0fP3v0TNoNj3qO1ec1rcEKbyE= + + + flutter_assets/assets/images/h3.jpeg + + hash2 + + 61GSrfe8Ie+gX0W/Nv2Ohg1Wn1sinOfDNEKw5Kgr+xE= + + + flutter_assets/assets/images/h4.jpeg + + hash2 + + vN3aG4W6YiSh5x3WB/zpBybI7mgaf3+m/ROF2J4i8yA= + + + flutter_assets/assets/images/h5.jpeg + + hash2 + + ZxRldVFZ83zRbJMkoFkweKZv9y1Jyo95tzwPJ9NS1Zc= + + + flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + flutter_assets/assets/images/hotel0.jpg + + hash2 + + zoDLFXM0uf+NpyOIWoJmYOevt10RMj61L/SzMDdLLXs= + + + flutter_assets/assets/images/hotel1.jpg + + hash2 + + i0jDGexKYKlgcqUekECVK6bGw7lk8i8owJesmETyo6g= + + + flutter_assets/assets/images/hotel2.jpg + + hash2 + + CRhXnlJcAiRByhcRsNwaIJ251Dkbdq38HE1KlALtfrE= + + + flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + flutter_assets/assets/images/menubar.png + + hash2 + + S0J8tgV0/QoXPWtZJt3lkFtejtlA0vqdjomDCmDGa6U= + + + flutter_assets/assets/images/mountain.png + + hash2 + + Btm1IjrbdIX0DJtXRYgqDnqFyhZ4YG0SYaymN511hmY= + + + flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + flutter_assets/assets/images/newyork.jpg + + hash2 + + AljF8ys1SFUk8syawF4yYWO6sq5hWziavfmi373bsEo= + + + flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + flutter_assets/assets/images/santorini.jpg + + hash2 + + LE7YVy/IXJ6R/DnWh7ZDrYkbnuEBfmUPggYBZFNXAo0= + + + flutter_assets/assets/images/saopaulo.jpg + + hash2 + + fpHVZSqdVLqqH7kyhfmqHLexwmFZZmfXDmdiQ0JoH6o= + + + flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + flutter_assets/assets/images/stmarksbasilica.jpg + + hash2 + + 5Dlr4bXcaBmYywaMeaVz/ycenIaf5SZPDuAxEPzmKq0= + + + flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + flutter_assets/assets/images/venice.jpg + + hash2 + + iarRj4YhsmffqPbqJbPdYZ0wD2705xLFbNzq3ZWVS64= + + + flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + flutter_assets/kernel_blob.bin + + hash2 + + Ec9Y5zdu5Sx/VUp1UJ6HC9YB56nPuA27QkkaI2PVEko= + + + flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + flutter_assets/shaders/ink_sparkle.frag + + hash2 + + v6u8YtYjslOLIIb1rrgcOW817fxVEiBaprKuV+f6FpY= + + + flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..146fb51 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/images/.DS_Store  assetassets/images/.DS_Storeassets/images/Disney_land.webp  assetassets/images/Disney_land.webpassets/images/Eiffel_tower.jpeg  assetassets/images/Eiffel_tower.jpegassets/images/Hill_station.jpeg  assetassets/images/Hill_station.jpeg"assets/images/KAGAGAHAN_RIJANI.jpg  asset"assets/images/KAGAGAHAN_RIJANI.jpgassets/images/Mountain_icon.png  assetassets/images/Mountain_icon.pngassets/images/Red_fort.jpg  assetassets/images/Red_fort.jpg+assets/images/Taj-Mahal-Agra-India.jpg.webp  asset+assets/images/Taj-Mahal-Agra-India.jpg.webpassets/images/cartoon.jpg  assetassets/images/cartoon.jpgassets/images/china_wall.webp  assetassets/images/china_wall.webpassets/images/city.png  assetassets/images/city.pngassets/images/desert.png  assetassets/images/desert.pngassets/images/forest.png  assetassets/images/forest.png$assets/images/historical_places.jpeg  asset$assets/images/historical_places.jpegassets/images/india_gate.jpeg  assetassets/images/india_gate.jpegassets/images/las.jpeg  assetassets/images/las.jpegassets/images/las_vegas.jpeg  assetassets/images/las_vegas.jpegassets/images/lotus-temple.jpeg  assetassets/images/lotus-temple.jpegassets/images/menu.png  assetassets/images/menu.pngassets/images/menu_icon.png  assetassets/images/menu_icon.pngassets/images/murano.jpg  assetassets/images/murano.jpgassets/images/newdelhi.jpg  assetassets/images/newdelhi.jpgassets/images/paris.jpg  assetassets/images/paris.jpgassets/images/red-fort.jpg  assetassets/images/red-fort.jpgassets/images/river.png  assetassets/images/river.pngassets/images/shimla.jpeg  assetassets/images/shimla.jpegassets/images/tajmahal.jpg  assetassets/images/tajmahal.jpgassets/images/temple.jpg  assetassets/images/temple.jpgassets/images/waterfall.png  assetassets/images/waterfall.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json new file mode 100644 index 0000000..cfb4f29 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/Disney_land.webp":["assets/images/Disney_land.webp"],"assets/images/Eiffel_tower.jpeg":["assets/images/Eiffel_tower.jpeg"],"assets/images/Hill_station.jpeg":["assets/images/Hill_station.jpeg"],"assets/images/KAGAGAHAN_RIJANI.jpg":["assets/images/KAGAGAHAN_RIJANI.jpg"],"assets/images/Mountain_icon.png":["assets/images/Mountain_icon.png"],"assets/images/Red_fort.jpg":["assets/images/Red_fort.jpg"],"assets/images/Taj-Mahal-Agra-India.jpg.webp":["assets/images/Taj-Mahal-Agra-India.jpg.webp"],"assets/images/cartoon.jpg":["assets/images/cartoon.jpg"],"assets/images/china_wall.webp":["assets/images/china_wall.webp"],"assets/images/city.png":["assets/images/city.png"],"assets/images/desert.png":["assets/images/desert.png"],"assets/images/forest.png":["assets/images/forest.png"],"assets/images/historical_places.jpeg":["assets/images/historical_places.jpeg"],"assets/images/india_gate.jpeg":["assets/images/india_gate.jpeg"],"assets/images/las.jpeg":["assets/images/las.jpeg"],"assets/images/las_vegas.jpeg":["assets/images/las_vegas.jpeg"],"assets/images/lotus-temple.jpeg":["assets/images/lotus-temple.jpeg"],"assets/images/menu.png":["assets/images/menu.png"],"assets/images/menu_icon.png":["assets/images/menu_icon.png"],"assets/images/murano.jpg":["assets/images/murano.jpg"],"assets/images/newdelhi.jpg":["assets/images/newdelhi.jpg"],"assets/images/paris.jpg":["assets/images/paris.jpg"],"assets/images/red-fort.jpg":["assets/images/red-fort.jpg"],"assets/images/river.png":["assets/images/river.png"],"assets/images/shimla.jpeg":["assets/images/shimla.jpeg"],"assets/images/tajmahal.jpg":["assets/images/tajmahal.jpg"],"assets/images/temple.jpg":["assets/images/temple.jpg"],"assets/images/waterfall.png":["assets/images/waterfall.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..5c16833 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg new file mode 100644 index 0000000..7b5580a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/1.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg new file mode 100644 index 0000000..78116ea Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/13.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg new file mode 100644 index 0000000..b4ae2e7 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/2.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg new file mode 100644 index 0000000..2b0450b Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/3.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg new file mode 100644 index 0000000..b4ab457 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/4.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg new file mode 100644 index 0000000..9425dc3 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/5.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png new file mode 100644 index 0000000..573458f Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/beach.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg new file mode 100644 index 0000000..d784d21 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png new file mode 100644 index 0000000..e42275d Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/city.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/desert.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/forest.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg new file mode 100644 index 0000000..bc6871b Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg new file mode 100644 index 0000000..3f59149 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h1.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg new file mode 100644 index 0000000..8a5fb48 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg new file mode 100644 index 0000000..00cb385 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg new file mode 100644 index 0000000..6164c61 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg new file mode 100644 index 0000000..b99dc37 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg new file mode 100644 index 0000000..dd26fc8 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg new file mode 100644 index 0000000..d384aec Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg new file mode 100644 index 0000000..26a5a95 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png new file mode 100644 index 0000000..956f328 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/menubar.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png new file mode 100644 index 0000000..6e8a74d Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/mountain.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/murano.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg new file mode 100644 index 0000000..04264cd Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/paris.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/river.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg new file mode 100644 index 0000000..6b74157 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg new file mode 100644 index 0000000..217c24a Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg new file mode 100644 index 0000000..5ae620b Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/temple.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg new file mode 100644 index 0000000..79b84aa Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/venice.jpg differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/assets/images/waterfall.png differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6a5616f Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..a8c1c88 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..79ba7ea Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..2ba50c6 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..2464640 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter new file mode 100755 index 0000000..2e1edd4 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h new file mode 100644 index 0000000..cd59a82 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h @@ -0,0 +1,24 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTER_H_ +#define FLUTTER_FLUTTER_H_ + +#import "FlutterAppDelegate.h" +#import "FlutterBinaryMessenger.h" +#import "FlutterCallbackCache.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterEngineGroup.h" +#import "FlutterHeadlessDartRunner.h" +#import "FlutterMacros.h" +#import "FlutterPlatformViews.h" +#import "FlutterPlugin.h" +#import "FlutterPluginAppLifeCycleDelegate.h" +#import "FlutterTexture.h" +#import "FlutterViewController.h" + +#endif // FLUTTER_FLUTTER_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h new file mode 100644 index 0000000..ed7589a --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h @@ -0,0 +1,34 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERAPPDELEGATE_H_ +#define FLUTTER_FLUTTERAPPDELEGATE_H_ + +#import + +#import "FlutterMacros.h" +#import "FlutterPlugin.h" + +/** + * `UIApplicationDelegate` subclass for simple apps that want default behavior. + * + * This class implements the following behaviors: + * * Status bar touches are forwarded to the key window's root view + * `FlutterViewController`, in order to trigger scroll to top. + * * Keeps the Flutter connection open in debug mode when the phone screen + * locks. + * + * App delegates for Flutter applications are *not* required to inherit from + * this class. Developers of custom app delegate classes should copy and paste + * code as necessary from FlutterAppDelegate.mm. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterAppDelegate + : UIResponder + +@property(strong, nonatomic) UIWindow* window; + +@end + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h new file mode 100644 index 0000000..9f59ec8 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h @@ -0,0 +1,105 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERBINARYMESSENGER_H_ +#define FLUTTER_FLUTTERBINARYMESSENGER_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a binary reply back to a Flutter message sender. Also used + * in for handling a binary message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterBinaryReply)(NSData* _Nullable reply); + +/** + * A strategy for handling incoming binary messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param reply A callback for submitting an asynchronous reply to the sender. + */ +typedef void (^FlutterBinaryMessageHandler)(NSData* _Nullable message, FlutterBinaryReply reply); + +typedef int64_t FlutterBinaryMessengerConnection; + +@protocol FlutterTaskQueue; + +/** + * A facility for communicating with the Flutter side using asynchronous message + * passing with binary messages. + * + * Implementated by: + * - `FlutterBasicMessageChannel`, which supports communication using structured + * messages. + * - `FlutterMethodChannel`, which supports communication using asynchronous + * method calls. + * - `FlutterEventChannel`, which supports commuication using event streams. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterBinaryMessenger +/// TODO(gaaclarke): Remove optional when macos supports Background Platform Channels. +@optional +- (NSObject*)makeBackgroundTaskQueue; + +- (FlutterBinaryMessengerConnection) + setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler:(FlutterBinaryMessageHandler _Nullable)handler + taskQueue:(NSObject* _Nullable)taskQueue; + +@required +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * no reply. + * + * @param channel The channel name. + * @param message The message. + */ +- (void)sendOnChannel:(NSString*)channel message:(NSData* _Nullable)message; + +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * an asynchronous reply. + * + * @param channel The channel name. + * @param message The message. + * @param callback A callback for receiving a reply. + */ +- (void)sendOnChannel:(NSString*)channel + message:(NSData* _Nullable)message + binaryReply:(FlutterBinaryReply _Nullable)callback; + +/** + * Registers a message handler for incoming binary messages from the Flutter side + * on the specified channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param channel The channel name. + * @param handler The message handler. + * @return An identifier that represents the connection that was just created to the channel. + */ +- (FlutterBinaryMessengerConnection)setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler: + (FlutterBinaryMessageHandler _Nullable)handler; + +/** + * Clears out a channel's message handler if that handler is still the one that + * was created as a result of + * `setMessageHandlerOnChannel:binaryMessageHandler:`. + * + * @param connection The result from `setMessageHandlerOnChannel:binaryMessageHandler:`. + */ +- (void)cleanUpConnection:(FlutterBinaryMessengerConnection)connection; +@end +NS_ASSUME_NONNULL_END +#endif // FLUTTER_FLUTTERBINARYMESSENGER_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h new file mode 100644 index 0000000..d206558 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h @@ -0,0 +1,54 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCALLBACKCACHE_H_ +#define FLUTTER_FLUTTERCALLBACKCACHE_H_ + +#import + +#import "FlutterMacros.h" + +/** + * An object containing the result of `FlutterCallbackCache`'s `lookupCallbackInformation` + * method. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackInformation : NSObject +/** + * The name of the callback. + */ +@property(copy) NSString* callbackName; +/** + * The class name of the callback. + */ +@property(copy) NSString* callbackClassName; +/** + * The library path of the callback. + */ +@property(copy) NSString* callbackLibraryPath; +@end + +/** + * The cache containing callback information for spawning a + * `FlutterHeadlessDartRunner`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterCallbackCache : NSObject +/** + * Returns the callback information for the given callback handle. + * This callback information can be used when spawning a + * `FlutterHeadlessDartRunner`. + * + * @param handle The handle for a callback, provided by the + * Dart method `PluginUtilities.getCallbackHandle`. + * @return A `FlutterCallbackInformation` object which contains the name of the + * callback, the name of the class in which the callback is defined, and the + * path of the library which contains the callback. If the provided handle is + * invalid, nil is returned. + */ ++ (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle; + +@end + +#endif // FLUTTER_FLUTTERCALLBACKCACHE_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h new file mode 100644 index 0000000..9b84cd6 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h @@ -0,0 +1,452 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCHANNELS_H_ +#define FLUTTER_FLUTTERCHANNELS_H_ + +#import "FlutterBinaryMessenger.h" +#import "FlutterCodecs.h" + +@protocol FlutterTaskQueue; + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a reply back to a Flutter message sender. Also used in + * the dual capacity for handling a message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterReply)(id _Nullable reply); + +/** + * A strategy for handling incoming messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param callback A callback for submitting a reply to the sender which can be invoked from any + * thread. + */ +typedef void (^FlutterMessageHandler)(id _Nullable message, FlutterReply callback); + +/** + * A channel for communicating with the Flutter side using basic, asynchronous + * message passing. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBasicMessageChannel : NSObject +/** + * Creates a `FlutterBasicMessageChannel` with the specified name and binary + * messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMessageCodec` to encode and decode messages. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +/** + * Sends the specified message to the Flutter side, ignoring any reply. + * + * @param message The message. Must be supported by the codec of this + * channel. + */ +- (void)sendMessage:(id _Nullable)message; + +/** + * Sends the specified message to the Flutter side, expecting an asynchronous + * reply. + * + * @param message The message. Must be supported by the codec of this channel. + * @param callback A callback to be invoked with the message reply from Flutter. + */ +- (void)sendMessage:(id _Nullable)message reply:(FlutterReply _Nullable)callback; + +/** + * Registers a message handler with this channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The message handler. + */ +- (void)setMessageHandler:(FlutterMessageHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * A method call result callback. + * + * Used for submitting a method call result back to a Flutter caller. Also used in + * the dual capacity for handling a method call result received from Flutter. + * + * @param result The result. + */ +typedef void (^FlutterResult)(id _Nullable result); + +/** + * A strategy for handling method calls. + * + * @param call The incoming method call. + * @param result A callback to asynchronously submit the result of the call. + * Invoke the callback with a `FlutterError` to indicate that the call failed. + * Invoke the callback with `FlutterMethodNotImplemented` to indicate that the + * method was unknown. Any other values, including `nil`, are interpreted as + * successful results. This can be invoked from any thread. + */ +typedef void (^FlutterMethodCallHandler)(FlutterMethodCall* call, FlutterResult result); + +/** + * A constant used with `FlutterMethodCallHandler` to respond to the call of an + * unknown method. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterMethodNotImplemented; + +/** + * A channel for communicating with the Flutter side using invocation of + * asynchronous methods. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodChannel : NSObject +/** + * Creates a `FlutterMethodChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to encode and decode method calls + * and result envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterMethodChannel` with the specified name, binary messenger, and + * method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * method codec, and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +// clang-format off +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * no results. + * + * @see [MethodChannel.setMethodCallHandler](https://api.flutter.dev/flutter/services/MethodChannel/setMethodCallHandler.html) + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + */ +// clang-format on +- (void)invokeMethod:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * an asynchronous result. + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + * @param callback A callback that will be invoked with the asynchronous result. + * The result will be a `FlutterError` instance, if the method call resulted + * in an error on the Flutter side. Will be `FlutterMethodNotImplemented`, if + * the method called was not implemented on the Flutter side. Any other value, + * including `nil`, should be interpreted as successful results. + */ +- (void)invokeMethod:(NSString*)method + arguments:(id _Nullable)arguments + result:(FlutterResult _Nullable)callback; +/** + * Registers a handler for method calls from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The method call handler. + */ +- (void)setMethodCallHandler:(FlutterMethodCallHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * An event sink callback. + * + * @param event The event. + */ +typedef void (^FlutterEventSink)(id _Nullable event); + +/** + * A strategy for exposing an event stream to the Flutter side. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterStreamHandler +/** + * Sets up an event stream and begin emitting events. + * + * Invoked when the first listener is registered with the Stream associated to + * this channel on the Flutter side. + * + * @param arguments Arguments for the stream. + * @param events A callback to asynchronously emit events. Invoke the + * callback with a `FlutterError` to emit an error event. Invoke the + * callback with `FlutterEndOfEventStream` to indicate that no more + * events will be emitted. Any other value, including `nil` are emitted as + * successful events. + * @return A FlutterError instance, if setup fails. + */ +- (FlutterError* _Nullable)onListenWithArguments:(id _Nullable)arguments + eventSink:(FlutterEventSink)events; + +/** + * Tears down an event stream. + * + * Invoked when the last listener is deregistered from the Stream associated to + * this channel on the Flutter side. + * + * The channel implementation may call this method with `nil` arguments + * to separate a pair of two consecutive set up requests. Such request pairs + * may occur during Flutter hot restart. + * + * @param arguments Arguments for the stream. + * @return A FlutterError instance, if teardown fails. + */ +- (FlutterError* _Nullable)onCancelWithArguments:(id _Nullable)arguments; +@end + +/** + * A constant used with `FlutterEventChannel` to indicate end of stream. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterEndOfEventStream; + +/** + * A channel for communicating with the Flutter side using event streams. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEventChannel : NSObject +/** + * Creates a `FlutterEventChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to decode stream setup and + * teardown requests, and to encode event envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * method codec and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; +/** + * Registers a handler for stream setup requests from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The stream handler. + */ +- (void)setStreamHandler:(NSObject* _Nullable)handler; +@end +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCHANNELS_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h new file mode 100644 index 0000000..f7117f0 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h @@ -0,0 +1,476 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCODECS_H_ +#define FLUTTER_FLUTTERCODECS_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A message encoding/decoding mechanism. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMessageCodec +/** + * Returns a shared instance of this `FlutterMessageCodec`. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified message into binary. + * + * @param message The message. + * @return The binary encoding, or `nil`, if `message` was `nil`. + */ +- (NSData* _Nullable)encode:(id _Nullable)message; + +/** + * Decodes the specified message from binary. + * + * @param message The message. + * @return The decoded message, or `nil`, if `message` was `nil`. + */ +- (id _Nullable)decode:(NSData* _Nullable)message; +@end + +/** + * A `FlutterMessageCodec` using unencoded binary messages, represented as + * `NSData` instances. + * + * This codec is guaranteed to be compatible with the corresponding + * [BinaryCodec](https://api.flutter.dev/flutter/services/BinaryCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * On the Dart side, messages are represented using `ByteData`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBinaryCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded `NSString` messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [StringCodec](https://api.flutter.dev/flutter/services/StringCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStringCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded JSON messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMessageCodec](https://api.flutter.dev/flutter/services/JSONMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supports values accepted by `NSJSONSerialization` plus top-level + * `nil`, `NSNumber`, and `NSString`. + * + * On the Dart side, JSON messages are handled by the JSON facilities of the + * [`dart:convert`](https://api.dartlang.org/stable/dart-convert/JSON-constant.html) + * package. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMessageCodec : NSObject +@end + +/** + * A writer of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `writeValue`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardWriter : NSObject +/** + * Create a `FlutterStandardWriter` who will write to \p data. + */ +- (instancetype)initWithData:(NSMutableData*)data; +/** Write a 8-bit byte. */ +- (void)writeByte:(UInt8)value; +/** Write an array of \p bytes of size \p length. */ +- (void)writeBytes:(const void*)bytes length:(NSUInteger)length; +/** Write an array of bytes contained in \p data. */ +- (void)writeData:(NSData*)data; +/** Write 32-bit unsigned integer that represents a \p size of a collection. */ +- (void)writeSize:(UInt32)size; +/** Write zero padding until data is aligned with \p alignment. */ +- (void)writeAlignment:(UInt8)alignment; +/** Write a string with UTF-8 encoding. */ +- (void)writeUTF8:(NSString*)value; +/** Introspects into an object and writes its representation. + * + * Supported Data Types: + * - NSNull + * - NSNumber + * - NSString (as UTF-8) + * - FlutterStandardTypedData + * - NSArray of supported types + * - NSDictionary of supporte types + * + * NSAsserts on failure. + */ +- (void)writeValue:(id)value; +@end + +/** + * A reader of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `readValueOfType`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReader : NSObject +/** + * Create a new `FlutterStandardReader` who reads from \p data. + */ +- (instancetype)initWithData:(NSData*)data; +/** Returns YES when the reader hasn't reached the end of its data. */ +- (BOOL)hasMore; +/** Reads a byte value and increments the position. */ +- (UInt8)readByte; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (void)readBytes:(void*)destination length:(NSUInteger)length; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (NSData*)readData:(NSUInteger)length; +/** Reads a 32-bit unsigned integer representing a collection size and increments the position.*/ +- (UInt32)readSize; +/** Advances the read position until it is aligned with \p alignment. */ +- (void)readAlignment:(UInt8)alignment; +/** Read a null terminated string encoded with UTF-8/ */ +- (NSString*)readUTF8; +/** + * Reads a byte for `FlutterStandardField` the decodes a value matching that type. + * + * See also: -[FlutterStandardWriter writeValue] + */ +- (nullable id)readValue; +/** + * Decodes a value matching the \p type specified. + * + * See also: + * - `FlutterStandardField` + * - `-[FlutterStandardWriter writeValue]` + */ +- (nullable id)readValueOfType:(UInt8)type; +@end + +/** + * A factory of compatible reader/writer instances using the Flutter standard + * binary encoding or extensions thereof. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReaderWriter : NSObject +/** + * Create a new `FlutterStandardWriter` for writing to \p data. + */ +- (FlutterStandardWriter*)writerWithData:(NSMutableData*)data; +/** + * Create a new `FlutterStandardReader` for reading from \p data. + */ +- (FlutterStandardReader*)readerWithData:(NSData*)data; +@end + +/** + * A `FlutterMessageCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMessageCodec](https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supported messages are acyclic values of these forms: + * + * - `nil` or `NSNull` + * - `NSNumber` (including their representation of Boolean values) + * - `NSString` + * - `FlutterStandardTypedData` + * - `NSArray` of supported values + * - `NSDictionary` with supported keys and values + * + * On the Dart side, these values are represented as follows: + * + * - `nil` or `NSNull`: null + * - `NSNumber`: `bool`, `int`, or `double`, depending on the contained value. + * - `NSString`: `String` + * - `FlutterStandardTypedData`: `Uint8List`, `Int32List`, `Int64List`, or `Float64List` + * - `NSArray`: `List` + * - `NSDictionary`: `Map` + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMessageCodec : NSObject +/** + * Create a `FlutterStandardMessageCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +/** + * Command object representing a method call on a `FlutterMethodChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodCall : NSObject +/** + * Creates a method call for invoking the specified named method with the + * specified arguments. + * + * @param method the name of the method to call. + * @param arguments the arguments value. + */ ++ (instancetype)methodCallWithMethodName:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * The method name. + */ +@property(readonly, nonatomic) NSString* method; + +/** + * The arguments. + */ +@property(readonly, nonatomic, nullable) id arguments; +@end + +/** + * Error object representing an unsuccessful outcome of invoking a method + * on a `FlutterMethodChannel`, or an error event on a `FlutterEventChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterError : NSObject +/** + * Creates a `FlutterError` with the specified error code, message, and details. + * + * @param code An error code string for programmatic use. + * @param message A human-readable error message. + * @param details Custom error details. + */ ++ (instancetype)errorWithCode:(NSString*)code + message:(NSString* _Nullable)message + details:(id _Nullable)details; +/** + The error code. + */ +@property(readonly, nonatomic) NSString* code; + +/** + The error message. + */ +@property(readonly, nonatomic, nullable) NSString* message; + +/** + The error details. + */ +@property(readonly, nonatomic, nullable) id details; +@end + +/** + * Type of numeric data items encoded in a `FlutterStandardDataType`. + * + * - FlutterStandardDataTypeUInt8: plain bytes + * - FlutterStandardDataTypeInt32: 32-bit signed integers + * - FlutterStandardDataTypeInt64: 64-bit signed integers + * - FlutterStandardDataTypeFloat64: 64-bit floats + */ +typedef NS_ENUM(NSInteger, FlutterStandardDataType) { + FlutterStandardDataTypeUInt8, + FlutterStandardDataTypeInt32, + FlutterStandardDataTypeInt64, + FlutterStandardDataTypeFloat32, + FlutterStandardDataTypeFloat64, +}; + +/** + * A byte buffer holding `UInt8`, `SInt32`, `SInt64`, or `Float64` values, used + * with `FlutterStandardMessageCodec` and `FlutterStandardMethodCodec`. + * + * Two's complement encoding is used for signed integers. IEEE754 + * double-precision representation is used for floats. The platform's native + * endianness is assumed. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardTypedData : NSObject +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as plain bytes. + * + * @param data the byte data. + */ ++ (instancetype)typedDataWithBytes:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit signed integers. + * + * @param data the byte data. The length must be divisible by 4. + */ ++ (instancetype)typedDataWithInt32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit signed integers. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithInt64:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat64:(NSData*)data; + +/** + * The raw underlying data buffer. + */ +@property(readonly, nonatomic) NSData* data; + +/** + * The type of the encoded values. + */ +@property(readonly, nonatomic, assign) FlutterStandardDataType type; + +/** + * The number of value items encoded. + */ +@property(readonly, nonatomic, assign) UInt32 elementCount; + +/** + * The number of bytes used by the encoding of a single value item. + */ +@property(readonly, nonatomic, assign) UInt8 elementSize; +@end + +/** + * An arbitrarily large integer value, used with `FlutterStandardMessageCodec` + * and `FlutterStandardMethodCodec`. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_UNAVAILABLE("Unavailable on 2018-08-31. Deprecated on 2018-01-09. " + "FlutterStandardBigInteger was needed because the Dart 1.0 int type had no " + "size limit. With Dart 2.0, the int type is a fixed-size, 64-bit signed " + "integer. If you need to communicate larger integers, use NSString encoding " + "instead.") +@interface FlutterStandardBigInteger : NSObject +@end + +/** + * A codec for method calls and enveloped results. + * + * Method calls are encoded as binary messages with enough structure that the + * codec can extract a method name `NSString` and an arguments `NSObject`, + * possibly `nil`. These data items are used to populate a `FlutterMethodCall`. + * + * Result envelopes are encoded as binary messages with enough structure that + * the codec can determine whether the result was successful or an error. In + * the former case, the codec can extract the result `NSObject`, possibly `nil`. + * In the latter case, the codec can extract an error code `NSString`, a + * human-readable `NSString` error message (possibly `nil`), and a custom + * error details `NSObject`, possibly `nil`. These data items are used to + * populate a `FlutterError`. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMethodCodec +/** + * Provides access to a shared instance this codec. + * + * @return The shared instance. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified method call into binary. + * + * @param methodCall The method call. The arguments value + * must be supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeMethodCall:(FlutterMethodCall*)methodCall; + +/** + * Decodes the specified method call from binary. + * + * @param methodCall The method call to decode. + * @return The decoded method call. + */ +- (FlutterMethodCall*)decodeMethodCall:(NSData*)methodCall; + +/** + * Encodes the specified successful result into binary. + * + * @param result The result. Must be a value supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeSuccessEnvelope:(id _Nullable)result; + +/** + * Encodes the specified error result into binary. + * + * @param error The error object. The error details value must be supported + * by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeErrorEnvelope:(FlutterError*)error; + +/** + * Deccodes the specified result envelope from binary. + * + * @param envelope The error object. + * @return The result value, if the envelope represented a successful result, + * or a `FlutterError` instance, if not. + */ +- (id _Nullable)decodeEnvelope:(NSData*)envelope; +@end + +/** + * A `FlutterMethodCodec` using UTF-8 encoded JSON method calls and result + * envelopes. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMethodCodec](https://api.flutter.dev/flutter/services/JSONMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as methods arguments and result payloads are + * those supported as top-level or leaf values by `FlutterJSONMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMethodCodec : NSObject +@end + +/** + * A `FlutterMethodCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMethodCodec](https://api.flutter.dev/flutter/services/StandardMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as method arguments and result payloads are those supported by + * `FlutterStandardMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMethodCodec : NSObject +/** + * Create a `FlutterStandardMethodCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCODECS_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h new file mode 100644 index 0000000..2878a1d --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h @@ -0,0 +1,103 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERDARTPROJECT_H_ +#define FLUTTER_FLUTTERDARTPROJECT_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A set of Flutter and Dart assets used by a `FlutterEngine` to initialize execution. + * + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterDartProject : NSObject + +/** + * Initializes a Flutter Dart project from a bundle. + * + * The bundle must either contain a flutter_assets resource directory, or set the Info.plist key + * FLTAssetsPath to override that name (if you are doing a custom build using a different name). + * + * @param bundle The bundle containing the Flutter assets directory. If nil, the App framework + * created by Flutter will be used. + */ +- (instancetype)initWithPrecompiledDartBundle:(nullable NSBundle*)bundle NS_DESIGNATED_INITIALIZER; +/** + * Unavailable - use `init` instead. + */ +- (instancetype)initFromDefaultSourceForConfiguration API_UNAVAILABLE(macos) + FLUTTER_UNAVAILABLE("Use -init instead."); + +/** + * Returns the default identifier for the bundle where we expect to find the Flutter Dart + * application. + */ ++ (NSString*)defaultBundleIdentifier; + +/** + * An NSArray of NSStrings to be passed as command line arguments to the Dart entrypoint. + * + * If this is not explicitly set, this will default to the contents of + * [NSProcessInfo arguments], without the binary name. + * + * Set this to nil to pass no arguments to the Dart entrypoint. + */ +@property(nonatomic, nullable, copy) + NSArray* dartEntrypointArguments API_UNAVAILABLE(ios); + +/** + * Returns the file name for the given asset. If the bundle with the identifier + * "io.flutter.flutter.app" exists, it will try use that bundle; otherwise, it + * will use the main bundle. To specify a different bundle, use + * `+lookupKeyForAsset:fromBundle`. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the supplied bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param bundle The `NSBundle` to use for looking up the asset. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromBundle:(nullable NSBundle*)bundle; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the specified bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @param bundle The bundle to use when doing the lookup. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset + fromPackage:(NSString*)package + fromBundle:(nullable NSBundle*)bundle; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h new file mode 100644 index 0000000..caf2b3d --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h @@ -0,0 +1,460 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERENGINE_H_ +#define FLUTTER_FLUTTERENGINE_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +@class FlutterViewController; + +NS_ASSUME_NONNULL_BEGIN + +/** + * The dart entrypoint that is associated with `main()`. This is to be used as an argument to the + * `runWithEntrypoint*` methods. + */ +extern NSString* const FlutterDefaultDartEntrypoint; + +/** + * The default Flutter initial route ("/"). + */ +extern NSString* const FlutterDefaultInitialRoute; + +/** + * The FlutterEngine class coordinates a single instance of execution for a + * `FlutterDartProject`. It may have zero or one `FlutterViewController` at a + * time, which can be specified via `-setViewController:`. + * `FlutterViewController`'s `initWithEngine` initializer will automatically call + * `-setViewController:` for itself. + * + * A FlutterEngine can be created independently of a `FlutterViewController` for + * headless execution. It can also persist across the lifespan of multiple + * `FlutterViewController` instances to maintain state and/or asynchronous tasks + * (such as downloading a large file). + * + * A FlutterEngine can also be used to prewarm the Dart execution environment and reduce the + * latency of showing the Flutter screen when a `FlutterViewController` is created and presented. + * See http://flutter.dev/docs/development/add-to-app/performance for more details on loading + * performance. + * + * Alternatively, you can simply create a new `FlutterViewController` with only a + * `FlutterDartProject`. That `FlutterViewController` will internally manage its + * own instance of a FlutterEngine, but will not guarantee survival of the engine + * beyond the life of the ViewController. + * + * A newly initialized FlutterEngine will not actually run a Dart Isolate until + * either `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is invoked. + * One of these methods must be invoked before calling `-setViewController:`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngine : NSObject + +/** + * Default initializer for a FlutterEngine. + * + * Threads created by this FlutterEngine will appear as "FlutterEngine #" in + * Instruments. The prefix can be customized using `initWithName`. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + */ +- (instancetype)init; + +/** + * Initialize this FlutterEngine. + * + * The engine will execute the project located in the bundle with the identifier + * "io.flutter.flutter.app" (the default for Flutter projects). + * + * A newly initialized engine will not run until either `-runWithEntrypoint:` or + * `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + */ +- (instancetype)initWithName:(NSString*)labelPrefix; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * FlutterEngine created with this method will have allowHeadlessExecution set to `YES`. + * This means that the engine will continue to run regardless of whether a `FlutterViewController` + * is attached to it or not, until `-destroyContext:` is called or the process finishes. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(nullable FlutterDartProject*)project; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterEngine with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate + * the project in a default location (the flutter_assets folder in the iOS application + * bundle). + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances, and is used in instrumentation to label + * the threads used by this FlutterEngine. + * @param project The `FlutterDartProject` to run. + * @param allowHeadlessExecution Whether or not to allow this instance to continue + * running after passing a nil `FlutterViewController` to `-setViewController:`. + * @param restorationEnabled Whether state restoration is enabled. When true, the framework will + * wait for the attached view controller to provide restoration data. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using `main()` as the entrypoint (the default for Flutter projects), + * and using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)run; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`), using "/" (the default route) as the initial route. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil) it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`). + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or + * nil), it will default to `main()`. If it is not the app's main() function, that function must + * be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart + * compiler. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param uri The URI of the Dart library which contains the entrypoint method + * (example "package:foo_package/main.dart"). If nil, this will default to + * the same library as the `main()` function in the Dart program. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint libraryURI:(nullable NSString*)uri; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Runs a Dart program on an Isolate using the specified entrypoint and Dart library, + * which may not be the same as the library containing the Dart program's `main()` function. + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately and have no effect. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint + * method (example "package:foo_package/main.dart"). If nil, this will + * default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * @param entrypointArgs Arguments passed as a list of string to Dart's entrypoint function. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute + entrypointArgs:(nullable NSArray*)entrypointArgs; + +/** + * Destroy running context for an engine. + * + * This method can be used to force the FlutterEngine object to release all resources. + * After sending this message, the object will be in an unusable state until it is deallocated. + * Accessing properties or sending messages to it will result in undefined behavior or runtime + * errors. + */ +- (void)destroyContext; + +/** + * Ensures that Flutter will generate a semantics tree. + * + * This is enabled by default if certain accessibility services are turned on by + * the user, or when using a Simulator. This method allows a user to turn + * semantics on when they would not ordinarily be generated and the performance + * overhead is not a concern, e.g. for UI testing. Note that semantics should + * never be programmatically turned off, as it would potentially disable + * accessibility services an end user has requested. + * + * This method must only be called after launching the engine via + * `-runWithEntrypoint:` or `-runWithEntryPoint:libraryURI`. + * + * Although this method returns synchronously, it does not guarantee that a + * semantics tree is actually available when the method returns. It + * synchronously ensures that the next frame the Flutter framework creates will + * have a semantics tree. + * + * You can subscribe to semantics updates via `NSNotificationCenter` by adding + * an observer for the name `FlutterSemanticsUpdateNotification`. The `object` + * parameter will be the `FlutterViewController` associated with the semantics + * update. This will asynchronously fire after a semantics tree has actually + * built (which may be some time after the frame has been rendered). + */ +- (void)ensureSemanticsEnabled; + +/** + * Sets the `FlutterViewController` for this instance. The FlutterEngine must be + * running (e.g. a successful call to `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI`) + * before calling this method. Callers may pass nil to remove the viewController + * and have the engine run headless in the current process. + * + * A FlutterEngine can only have one `FlutterViewController` at a time. If there is + * already a `FlutterViewController` associated with this instance, this method will replace + * the engine's current viewController with the newly specified one. + * + * Setting the viewController will signal the engine to start animations and drawing, and unsetting + * it will signal the engine to stop animations and drawing. However, neither will impact the state + * of the Dart program's execution. + */ +@property(nonatomic, weak) FlutterViewController* viewController; + +/** + * The `FlutterMethodChannel` used for localization related platform messages, such as + * setting the locale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly, nullable) FlutterMethodChannel* localizationChannel; +/** + * The `FlutterMethodChannel` used for navigation related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Navigation + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/navigation-constant.html) + * @see [Navigator Widget](https://api.flutter.dev/flutter/widgets/Navigator-class.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* navigationChannel; + +/** + * The `FlutterMethodChannel` used for restoration related platform messages. + * + * Can be nil after `destroyContext` is called. + * + * @see [Restoration + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/restoration-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* restorationChannel; + +/** + * The `FlutterMethodChannel` used for core platform messages, such as + * information about the screen orientation. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterMethodChannel* platformChannel; + +/** + * The `FlutterMethodChannel` used to communicate text input events to the + * Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Text Input + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/textInput-constant.html) + */ +@property(nonatomic, readonly) FlutterMethodChannel* textInputChannel; + +/** + * The `FlutterBasicMessageChannel` used to communicate app lifecycle events + * to the Dart Isolate. + * + * Can be nil after `destroyContext` is called. + * + * @see [Lifecycle + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/lifecycle-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* lifecycleChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating system events, such as + * memory pressure events. + * + * Can be nil after `destroyContext` is called. + * + * @see [System + * Channel](https://api.flutter.dev/flutter/services/SystemChannels/system-constant.html) + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* systemChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating user settings such as + * clock format and text scale. + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* settingsChannel; + +/** + * The `FlutterBasicMessageChannel` used for communicating key events + * from physical keyboards + * + * Can be nil after `destroyContext` is called. + */ +@property(nonatomic, readonly) FlutterBasicMessageChannel* keyEventChannel; + +/** + * The depcreated `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) + NSURL* observatoryUrl FLUTTER_DEPRECATED("Use vmServiceUrl instead"); + +/** + * The `NSURL` of the Dart VM Service for the service isolate. + * + * This is only set in debug and profile runtime modes, and only after the + * Dart VM Service is ready. In release mode or before the Dart VM Service has + * started, it returns `nil`. + */ +@property(nonatomic, readonly, nullable) NSURL* vmServiceUrl; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterEngine (used for communicating with + * channels). + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * The `FlutterTextureRegistry` associated with this FlutterEngine (used to register textures). + */ +@property(nonatomic, readonly) NSObject* textureRegistry; + +/** + * The UI Isolate ID of the engine. + * + * This property will be nil if the engine is not running. + */ +@property(nonatomic, readonly, copy, nullable) NSString* isolateId; + +/** + * Whether or not GPU calls are allowed. + * + * Typically this is set when the app is backgrounded and foregrounded. + */ +@property(nonatomic, assign) BOOL isGpuDisabled; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERENGINE_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h new file mode 100644 index 0000000..097ffd6 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h @@ -0,0 +1,110 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterEngine.h" + +NS_ASSUME_NONNULL_BEGIN + +/** Options that control how a FlutterEngine should be created. */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroupOptions : NSObject + +/** + * The name of a top-level function from a Dart library. If this is FlutterDefaultDartEntrypoint + * (or nil); this will default to `main()`. If it is not the app's main() function, that function + * must be decorated with `@pragma(vm:entry-point)` to ensure themethod is not tree-shaken by the + * Dart compiler. + */ +@property(nonatomic, copy, nullable) NSString* entrypoint; + +/** + * The URI of the Dart library which contains the entrypoint method. If nil, this will default to + * the same library as the `main()` function in the Dart program. + */ +@property(nonatomic, copy, nullable) NSString* libraryURI; + +/** + * The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + */ +@property(nonatomic, copy, nullable) NSString* initialRoute; + +/** + * Arguments passed as a list of string to Dart's entrypoint function. + */ +@property(nonatomic, retain, nullable) NSArray* entrypointArgs; +@end + +/** + * Represents a collection of FlutterEngines who share resources which allows + * them to be created with less time const and occupy less memory than just + * creating multiple FlutterEngines. + * + * Deleting a FlutterEngineGroup doesn't invalidate existing FlutterEngines, but + * it eliminates the possibility to create more FlutterEngines in that group. + * + * @warning This class is a work-in-progress and may change. + * @see https://github.com/flutter/flutter/issues/72009 + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngineGroup : NSObject +- (instancetype)init NS_UNAVAILABLE; + +/** + * Initialize a new FlutterEngineGroup. + * + * @param name The name that will present in the threads shared across the + * engines in this group. + * @param project The `FlutterDartProject` that all FlutterEngines in this group + * will be executing. + */ +- (instancetype)initWithName:(NSString*)name + project:(nullable FlutterDartProject*)project NS_DESIGNATED_INITIALIZER; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param entrypoint The name of a top-level function from a Dart library. If this is + * FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's + * main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the + * method is not tree-shaken by the Dart compiler. + * @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil, + * this will default to the same library as the `main()` function in the Dart program. + * @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is + * FlutterDefaultInitialRoute (or nil), it will default to the "/" route. + * + * @see FlutterEngineGroup + */ +- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint + libraryURI:(nullable NSString*)libraryURI + initialRoute:(nullable NSString*)initialRoute; + +/** + * Creates a running `FlutterEngine` that shares components with this group. + * + * @param options Options that control how a FlutterEngine should be created. + * + * @see FlutterEngineGroupOptions + */ +- (FlutterEngine*)makeEngineWithOptions:(nullable FlutterEngineGroupOptions*)options; +@end + +NS_ASSUME_NONNULL_END diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h new file mode 100644 index 0000000..bc58dd8 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h @@ -0,0 +1,97 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ +#define FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ + +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" + +/** + * A callback for when FlutterHeadlessDartRunner has attempted to start a Dart + * Isolate in the background. + * + * @param success YES if the Isolate was started and run successfully, NO + * otherwise. + */ +typedef void (^FlutterHeadlessDartRunnerCallback)(BOOL success); + +/** + * The deprecated FlutterHeadlessDartRunner runs Flutter Dart code with a null rasterizer, + * and no native drawing surface. It is appropriate for use in running Dart + * code e.g. in the background from a plugin. + * + * Most callers should prefer using `FlutterEngine` directly; this interface exists + * for legacy support. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_DEPRECATED("FlutterEngine should be used rather than FlutterHeadlessDartRunner") +@interface FlutterHeadlessDartRunner : FlutterEngine + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + */ +- (instancetype)initWithName:(NSString*)labelPrefix project:(FlutterDartProject*)projectOrNil; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution; + +/** + * Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`. + * + * If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate + * the project in a default location. + * + * A newly initialized engine will not run the `FlutterDartProject` until either + * `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called. + * + * @param labelPrefix The label prefix used to identify threads for this instance. Should + * be unique across FlutterEngine instances + * @param projectOrNil The `FlutterDartProject` to run. + * @param allowHeadlessExecution Must be set to `YES`. + * @param restorationEnabled Must be set to `NO`. + */ +- (instancetype)initWithName:(NSString*)labelPrefix + project:(FlutterDartProject*)projectOrNil + allowHeadlessExecution:(BOOL)allowHeadlessExecution + restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER; + +/** + * Not recommended for use - will initialize with a default label ("io.flutter.headless") + * and the default FlutterDartProject. + */ +- (instancetype)init; + +@end + +#endif // FLUTTER_FLUTTERHEADLESSDARTRUNNER_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h new file mode 100644 index 0000000..da99e10 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h @@ -0,0 +1,48 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERMACROS_H_ +#define FLUTTER_FLUTTERMACROS_H_ + +#if defined(FLUTTER_FRAMEWORK) + +#define FLUTTER_DARWIN_EXPORT __attribute__((visibility("default"))) + +#else // defined(FLUTTER_SDK) + +#define FLUTTER_DARWIN_EXPORT + +#endif // defined(FLUTTER_SDK) + +#ifndef NS_ASSUME_NONNULL_BEGIN +#define NS_ASSUME_NONNULL_BEGIN _Pragma("clang assume_nonnull begin") +#define NS_ASSUME_NONNULL_END _Pragma("clang assume_nonnull end") +#endif // defined(NS_ASSUME_NONNULL_BEGIN) + +/** + * Indicates that the API has been deprecated for the specified reason. Code + * that uses the deprecated API will continue to work as before. However, the + * API will soon become unavailable and users are encouraged to immediately take + * the appropriate action mentioned in the deprecation message and the BREAKING + * CHANGES section present in the Flutter.h umbrella header. + */ +#define FLUTTER_DEPRECATED(msg) __attribute__((__deprecated__(msg))) + +/** + * Indicates that the previously deprecated API is now unavailable. Code that + * uses the API will not work and the declaration of the API is only a stub + * meant to display the given message detailing the actions for the user to take + * immediately. + */ +#define FLUTTER_UNAVAILABLE(msg) __attribute__((__unavailable__(msg))) + +#if __has_feature(objc_arc) +#define FLUTTER_ASSERT_ARC +#define FLUTTER_ASSERT_NOT_ARC #error ARC must be disabled ! +#else +#define FLUTTER_ASSERT_ARC #error ARC must be enabled ! +#define FLUTTER_ASSERT_NOT_ARC +#endif + +#endif // FLUTTER_FLUTTERMACROS_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h new file mode 100644 index 0000000..18a5709 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h @@ -0,0 +1,56 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLATFORMVIEWS_H_ +#define FLUTTER_FLUTTERPLATFORMVIEWS_H_ + +#import + +#import "FlutterCodecs.h" +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Wraps a `UIView` for embedding in the Flutter hierarchy + */ +@protocol FlutterPlatformView +/** + * Returns a reference to the `UIView` that is wrapped by this `FlutterPlatformView`. + */ +- (UIView*)view; +@end + +FLUTTER_DARWIN_EXPORT +@protocol FlutterPlatformViewFactory +/** + * Create a `FlutterPlatformView`. + * + * Implemented by iOS code that expose a `UIView` for embedding in a Flutter app. + * + * The implementation of this method should create a new `UIView` and return it. + * + * @param frame The rectangle for the newly created `UIView` measured in points. + * @param viewId A unique identifier for this `UIView`. + * @param args Parameters for creating the `UIView` sent from the Dart side of the Flutter app. + * If `createArgsCodec` is not implemented, or if no creation arguments were sent from the Dart + * code, this will be null. Otherwise this will be the value sent from the Dart code as decoded by + * `createArgsCodec`. + */ +- (NSObject*)createWithFrame:(CGRect)frame + viewIdentifier:(int64_t)viewId + arguments:(id _Nullable)args; + +/** + * Returns the `FlutterMessageCodec` for decoding the args parameter of `createWithFrame`. + * + * Only needs to be implemented if `createWithFrame` needs an arguments parameter. + */ +@optional +- (NSObject*)createArgsCodec; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLATFORMVIEWS_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h new file mode 100644 index 0000000..b270414 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h @@ -0,0 +1,445 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGIN_H_ +#define FLUTTER_FLUTTERPLUGIN_H_ + +#import +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterPlatformViews.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN +@protocol FlutterPluginRegistrar; +@protocol FlutterPluginRegistry; + +#pragma mark - +/** + * Protocol for listener of events from the UIApplication, typically a FlutterPlugin. + */ +@protocol FlutterApplicationLifeCycleDelegate + +@optional +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if this vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidBecomeActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillResignActive:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationDidEnterBackground:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillEnterForeground:(UIApplication*)application; + +/** + Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)applicationWillTerminate:(UIApplication*)application; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Called if this has been registered for `UIApplicationDelegate` callbacks. + * + * @return `YES` if this handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +#pragma mark - +/** + * A plugin registration callback. + * + * Used for registering plugins with additional instances of + * `FlutterPluginRegistry`. + * + * @param registry The registry to register plugins with. + */ +typedef void (*FlutterPluginRegistrantCallback)(NSObject* registry); + +#pragma mark - +/** + * Implemented by the iOS part of a Flutter plugin. + * + * Defines a set of optional callback methods and a method to set up the plugin + * and register it to be called by other application components. + */ +@protocol FlutterPlugin +@required +/** + * Registers this plugin using the context information and callback registration + * methods exposed by the given registrar. + * + * The registrar is obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + * + * The caller of this method, a plugin registrant, is usually autogenerated by + * Flutter tooling based on declared plugin dependencies. The generated registrant + * asks the registry for a registrar for each plugin, and calls this method to + * allow the plugin to initialize itself and register callbacks with application + * objects available through the registrar protocol. + * + * @param registrar A helper providing application context and methods for + * registering callbacks. + */ ++ (void)registerWithRegistrar:(NSObject*)registrar; +@optional +/** + * Set a callback for registering plugins to an additional `FlutterPluginRegistry`, + * including headless `FlutterEngine` instances. + * + * This method is typically called from within an application's `AppDelegate` at + * startup to allow for plugins which create additional `FlutterEngine` instances + * to register the application's plugins. + * + * @param callback A callback for registering some set of plugins with a + * `FlutterPluginRegistry`. + */ ++ (void)setPluginRegistrantCallback:(FlutterPluginRegistrantCallback)callback; +@optional +/** + * Called if this plugin has been registered to receive `FlutterMethodCall`s. + * + * @param call The method call command object. + * @param result A callback for submitting the result of the call. + */ +- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result; +@optional +/** + * Called when a plugin is being removed from a `FlutterEngine`, which is + * usually the result of the `FlutterEngine` being deallocated. This method + * provides the opportunity to do necessary cleanup. + * + * You will only receive this method if you registered your plugin instance with + * the `FlutterEngine` via `-[FlutterPluginRegistry publish:]`. + * + * @param registrar The registrar that was used to publish the plugin. + * + */ +- (void)detachFromEngineForRegistrar:(NSObject*)registrar; +@end + +#pragma mark - +/** + * How the UIGestureRecognizers of a platform view are blocked. + * + * UIGestureRecognizers of platform views can be blocked based on decisions made by the + * Flutter Framework (e.g. When an interact-able widget is covering the platform view). + */ +typedef enum { + /** + * Flutter blocks all the UIGestureRecognizers on the platform view as soon as it + * decides they should be blocked. + * + * With this policy, only the `touchesBegan` method for all the UIGestureRecognizers is guaranteed + * to be called. + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyEager, + /** + * Flutter blocks the platform view's UIGestureRecognizers from recognizing only after + * touchesEnded was invoked. + * + * This results in the platform view's UIGestureRecognizers seeing the entire touch sequence, + * but never recognizing the gesture (and never invoking actions). + */ + FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded, +} FlutterPlatformViewGestureRecognizersBlockingPolicy; + +#pragma mark - +/** + * Registration context for a single `FlutterPlugin`, providing a one stop shop + * for the plugin to access contextual information and register callbacks for + * various application events. + * + * Registrars are obtained from a `FlutterPluginRegistry` which keeps track of + * the identity of registered plugins and provides basic support for cross-plugin + * coordination. + */ +@protocol FlutterPluginRegistrar +/** + * Returns a `FlutterBinaryMessenger` for creating Dart/iOS communication + * channels to be used by the plugin. + * + * @return The messenger. + */ +- (NSObject*)messenger; + +/** + * Returns a `FlutterTextureRegistry` for registering textures + * provided by the plugin. + * + * @return The texture registry. + */ +- (NSObject*)textures; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins expose `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins can expose a `UIView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `UIView` by the registered factory. + * @param gestureRecognizersBlockingPolicy How UIGestureRecognizers on the platform views are + * blocked. + * + */ +- (void)registerViewFactory:(NSObject*)factory + withId:(NSString*)factoryId + gestureRecognizersBlockingPolicy: + (FlutterPlatformViewGestureRecognizersBlockingPolicy)gestureRecognizersBlockingPolicy; + +/** + * Publishes a value for external use of the plugin. + * + * Plugins may publish a single value, such as an instance of the + * plugin's main class, for situations where external control or + * interaction is needed. + * + * The published value will be available from the `FlutterPluginRegistry`. + * Repeated calls overwrite any previous publication. + * + * @param value The value to be published. + */ +- (void)publish:(NSObject*)value; + +/** + * Registers the plugin as a receiver of incoming method calls from the Dart side + * on the specified `FlutterMethodChannel`. + * + * @param delegate The receiving object, such as the plugin's main class. + * @param channel The channel + */ +- (void)addMethodCallDelegate:(NSObject*)delegate + channel:(FlutterMethodChannel*)channel; + +/** + * Registers the plugin as a receiver of `UIApplicationDelegate` calls. + * + * @param delegate The receiving object, such as the plugin's main class. + */ +- (void)addApplicationDelegate:(NSObject*)delegate; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; +@end + +#pragma mark - +/** + * A registry of Flutter iOS plugins. + * + * Plugins are identified by unique string keys, typically the name of the + * plugin's main class. The registry tracks plugins by this key, mapping it to + * a value published by the plugin during registration, if any. This provides a + * very basic means of cross-plugin coordination with loose coupling between + * unrelated plugins. + * + * Plugins typically need contextual information and the ability to register + * callbacks for various application events. To keep the API of the registry + * focused, these facilities are not provided directly by the registry, but by + * a `FlutterPluginRegistrar`, created by the registry in exchange for the unique + * key of the plugin. + * + * There is no implied connection between the registry and the registrar. + * Specifically, callbacks registered by the plugin via the registrar may be + * relayed directly to the underlying iOS application objects. + */ +@protocol FlutterPluginRegistry +/** + * Returns a registrar for registering a plugin. + * + * @param pluginKey The unique key identifying the plugin. + */ +- (nullable NSObject*)registrarForPlugin:(NSString*)pluginKey; +/** + * Returns whether the specified plugin has been registered. + * + * @param pluginKey The unique key identifying the plugin. + * @return `YES` if `registrarForPlugin` has been called with `pluginKey`. + */ +- (BOOL)hasPlugin:(NSString*)pluginKey; + +/** + * Returns a value published by the specified plugin. + * + * @param pluginKey The unique key identifying the plugin. + * @return An object published by the plugin, if any. Will be `NSNull` if + * nothing has been published. Will be `nil` if the plugin has not been + * registered. + */ +- (nullable NSObject*)valuePublishedByPlugin:(NSString*)pluginKey; +@end + +#pragma mark - +/** + * Implement this in the `UIAppDelegate` of your app to enable Flutter plugins to register + * themselves to the application life cycle events. + * + * For plugins to receive events from `UNUserNotificationCenter`, register this as the + * `UNUserNotificationCenterDelegate`. + */ +@protocol FlutterAppLifeCycleProvider + +/** + * Called when registering a new `FlutterApplicaitonLifeCycleDelegate`. + * + * See also: `-[FlutterAppDelegate addApplicationLifeCycleDelegate:]` + */ +- (void)addApplicationLifeCycleDelegate:(NSObject*)delegate; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGIN_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h new file mode 100644 index 0000000..ba317f4 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h @@ -0,0 +1,148 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ +#define FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ + +#import "FlutterPlugin.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Propagates `UIAppDelegate` callbacks to registered plugins. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterPluginAppLifeCycleDelegate : NSObject + +/** + * Registers `delegate` to receive life cycle callbacks via this FlutterPluginAppLifeCycleDelegate + * as long as it is alive. + * + * `delegate` will only be referenced weakly. + */ +- (void)addDelegate:(NSObject*)delegate; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + didFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + * + * @return `NO` if any plugin vetos application launch. + */ +- (BOOL)application:(UIApplication*)application + willFinishLaunchingWithOptions:(NSDictionary*)launchOptions; + +/** + * Called if this plugin has been registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings + API_DEPRECATED( + "See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation", + ios(8.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didFailToRegisterForRemoteNotificationsWithError:(NSError*)error; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveRemoteNotification:(NSDictionary*)userInfo + fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + didReceiveLocalNotification:(UILocalNotification*)notification + API_DEPRECATED( + "See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation", + ios(4.0, 10.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + options:(NSDictionary*)options; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + openURL:(NSURL*)url + sourceApplication:(NSString*)sourceApplication + annotation:(id)annotation; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks. + */ +- (void)application:(UIApplication*)application + performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem + completionHandler:(void (^)(BOOL succeeded))completionHandler + API_AVAILABLE(ios(9.0)); + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + handleEventsForBackgroundURLSession:(nonnull NSString*)identifier + completionHandler:(nonnull void (^)(void))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @returns `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; + +/** + * Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until + * some plugin handles the request. + * + * @return `YES` if any plugin handles the request. + */ +- (BOOL)application:(UIApplication*)application + continueUserActivity:(NSUserActivity*)userActivity + restorationHandler:(void (^)(NSArray*))restorationHandler; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h new file mode 100644 index 0000000..59d2ced --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h @@ -0,0 +1,62 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERTEXTURE_H_ +#define FLUTTER_FLUTTERTEXTURE_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +FLUTTER_DARWIN_EXPORT +/** + * Represents a texture that can be shared with Flutter. + * + * See also: https://github.com/flutter/plugins/tree/master/packages/camera + */ +@protocol FlutterTexture +/** Copy the contents of the texture into a `CVPixelBuffer`. */ +- (CVPixelBufferRef _Nullable)copyPixelBuffer; + +/** + * Called when the texture is unregistered. + * + * Called on the raster thread. + */ +@optional +- (void)onTextureUnregistered:(NSObject*)texture; +@end + +FLUTTER_DARWIN_EXPORT +/** + * A collection of registered `FlutterTexture`'s. + */ +@protocol FlutterTextureRegistry +/** + * Registers a `FlutterTexture` for usage in Flutter and returns an id that can be used to reference + * that texture when calling into Flutter with channels. Textures must be registered on the + * platform thread. On success returns the pointer to the registered texture, else returns 0. + */ +- (int64_t)registerTexture:(NSObject*)texture; +/** + * Notifies Flutter that the content of the previously registered texture has been updated. + * + * This will trigger a call to `-[FlutterTexture copyPixelBuffer]` on the raster thread. + */ +- (void)textureFrameAvailable:(int64_t)textureId; +/** + * Unregisters a `FlutterTexture` that has previously regeistered with `registerTexture:`. Textures + * must be unregistered on the platform thread. + * + * @param textureId The result that was previously returned from `registerTexture:`. + */ +- (void)unregisterTexture:(int64_t)textureId; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERTEXTURE_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h new file mode 100644 index 0000000..d33d989 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h @@ -0,0 +1,259 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERVIEWCONTROLLER_H_ +#define FLUTTER_FLUTTERVIEWCONTROLLER_H_ + +#import +#include + +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" +#import "FlutterPlugin.h" +#import "FlutterTexture.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FlutterEngine; + +/** + * The name used for semantic update notifications via `NSNotificationCenter`. + * + * The object passed as the sender is the `FlutterViewController` associated + * with the update. + */ +FLUTTER_DARWIN_EXPORT +extern NSNotificationName const FlutterSemanticsUpdateNotification; + +/** + * A `UIViewController` implementation for Flutter views. + * + * Dart execution, channel communication, texture registration, and plugin registration are all + * handled by `FlutterEngine`. Calls on this class to those members all proxy through to the + * `FlutterEngine` attached FlutterViewController. + * + * A FlutterViewController can be initialized either with an already-running `FlutterEngine` via the + * `initWithEngine:` initializer, or it can be initialized with a `FlutterDartProject` that will be + * used to implicitly spin up a new `FlutterEngine`. Creating a `FlutterEngine` before showing a + * FlutterViewController can be used to pre-initialize the Dart VM and to prepare the isolate in + * order to reduce the latency to the first rendered frame. See + * https://flutter.dev/docs/development/add-to-app/performance for more details on loading + * latency. + * + * Holding a `FlutterEngine` independently of FlutterViewControllers can also be used to not to lose + * Dart-related state and asynchronous tasks when navigating back and forth between a + * FlutterViewController and other `UIViewController`s. + */ +FLUTTER_DARWIN_EXPORT +#ifdef __IPHONE_13_4 +@interface FlutterViewController + : UIViewController +#else +@interface FlutterViewController : UIViewController +#endif + +/** + * Initializes this FlutterViewController with the specified `FlutterEngine`. + * + * The initialized viewcontroller will attach itself to the engine as part of this process. + * + * @param engine The `FlutterEngine` instance to attach to. Cannot be nil. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithEngine:(FlutterEngine*)engine + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializes a new FlutterViewController and `FlutterEngine` with the specified + * `FlutterDartProject` and `initialRoute`. + * + * This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property + * after initialization. + * + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param initialRoute The initial `Navigator` route to load. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. + */ +- (instancetype)initWithProject:(nullable FlutterDartProject*)project + initialRoute:(nullable NSString*)initialRoute + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Initializer that is called from loading a FlutterViewController from a XIB. + * + * See also: + * https://developer.apple.com/documentation/foundation/nscoding/1416145-initwithcoder?language=objc + */ +- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_DESIGNATED_INITIALIZER; + +/** + * Registers a callback that will be invoked when the Flutter view has been rendered. + * The callback will be fired only once. + * + * Replaces an existing callback. Use a `nil` callback to unregister the existing one. + */ +- (void)setFlutterViewDidRenderCallback:(void (^)(void))callback; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified + * package. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return The file name to be used for lookup in the main bundle. + */ +- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Deprecated API to set initial route. + * + * Attempts to set the first route that the Flutter app shows if the Flutter + * runtime hasn't yet started. The default is "/". + * + * This method must be called immediately after `initWithProject` and has no + * effect when using `initWithEngine` if the `FlutterEngine` has already been + * run. + * + * Setting this after the Flutter started running has no effect. See `pushRoute` + * and `popRoute` to change the route after Flutter started running. + * + * This is deprecated because it needs to be called at the time of initialization + * and thus should just be in the `initWithProject` initializer. If using + * `initWithEngine`, the initial route should be set on the engine's + * initializer. + * + * @param route The name of the first route to show. + */ +- (void)setInitialRoute:(NSString*)route + FLUTTER_DEPRECATED("Use FlutterViewController initializer to specify initial route"); + +/** + * Instructs the Flutter Navigator (if any) to go back. + */ +- (void)popRoute; + +/** + * Instructs the Flutter Navigator (if any) to push a route on to the navigation + * stack. + * + * @param route The name of the route to push to the navigation stack. + */ +- (void)pushRoute:(NSString*)route; + +/** + * The `FlutterPluginRegistry` used by this FlutterViewController. + */ +- (id)pluginRegistry; + +/** + * A wrapper around UIAccessibilityIsVoiceOverRunning(). + * + * As a C function, UIAccessibilityIsVoiceOverRunning() cannot be mocked in testing. Mock + * this class method to testing features depends on UIAccessibilityIsVoiceOverRunning(). + */ ++ (BOOL)isUIAccessibilityIsVoiceOverRunning; + +/** + * True if at least one frame has rendered and the ViewController has appeared. + * + * This property is reset to false when the ViewController disappears. It is + * guaranteed to only alternate between true and false for observers. + */ +@property(nonatomic, readonly, getter=isDisplayingFlutterUI) BOOL displayingFlutterUI; + +/** + * Specifies the view to use as a splash screen. Flutter's rendering is asynchronous, so the first + * frame rendered by the Flutter application might not immediately appear when the Flutter view is + * initially placed in the view hierarchy. The splash screen view will be used as + * a replacement until the first frame is rendered. + * + * The view used should be appropriate for multiple sizes; an autoresizing mask to + * have a flexible width and height will be applied automatically. + * + * Set to nil to remove the splash screen view. + */ +@property(strong, nonatomic, nullable) UIView* splashScreenView; + +/** + * Attempts to set the `splashScreenView` property from the `UILaunchStoryboardName` from the + * main bundle's `Info.plist` file. This method will not change the value of `splashScreenView` + * if it cannot find a default one from a storyboard or nib. + * + * @return `YES` if successful, `NO` otherwise. + */ +- (BOOL)loadDefaultSplashScreenView; + +/** + * Controls whether the created view will be opaque or not. + * + * Default is `YES`. Note that setting this to `NO` may negatively impact performance + * when using hardware acceleration, and toggling this will trigger a re-layout of the + * view. + */ +@property(nonatomic, getter=isViewOpaque) BOOL viewOpaque; + +/** + * The `FlutterEngine` instance for this view controller. This could be the engine this + * `FlutterViewController` is initialized with or a new `FlutterEngine` implicitly created if + * no engine was supplied during initialization. + */ +@property(weak, nonatomic, readonly) FlutterEngine* engine; + +/** + * The `FlutterBinaryMessenger` associated with this FlutterViewController (used for communicating + * with channels). + * + * This is just a convenient way to get the |FlutterEngine|'s binary messenger. + */ +@property(nonatomic, readonly) NSObject* binaryMessenger; + +/** + * If the `FlutterViewController` creates a `FlutterEngine`, this property + * determines if that `FlutterEngine` has `allowHeadlessExecution` set. + * + * The intention is that this is used with the XIB. Otherwise, a + * `FlutterEngine` can just be sent to the init methods. + * + * See also: `-[FlutterEngine initWithName:project:allowHeadlessExecution:]` + */ +@property(nonatomic, readonly) BOOL engineAllowHeadlessExecution; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERVIEWCONTROLLER_H_ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist new file mode 100644 index 0000000..6cdc70a --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Info.plist @@ -0,0 +1,30 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + Flutter + CFBundleIdentifier + io.flutter.flutter + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Flutter + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + FlutterEngine + b20183e04096094bcc37d9cde2a4b96f5cc684cf + ClangVersion + b'Fuchsia clang version 17.0.0 (https://llvm.googlesource.com/llvm-project 6d667d4b261e81f325756fdfd5bb43b3b3d2451d)' + + diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap new file mode 100644 index 0000000..bf81c8a --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Flutter { + umbrella header "Flutter.h" + + export * + module * { export * } +} diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..f0ba51c --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources @@ -0,0 +1,300 @@ + + + + + files + + Headers/Flutter.h + + Jfv2Vo3itUyjWGSxXIEV/9Skri8= + + Headers/FlutterAppDelegate.h + + QU3ZohDucENpee9k2C4s7Ovkwxw= + + Headers/FlutterBinaryMessenger.h + + Qj6OtkzORWI38PIdXyyJc+eribM= + + Headers/FlutterCallbackCache.h + + lTUaQzdBsC/YVTRn48+amlv1iw4= + + Headers/FlutterChannels.h + + bhEGVRctQGJxYtCb3asK0k4Iq74= + + Headers/FlutterCodecs.h + + 0hdw5jbuAAJJC64dk/bhma5HKIw= + + Headers/FlutterDartProject.h + + ONyPj3D2igT9nx6hVIYtVA5JFG0= + + Headers/FlutterEngine.h + + cupY3Xn8Bw2kFlGmh/gwYQCFMkU= + + Headers/FlutterEngineGroup.h + + nZcTgHGDD30QzPLlQfP8gP+S06o= + + Headers/FlutterHeadlessDartRunner.h + + XnDDN+yQj6qLXTuhI0tgTMDbtbI= + + Headers/FlutterMacros.h + + T2wuUnVU/0f9v8Mc7CGjJQWLdGU= + + Headers/FlutterPlatformViews.h + + JofRibXJB+HPxhe0SAphfoKFSTE= + + Headers/FlutterPlugin.h + + EPrA0Ggvn83vzoNUoJ1lETKIEGg= + + Headers/FlutterPluginAppLifeCycleDelegate.h + + eBwJo3E6jQLlhEPIm5a+XAUx3o0= + + Headers/FlutterTexture.h + + yBJovGku2dvjTDXp2km51wNc8yM= + + Headers/FlutterViewController.h + + 6nBSlZSj+EZbyrAd2cS7H0pF3bA= + + Info.plist + + 5EFZMHUgrzxWoGrIGrcxFp5fs3M= + + Modules/module.modulemap + + wJV5dCKEGl+FAtDc8wJJh/fvKXs= + + icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + + files2 + + Headers/Flutter.h + + hash2 + + uwm8JZgId56AcAI6HgoYvB86L3U5XLTdogukvzdieH0= + + + Headers/FlutterAppDelegate.h + + hash2 + + ZE5n3wyEphmq0NvXEk+TgX9+IH2WWIRdDoZj+8Zmu+E= + + + Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Headers/FlutterCallbackCache.h + + hash2 + + 1dNDb41OVcGRhdnQfLHPfpfNUSb9f9Dmg57Bqo4gJv0= + + + Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Headers/FlutterEngine.h + + hash2 + + nqtk8YLddo2rPiYBl7tgIviV+uOyWZO9Ey3zKZBCG2o= + + + Headers/FlutterEngineGroup.h + + hash2 + + I+878Ez9ZpVdAR2GOzKJKjaZ5m807AeAF++2pSMQss4= + + + Headers/FlutterHeadlessDartRunner.h + + hash2 + + sELlVsLARG1gBlPndKt24VxGVmBMgcXWeShflcVtZBQ= + + + Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Headers/FlutterPlatformViews.h + + hash2 + + c4TS8HplkxEc+09dBX5h+BZ+vkI9QJU/3ljud7WmdTM= + + + Headers/FlutterPlugin.h + + hash2 + + zRjDCQ3ULUe9Pf2BcmGjO5/rdI00/Siw5fnIQZsJjMI= + + + Headers/FlutterPluginAppLifeCycleDelegate.h + + hash2 + + yxMe4j+1eEByv8dhzIAxAdnDSnF01UZxK1q9r8DtR84= + + + Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Headers/FlutterViewController.h + + hash2 + + P0GsFW0zzP6Yi8y8zBx1bdWpXoBcaVpIbO3lgDBZoDY= + + + Modules/module.modulemap + + hash2 + + 0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs= + + + icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat new file mode 100644 index 0000000..62cfc0d Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Frameworks/Flutter.framework/icudtl.dat differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Info.plist b/Task1/build/ios/iphonesimulator/Runner.app/Info.plist new file mode 100644 index 0000000..82dea29 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Info.plist differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/PkgInfo b/Task1/build/ios/iphonesimulator/Runner.app/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/Task1/build/ios/iphonesimulator/Runner.app/Runner b/Task1/build/ios/iphonesimulator/Runner.app/Runner new file mode 100755 index 0000000..14f9100 Binary files /dev/null and b/Task1/build/ios/iphonesimulator/Runner.app/Runner differ diff --git a/Task1/build/ios/iphonesimulator/Runner.app/_CodeSignature/CodeResources b/Task1/build/ios/iphonesimulator/Runner.app/_CodeSignature/CodeResources new file mode 100644 index 0000000..5bdab1c --- /dev/null +++ b/Task1/build/ios/iphonesimulator/Runner.app/_CodeSignature/CodeResources @@ -0,0 +1,1173 @@ + + + + + files + + AppFrameworkInfo.plist + + TsHk0H1Eny0vQ4S4SNJAJsXRTig= + + AppIcon60x60@2x.png + + WBDcNG/0BUOtsKQgKYOLyuqAbAM= + + AppIcon76x76@2x~ipad.png + + Bqtil6RquU1Hfn8gu0IYARWvCIM= + + Assets.car + + fU8Tyoh0z9uLOv0OIKa8oiszDDA= + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + 28xWMBQ91UzszfdXY91SqhC7ecg= + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + U0x8EM0781fCPb62BbZIXKeDlZ4= + + Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib + + hMnf/VIyTGR2nRcoLS3JCfeGmDs= + + Base.lproj/Main.storyboardc/Info.plist + + MDrKFvFWroTb0+KEbQShBcoBvo4= + + Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib + + sPhzGA41FQRsyiQc9b/v8rCOPg8= + + Frameworks/App.framework/App + + TxypRhEA9uTMhgFuaX+d63C/Ugg= + + Frameworks/App.framework/Info.plist + + 85iaADE5tc/NukRC+KGdiZaZ0ZA= + + Frameworks/App.framework/_CodeSignature/CodeResources + + gHib48ww9JpS1fM2789JjkjY12w= + + Frameworks/App.framework/flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + Frameworks/App.framework/flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + Frameworks/App.framework/flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + Frameworks/App.framework/flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + Frameworks/App.framework/flutter_assets/assets/images/1.jpeg + + T4eHigGqCjppEMN5PZjXN63j2UE= + + Frameworks/App.framework/flutter_assets/assets/images/13.jpg + + xJdsU88dxzNUCrvQhUVJfA36vy8= + + Frameworks/App.framework/flutter_assets/assets/images/2.jpeg + + Kpr+ISskXOhd00somUarsLf8WL0= + + Frameworks/App.framework/flutter_assets/assets/images/3.jpeg + + d377rWShqdNs2Vg7Rxeo7aCMMLU= + + Frameworks/App.framework/flutter_assets/assets/images/4.jpeg + + eJYwOmsjrusGdvMKWb5xwlngYP0= + + Frameworks/App.framework/flutter_assets/assets/images/5.jpeg + + TT4rmr6kGvrgAnk8aSvOh+FM3g4= + + Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Frameworks/App.framework/flutter_assets/assets/images/beach.png + + HfyouspGEztalPd3FzMVoXZzLT8= + + Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg + + +XFVNZMeO2KIXnV8K5yRvsLbBKI= + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png + + be2kO6flRJYJDjjrTPvDWUHyy1E= + + Frameworks/App.framework/flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + Frameworks/App.framework/flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + Frameworks/App.framework/flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg + + KUZ1nT6qT6g9dc9k3mHtSaHzwp4= + + Frameworks/App.framework/flutter_assets/assets/images/h1.jpg + + SdjVzsZhFoZGiKoKhpnGgOlT5r8= + + Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg + + /cjCaNGdItMcCUGcXJ4j280zJ0E= + + Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg + + 0pCymnfRDUKYEPZArx+bdBtV+Lc= + + Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg + + 6FSCt2wBul/Up7S/kzNFuA5PJZw= + + Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg + + qh7CO4lBJQtqHco5RyTFMXQhzks= + + Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg + + 8dGP3fsV/whkk0xfs4837sWwC20= + + Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg + + XVN8jBEPFZ3u3bmJDnY2jgdm86c= + + Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg + + X76EqYI/EqeZxJUy8sMIgHiP6Ys= + + Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + Frameworks/App.framework/flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + Frameworks/App.framework/flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + Frameworks/App.framework/flutter_assets/assets/images/menubar.png + + +xTHaiVnUgCz3/80fHJSXQB+uxc= + + Frameworks/App.framework/flutter_assets/assets/images/mountain.png + + se8c/XNUOdzYckTeX/1zAqQmJSk= + + Frameworks/App.framework/flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg + + Xuy5rCeN0+S9GRfWpnU7FbyUenM= + + Frameworks/App.framework/flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Frameworks/App.framework/flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg + + lbQFbhthk6Q4yBzlisRJPRn9LmY= + + Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg + + 6to0LgPD/ciBT9tpY848Oqr4b5o= + + Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg + + GjV2FKCViife8mfluTBINMBgRas= + + Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Frameworks/App.framework/flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + Frameworks/App.framework/flutter_assets/assets/images/venice.jpg + + aZm0eWz2fCZxInaKk8MvsBMMx50= + + Frameworks/App.framework/flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + Frameworks/App.framework/flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + Frameworks/App.framework/flutter_assets/kernel_blob.bin + + 8lWs84oWU2hIOx3aMqz49h4NQ+0= + + Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag + + KL+7f3IYR/Y9WDlxxUeDmgGoluc= + + Frameworks/App.framework/flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + Frameworks/Flutter.framework/Flutter + + kFCVEP0Wt53m5uSsU5ZlBFkvtuI= + + Frameworks/Flutter.framework/Headers/Flutter.h + + Jfv2Vo3itUyjWGSxXIEV/9Skri8= + + Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h + + QU3ZohDucENpee9k2C4s7Ovkwxw= + + Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h + + Qj6OtkzORWI38PIdXyyJc+eribM= + + Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h + + lTUaQzdBsC/YVTRn48+amlv1iw4= + + Frameworks/Flutter.framework/Headers/FlutterChannels.h + + bhEGVRctQGJxYtCb3asK0k4Iq74= + + Frameworks/Flutter.framework/Headers/FlutterCodecs.h + + 0hdw5jbuAAJJC64dk/bhma5HKIw= + + Frameworks/Flutter.framework/Headers/FlutterDartProject.h + + ONyPj3D2igT9nx6hVIYtVA5JFG0= + + Frameworks/Flutter.framework/Headers/FlutterEngine.h + + cupY3Xn8Bw2kFlGmh/gwYQCFMkU= + + Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h + + nZcTgHGDD30QzPLlQfP8gP+S06o= + + Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h + + XnDDN+yQj6qLXTuhI0tgTMDbtbI= + + Frameworks/Flutter.framework/Headers/FlutterMacros.h + + T2wuUnVU/0f9v8Mc7CGjJQWLdGU= + + Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h + + JofRibXJB+HPxhe0SAphfoKFSTE= + + Frameworks/Flutter.framework/Headers/FlutterPlugin.h + + EPrA0Ggvn83vzoNUoJ1lETKIEGg= + + Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h + + eBwJo3E6jQLlhEPIm5a+XAUx3o0= + + Frameworks/Flutter.framework/Headers/FlutterTexture.h + + yBJovGku2dvjTDXp2km51wNc8yM= + + Frameworks/Flutter.framework/Headers/FlutterViewController.h + + 6nBSlZSj+EZbyrAd2cS7H0pF3bA= + + Frameworks/Flutter.framework/Info.plist + + 5EFZMHUgrzxWoGrIGrcxFp5fs3M= + + Frameworks/Flutter.framework/Modules/module.modulemap + + wJV5dCKEGl+FAtDc8wJJh/fvKXs= + + Frameworks/Flutter.framework/_CodeSignature/CodeResources + + ytWXa4Cb2iAu1rVt/mlB/wgY2XY= + + Frameworks/Flutter.framework/icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + Info.plist + + feCtZW2/3b5pj5nTCH3wfxYeWSs= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + + files2 + + AppFrameworkInfo.plist + + hash2 + + ZewAT3qa2Eymb9isycy5D/pSpFBsEhFjCoY0I8m+BYc= + + + AppIcon60x60@2x.png + + hash2 + + Gb4XFIHccaCygD680B3YsMX9V3je40wKPKvJSMIl8k4= + + + AppIcon76x76@2x~ipad.png + + hash2 + + QcfUL25h+P5/MLH/oiVq7LyWgr4G0YxKMGIEPhouVHw= + + + Assets.car + + hash2 + + u+33u+K2xHRx3G8kr71Vhz4wsDojWJMpnnEPxWoEh+E= + + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash2 + + by6WshwXWgbEYiAy2bvh0UtjSVa3EwySkNFc1FazGdY= + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash2 + + HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash2 + + cWq7q+iQcmpSoaFGecnyPdKFEPFwRD3slgUmxFADkVs= + + + Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib + + hash2 + + BY/hOMO0FcCl8mCMQqjVbFeb8Q97c1G9lHscfspHFNk= + + + Base.lproj/Main.storyboardc/Info.plist + + hash2 + + PpvapAjR62rl6Ym4E6hkTgpKmBICxTaQXeUqcpHmmqQ= + + + Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib + + hash2 + + ZQ2gUxmWEdRgkn12jxaOmSDD+9/+PopRzqA3/yf4tK4= + + + Frameworks/App.framework/App + + hash2 + + 8VBQ+hBJqx1ZMJBGIie+mgaqoG5eYlb0W0779mvfVRs= + + + Frameworks/App.framework/Info.plist + + hash2 + + F5eso6WFjNZ3xF2PtIJY3OWSUnnInZwdgEkS5dxnfco= + + + Frameworks/App.framework/_CodeSignature/CodeResources + + hash2 + + Zt8F3c0oqaqLNL7dkgWIM2BHncRavJtBla3ZfAn++SM= + + + Frameworks/App.framework/flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + Frameworks/App.framework/flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + Frameworks/App.framework/flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + Frameworks/App.framework/flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + Frameworks/App.framework/flutter_assets/assets/images/1.jpeg + + hash2 + + ZM/gRNk9HmNFDT8BSanVTIPVGTQ+FvTvfqGl5dStDjc= + + + Frameworks/App.framework/flutter_assets/assets/images/13.jpg + + hash2 + + 4pO0Zep+HqPIVOTvdV6gJqsSQM78/b6bhO9mqhqK0Wo= + + + Frameworks/App.framework/flutter_assets/assets/images/2.jpeg + + hash2 + + ytFnREnrsNFG0NvVvVeP1mv8qsXFbpRGFhsWLUTiitY= + + + Frameworks/App.framework/flutter_assets/assets/images/3.jpeg + + hash2 + + CBlcAJZwqOjCmj/xnHWOODg7HNdhf/I7S7P0eMKYRd4= + + + Frameworks/App.framework/flutter_assets/assets/images/4.jpeg + + hash2 + + dzWkydrkKullJAGPu+316lHaUO6n36j6+181qZWpwPU= + + + Frameworks/App.framework/flutter_assets/assets/images/5.jpeg + + hash2 + + gPZ55PgDY7Wo2nV6b9e10+mJ/vyk8bAv1gCeDnCfhGs= + + + Frameworks/App.framework/flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + Frameworks/App.framework/flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + Frameworks/App.framework/flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + Frameworks/App.framework/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + Frameworks/App.framework/flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + Frameworks/App.framework/flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Frameworks/App.framework/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Frameworks/App.framework/flutter_assets/assets/images/beach.png + + hash2 + + y5lhZTmDRFAd7umZIXEABF+boH2H97AiGStm+R9vwzc= + + + Frameworks/App.framework/flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + Frameworks/App.framework/flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar.jpg + + hash2 + + 4uXcGTkEvvHPJILKHdwAkUSh1QMC0uS7g0AZyG3EbuE= + + + Frameworks/App.framework/flutter_assets/assets/images/circleavatar1.png + + hash2 + + AKFLcQ1ZyiiPNdbgAja0/IWSf7Dg47kF8Rp+JdCHR2g= + + + Frameworks/App.framework/flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + Frameworks/App.framework/flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + Frameworks/App.framework/flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + Frameworks/App.framework/flutter_assets/assets/images/gondola.jpg + + hash2 + + mxmsoD88A0QjPveARAEkDaNoY/VAmDDcYXmymROv3fA= + + + Frameworks/App.framework/flutter_assets/assets/images/h1.jpg + + hash2 + + Kuqwn3Vbb46v7iAlUHyjY1yw3EniewBiMf9864JOJIg= + + + Frameworks/App.framework/flutter_assets/assets/images/h2.jpeg + + hash2 + + d39wOwhkopGvyzoi+P0fP3v0TNoNj3qO1ec1rcEKbyE= + + + Frameworks/App.framework/flutter_assets/assets/images/h3.jpeg + + hash2 + + 61GSrfe8Ie+gX0W/Nv2Ohg1Wn1sinOfDNEKw5Kgr+xE= + + + Frameworks/App.framework/flutter_assets/assets/images/h4.jpeg + + hash2 + + vN3aG4W6YiSh5x3WB/zpBybI7mgaf3+m/ROF2J4i8yA= + + + Frameworks/App.framework/flutter_assets/assets/images/h5.jpeg + + hash2 + + ZxRldVFZ83zRbJMkoFkweKZv9y1Jyo95tzwPJ9NS1Zc= + + + Frameworks/App.framework/flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel0.jpg + + hash2 + + zoDLFXM0uf+NpyOIWoJmYOevt10RMj61L/SzMDdLLXs= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel1.jpg + + hash2 + + i0jDGexKYKlgcqUekECVK6bGw7lk8i8owJesmETyo6g= + + + Frameworks/App.framework/flutter_assets/assets/images/hotel2.jpg + + hash2 + + CRhXnlJcAiRByhcRsNwaIJ251Dkbdq38HE1KlALtfrE= + + + Frameworks/App.framework/flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + Frameworks/App.framework/flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + Frameworks/App.framework/flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + Frameworks/App.framework/flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + Frameworks/App.framework/flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + Frameworks/App.framework/flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + Frameworks/App.framework/flutter_assets/assets/images/menubar.png + + hash2 + + S0J8tgV0/QoXPWtZJt3lkFtejtlA0vqdjomDCmDGa6U= + + + Frameworks/App.framework/flutter_assets/assets/images/mountain.png + + hash2 + + Btm1IjrbdIX0DJtXRYgqDnqFyhZ4YG0SYaymN511hmY= + + + Frameworks/App.framework/flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + Frameworks/App.framework/flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + Frameworks/App.framework/flutter_assets/assets/images/newyork.jpg + + hash2 + + AljF8ys1SFUk8syawF4yYWO6sq5hWziavfmi373bsEo= + + + Frameworks/App.framework/flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + Frameworks/App.framework/flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Frameworks/App.framework/flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + Frameworks/App.framework/flutter_assets/assets/images/santorini.jpg + + hash2 + + LE7YVy/IXJ6R/DnWh7ZDrYkbnuEBfmUPggYBZFNXAo0= + + + Frameworks/App.framework/flutter_assets/assets/images/saopaulo.jpg + + hash2 + + fpHVZSqdVLqqH7kyhfmqHLexwmFZZmfXDmdiQ0JoH6o= + + + Frameworks/App.framework/flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + Frameworks/App.framework/flutter_assets/assets/images/stmarksbasilica.jpg + + hash2 + + 5Dlr4bXcaBmYywaMeaVz/ycenIaf5SZPDuAxEPzmKq0= + + + Frameworks/App.framework/flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Frameworks/App.framework/flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + Frameworks/App.framework/flutter_assets/assets/images/venice.jpg + + hash2 + + iarRj4YhsmffqPbqJbPdYZ0wD2705xLFbNzq3ZWVS64= + + + Frameworks/App.framework/flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + Frameworks/App.framework/flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + Frameworks/App.framework/flutter_assets/kernel_blob.bin + + hash2 + + Ec9Y5zdu5Sx/VUp1UJ6HC9YB56nPuA27QkkaI2PVEko= + + + Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + Frameworks/App.framework/flutter_assets/shaders/ink_sparkle.frag + + hash2 + + v6u8YtYjslOLIIb1rrgcOW817fxVEiBaprKuV+f6FpY= + + + Frameworks/App.framework/flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + Frameworks/Flutter.framework/Flutter + + hash2 + + 6q3IHEz0Zcv6VixYpcj0OZTfP30o1O7E9/0/1LlY62w= + + + Frameworks/Flutter.framework/Headers/Flutter.h + + hash2 + + uwm8JZgId56AcAI6HgoYvB86L3U5XLTdogukvzdieH0= + + + Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h + + hash2 + + ZE5n3wyEphmq0NvXEk+TgX9+IH2WWIRdDoZj+8Zmu+E= + + + Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h + + hash2 + + 1dNDb41OVcGRhdnQfLHPfpfNUSb9f9Dmg57Bqo4gJv0= + + + Frameworks/Flutter.framework/Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Frameworks/Flutter.framework/Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Frameworks/Flutter.framework/Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Frameworks/Flutter.framework/Headers/FlutterEngine.h + + hash2 + + nqtk8YLddo2rPiYBl7tgIviV+uOyWZO9Ey3zKZBCG2o= + + + Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h + + hash2 + + I+878Ez9ZpVdAR2GOzKJKjaZ5m807AeAF++2pSMQss4= + + + Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h + + hash2 + + sELlVsLARG1gBlPndKt24VxGVmBMgcXWeShflcVtZBQ= + + + Frameworks/Flutter.framework/Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h + + hash2 + + c4TS8HplkxEc+09dBX5h+BZ+vkI9QJU/3ljud7WmdTM= + + + Frameworks/Flutter.framework/Headers/FlutterPlugin.h + + hash2 + + zRjDCQ3ULUe9Pf2BcmGjO5/rdI00/Siw5fnIQZsJjMI= + + + Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h + + hash2 + + yxMe4j+1eEByv8dhzIAxAdnDSnF01UZxK1q9r8DtR84= + + + Frameworks/Flutter.framework/Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Frameworks/Flutter.framework/Headers/FlutterViewController.h + + hash2 + + P0GsFW0zzP6Yi8y8zBx1bdWpXoBcaVpIbO3lgDBZoDY= + + + Frameworks/Flutter.framework/Info.plist + + hash2 + + iy8u+1tPceAZSDmuhbFLa2NjsSq3TtdLnvF0mNAWFhM= + + + Frameworks/Flutter.framework/Modules/module.modulemap + + hash2 + + 0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs= + + + Frameworks/Flutter.framework/_CodeSignature/CodeResources + + hash2 + + ovF+xSc21G+ODAaReOPJN0v9PhSFKznEz1Y3xIUvnqM= + + + Frameworks/Flutter.framework/icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist new file mode 100755 index 0000000..06621dd --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist @@ -0,0 +1,779 @@ +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters_impl.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/extensions.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/breaks.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/collection.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/algorithms.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/boollist.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/canonicalized_map.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterable.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterator.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_list.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_map.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/comparators.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/empty_unmodifiable_set.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_map.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_set.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/functions.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_extensions.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_zip.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/list_extensions.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/priority_queue.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/queue_list.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set_controller.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/unmodifiable_wrappers.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/utils.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/wrappers.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/assets/CupertinoIcons.ttf +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/flutter_lints-2.0.2/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/lints-2.1.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/matcher-0.12.16/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/blend/blend.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/contrast/contrast.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dislike/dislike_analyzer.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/dynamic_color.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/material_dynamic_colors.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/src/tone_delta_constraint.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/cam16.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/hct.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/src/hct_solver.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/viewing_conditions.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/material_color_utilities.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/core_palette.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/tonal_palette.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_celebi.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_map.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wsmeans.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wu.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider_lab.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/dynamic_scheme.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_content.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_expressive.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_fidelity.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_monochrome.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_neutral.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_tonal_spot.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_vibrant.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/variant.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/score/score.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/temperature/temperature_cache.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/color_utils.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/math_utils.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta_meta.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/path-1.8.3/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/test_api-0.6.0/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/colors.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/constants.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/error_helpers.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/frustum.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/intersection_result.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix2.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix3.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix4.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/noise.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/obb3.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/opengl.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/plane.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quad.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quaternion.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/ray.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/sphere.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/triangle.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/utilities.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector2.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector3.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart +/Users/jayvashishtha/.pub-cache/hosted/pub.dev/web-0.1.4-beta/LICENSE +/Users/jayvashishtha/Desktop/task_1/DOES_NOT_EXIST_RERUN_FOR_WILDCARD559563646 +/Users/jayvashishtha/Desktop/task_1/assets/images/.DS_Store +/Users/jayvashishtha/Desktop/task_1/assets/images/Disney_land.webp +/Users/jayvashishtha/Desktop/task_1/assets/images/Eiffel_tower.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/Hill_station.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/KAGAGAHAN_RIJANI.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/Mountain_icon.png +/Users/jayvashishtha/Desktop/task_1/assets/images/Red_fort.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/Taj-Mahal-Agra-India.jpg.webp +/Users/jayvashishtha/Desktop/task_1/assets/images/cartoon.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/china_wall.webp +/Users/jayvashishtha/Desktop/task_1/assets/images/city.png +/Users/jayvashishtha/Desktop/task_1/assets/images/desert.png +/Users/jayvashishtha/Desktop/task_1/assets/images/forest.png +/Users/jayvashishtha/Desktop/task_1/assets/images/historical_places.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/india_gate.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/las.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/las_vegas.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/lotus-temple.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/menu.png +/Users/jayvashishtha/Desktop/task_1/assets/images/menu_icon.png +/Users/jayvashishtha/Desktop/task_1/assets/images/murano.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/newdelhi.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/paris.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/red-fort.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/river.png +/Users/jayvashishtha/Desktop/task_1/assets/images/shimla.jpeg +/Users/jayvashishtha/Desktop/task_1/assets/images/tajmahal.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/temple.jpg +/Users/jayvashishtha/Desktop/task_1/assets/images/waterfall.png +/Users/jayvashishtha/Desktop/task_1/lib/Main_Screen.dart +/Users/jayvashishtha/Desktop/task_1/lib/detail_page.dart +/Users/jayvashishtha/Desktop/task_1/lib/horizontal_widgets.dart +/Users/jayvashishtha/Desktop/task_1/lib/main.dart +/Users/jayvashishtha/Desktop/task_1/lib/places_page.dart +/Users/jayvashishtha/Desktop/task_1/lib/touriest_place.dart +/Users/jayvashishtha/Desktop/task_1/lib/vertical_widgets.dart +/Users/jayvashishtha/Desktop/task_1/pubspec.yaml +/Users/jayvashishtha/flutter/bin/cache/artifacts/material_fonts/MaterialIcons-Regular.otf +/Users/jayvashishtha/flutter/bin/cache/pkg/sky_engine/LICENSE +/Users/jayvashishtha/flutter/bin/internal/engine.version +/Users/jayvashishtha/flutter/packages/flutter/LICENSE +/Users/jayvashishtha/flutter/packages/flutter/lib/animation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/cupertino.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/foundation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/gestures.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/material.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/painting.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/physics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/rendering.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/scheduler.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/semantics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/services.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation_controller.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/curves.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/listener_helpers.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween_sequence.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/app.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/checkbox.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/colors.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/constants.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu_action.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/date_picker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/dialog.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_row.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_section.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icon_theme_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/interface_level.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_section.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/localizations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/magnifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/picker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/radio.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/refresh.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/route.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/search_field.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/slider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/sliding_segmented_control.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/spell_check_suggestions_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/switch.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_field.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_form_field_row.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/toggleable.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_capabilities_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_platform_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_timeline_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/annotations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/assertions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/basic_types.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/bitfield.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/capabilities.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/change_notifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/collections.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/constants.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/diagnostics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/isolates.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/key.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/licenses.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/math.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/memory_allocations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/node.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/object.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/observer_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/persistent_hash_map.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/platform.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/print.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/serialization.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/service_extensions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/stack_frame.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/timeline.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/unicode.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/arena.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/constants.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/converter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag_details.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/eager.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/events.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/force_press.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/gesture_settings.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/hit_test.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/long_press.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/monodrag.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multidrag.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multitap.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_router.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/recognizer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/resampler.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/scale.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/tap.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/team.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/about.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_buttons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_chip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_icons_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/arc.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/autocomplete.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/back_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/calendar_date_picker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/choice_chip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/circle_avatar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/color_scheme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/colors.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/constants.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/curves.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_source.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_header.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevation_overlay.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expand_icon.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_panel.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/feedback.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filter_chip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flutter_logo.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_decoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_highlight.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_ripple.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_sparkle.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_splash.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_well.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_chip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_date_picker_form_field.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_decorator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/magnifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_localizations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state_mixin.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_anchor.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_style.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/mergeable_material.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/no_splash.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/paginated_data_table.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_list_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/range_slider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/refresh_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/reorderable_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scaffold.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_anchor.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_view_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selectable_text.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selection_area.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shaders/ink_sparkle.frag +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shadows.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar_layout_delegate.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/stepper.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_list_tile.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_controller.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tabs.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_field.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_form_field.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar_text_button.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggleable.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_visibility.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/typography.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/_network_image_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/alignment.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/basic_types.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/border_radius.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/borders.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_decoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_fit.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_shadow.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/circle_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/clip.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/colors.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration_image.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/edge_insets.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/flutter_logo.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/fractional_offset.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/geometry.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/gradient.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_cache.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_decoder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_provider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_resolution.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_stream.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/inline_span.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/linear_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/matrix_utils.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/notched_shapes.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/oval_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/paint_utilities.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/placeholder_span.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shape_decoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/stadium_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/star_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/strut_style.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_painter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_span.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_style.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/friction_simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/spring_simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/tolerance.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/utils.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/animated_size.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/box.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_layout.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_paint.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/decorated_sliver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/editable.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/error.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flex.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flow.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/image.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layout_helper.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_body.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/mouse_tracker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/object.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/paragraph.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/platform_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_box.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_sliver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/rotated_box.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/service_extensions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/shifted_box.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_group.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/stack.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table_border.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/texture.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/tweens.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/wrap.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/priority.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/service_extensions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/ticker.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_event.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_service.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_bundle.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_manifest.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/autofill.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binary_messenger.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/browser_context_menu.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/clipboard.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/deferred_component.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/font_loader.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/haptic_feedback.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/hardware_keyboard.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_inserted_content.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_key.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_maps.g.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/live_text.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codec.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codecs.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_cursor.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_tracking.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_channel.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_views.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_ios.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_web.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_windows.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/restoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/service_extensions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/spell_check.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_channels.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_chrome.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_navigator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_sound.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_boundary.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing_delta.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_formatter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_input.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_layout_metrics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/undo_manager.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/_platform_selectable_region_context_menu_io.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/actions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_size.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/annotated_region.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app_lifecycle_listener.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/async.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autocomplete.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autofill.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/banner.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/basic.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/binding.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/color_filter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/constants.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/container.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_button_item.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_controller.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/debug.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/decorated_sliver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_selection_style.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dismissible.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/display_feature_sub_screen.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/disposable_build_context.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/drag_target.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dual_transition_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/editable_text.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_manager.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_scope.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/form.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/framework.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/grid_paper.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/heroes.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_filter.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_icon.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_model.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/interactive_viewer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/keyboard_listener.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/layout_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/localizations.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/lookup_boundary.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/magnifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/media_query.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/notification_listener.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overflow_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overlay.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_storage.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/pages.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/placeholder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_menu_bar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_selectable_region_context_menu.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/preferred_size.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/reorderable_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration_properties.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/router.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/routes.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/safe_area.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_aware_image_provider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_context.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_delegate.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification_observer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable_helpers.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollbar.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selectable_region.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selection_container.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/service_extensions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shared_app_data.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shortcuts.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_fill.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/slotted_render_object_widget.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/snapshot_widget.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spacer.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spell_check.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/status_transitions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/table.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_and_drag_gestures.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_region.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_editing_intents.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_anchors.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_layout_delegate.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/texture.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/title.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/transitions.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_scroll_view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_viewport.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/undo_history.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/unique_widget.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/view.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/viewport.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/visibility.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_span.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart +/Users/jayvashishtha/flutter/packages/flutter/lib/widgets.dart +/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart +/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/icon_tree_shaker.dart +/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/macos.dart diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist new file mode 100755 index 0000000..c03cb70 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist @@ -0,0 +1,42 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh new file mode 100755 index 0000000..bff8ce7 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh @@ -0,0 +1,2 @@ +#!/bin/sh +"$FLUTTER_ROOT"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist new file mode 100644 index 0000000..60c9d63 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist @@ -0,0 +1,14 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.get-task-allow + + com.apple.security.network.server + + + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h new file mode 100644 index 0000000..88cd618 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h @@ -0,0 +1,312 @@ +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +#ifndef TASK_1_SWIFT_H +#define TASK_1_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else +#include +#include +#include +#include +#endif +#if defined(__cplusplus) +#if __has_include() +# include +#else +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +#endif +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif +#endif +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif +#endif +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif +#endif +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif +#endif +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif +#endif +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif +#endif +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import AppKit; +@import FlutterMacOS; +@import Foundation; +#endif + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="task_1",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class NSApplication; + +SWIFT_CLASS("_TtC6task_111AppDelegate") +@interface AppDelegate : FlutterAppDelegate +- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication * _Nonnull)sender SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC6task_117MainFlutterWindow") +@interface MainFlutterWindow : NSWindow +- (void)awakeFromNib; +- (nonnull instancetype)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)style backing:(NSBackingStoreType)backingStoreType defer:(BOOL)flag OBJC_DESIGNATED_INITIALIZER; +@end + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#else +#error unsupported Swift architecture +#endif diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.d b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.d new file mode 100644 index 0000000..4b3a787 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.d @@ -0,0 +1 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.dia b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.dia new file mode 100644 index 0000000..a448689 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.dia differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o new file mode 100644 index 0000000..a2211f4 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.swiftdeps b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.swiftdeps new file mode 100644 index 0000000..44aae29 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.swiftdeps differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d new file mode 100644 index 0000000..6db0a52 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d @@ -0,0 +1 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia new file mode 100644 index 0000000..a448689 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o new file mode 100644 index 0000000..7051cb0 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps new file mode 100644 index 0000000..ef42c81 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps~ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps~ new file mode 100644 index 0000000..1836f5e Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps~ differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.d b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.d new file mode 100644 index 0000000..e48f2e5 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.d @@ -0,0 +1 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.dia b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.dia new file mode 100644 index 0000000..a448689 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.dia differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o new file mode 100644 index 0000000..66a99ab Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.swiftdeps b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.swiftdeps new file mode 100644 index 0000000..d3ec9e8 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.swiftdeps differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json new file mode 100644 index 0000000..8621519 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"diagnostics":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.dia","emit-module-dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.d","emit-module-diagnostics":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.dia","swift-dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps"},"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift":{"dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","diagnostics":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","index-unit-output-path":"/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","llvm-bc":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.bc","object":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","swift-dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.swiftdeps","swiftmodule":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant~partial.swiftmodule"},"/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift":{"dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.d","diagnostics":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.dia","index-unit-output-path":"/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","llvm-bc":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.bc","object":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","swift-dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.swiftdeps","swiftmodule":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule"},"/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift":{"dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.d","diagnostics":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.dia","index-unit-output-path":"/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","llvm-bc":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.bc","object":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","swift-dependencies":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.swiftdeps","swiftmodule":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow~partial.swiftmodule"}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.d b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.d new file mode 100644 index 0000000..50d2c03 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.d @@ -0,0 +1,4 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo : /Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift /Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift /Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPluginRegistrarMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacOS.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterEngine.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterTexture.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppLifecycleDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterAppDelegate.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterBinaryMessenger.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterViewController.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterCodecs.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterChannels.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterMacros.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterPlatformViews.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers/FlutterDartProject.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.dia b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.dia new file mode 100644 index 0000000..a448689 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master-emit-module.dia differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.priors b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.priors new file mode 100644 index 0000000..28a9d65 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.priors differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps new file mode 100644 index 0000000..958e9f5 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps @@ -0,0 +1,8 @@ +version: "Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)" +options: "4002fa7e5acc1711263e444e51200e4eb971a829556f6e818bf2c72556d1458b" +build_start_time: [1692960612, 823256000] +build_end_time: [1692960616, 179433000] +inputs: + "/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift": [1692960600, 131272932] + "/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift": [1692767502, 0] + "/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift": [1692767502, 0] diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps~ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps~ new file mode 100644 index 0000000..f389ddc --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-master.swiftdeps~ @@ -0,0 +1,8 @@ +version: "Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)" +options: "4002fa7e5acc1711263e444e51200e4eb971a829556f6e818bf2c72556d1458b" +build_start_time: [1692880158, 715915000] +build_end_time: [1692880158, 756043000] +inputs: + "/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift": !private [1692880144, 511985721] + "/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift": !private [1692767502, 0] + "/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift": !private [1692767502, 0] diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/dummyInput-1.swift b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/dummyInput-1.swift new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h new file mode 100644 index 0000000..dc7cfcd --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h @@ -0,0 +1,306 @@ +// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +#ifndef TASK_1_SWIFT_H +#define TASK_1_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else +#include +#include +#include +#include +#endif +#if defined(__cplusplus) +#if __has_include() +# include +#else +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +#endif +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif +#endif +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif +#endif +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif +#endif +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif +#endif +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif +#endif +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif +#endif +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import AppKit; +@import FlutterMacOS; +@import Foundation; +#endif + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="task_1",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class NSApplication; + +SWIFT_CLASS("_TtC6task_111AppDelegate") +@interface AppDelegate : FlutterAppDelegate +- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication * _Nonnull)sender SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC6task_117MainFlutterWindow") +@interface MainFlutterWindow : NSWindow +- (void)awakeFromNib; +- (nonnull instancetype)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)style backing:(NSBackingStoreType)backingStoreType defer:(BOOL)flag OBJC_DESIGNATED_INITIALIZER; +@end + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList new file mode 100644 index 0000000..16799ce --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList @@ -0,0 +1,3 @@ +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o +/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList new file mode 100644 index 0000000..4066428 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList @@ -0,0 +1,3 @@ +/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift +/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift +/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json new file mode 100644 index 0000000..dc109fc --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json @@ -0,0 +1,9 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc new file mode 100644 index 0000000..859eb8b Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule new file mode 100644 index 0000000..fb6d166 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo new file mode 100644 index 0000000..8a4e841 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat new file mode 100644 index 0000000..7943d89 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh new file mode 100755 index 0000000..e237be9 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh @@ -0,0 +1,3 @@ +#!/bin/sh +echo "$PRODUCT_NAME.app" > "$PROJECT_DIR"/Flutter/ephemeral/.app_filename && "$FLUTTER_ROOT"/packages/flutter_tools/bin/macos_assemble.sh embed + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep new file mode 100644 index 0000000..738c63d Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml new file mode 100644 index 0000000..ee59dbc --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml @@ -0,0 +1 @@ +{"case-sensitive":"false","roots":[],"version":0} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies new file mode 100644 index 0000000..c839df9 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist new file mode 100644 index 0000000..74c7460 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist @@ -0,0 +1,10 @@ + + + + + CFBundleIconFile + AppIcon + CFBundleIconName + AppIcon + + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent new file mode 100644 index 0000000..60c9d63 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent @@ -0,0 +1,14 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.get-task-allow + + com.apple.security.network.server + + + diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der new file mode 100644 index 0000000..84c07cb --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der @@ -0,0 +1 @@ +p0# com.apple.security.app-sandbox0$ com.apple.security.cs.allow-jit0& !com.apple.security.get-task-allow0& !com.apple.security.network.server \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/build-request.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/build-request.json new file mode 100644 index 0000000..4c8753e --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/build-request.json @@ -0,0 +1,63 @@ +{ + "buildCommand" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "configuredTargets" : [ + { + "guid" : "18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14" + } + ], + "containerPath" : "/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcworkspace", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx13.3", + "sdkVariant" : "macos", + "supportedArchitectures" : [ + "arm64e", + "arm64", + "x86_64" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products", + "derivedDataPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos", + "indexDataStoreFolderPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/PrecompiledHeaders", + "pchPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "commandLine" : { + "table" : { + "COMPILER_INDEX_STORE_ENABLE" : "NO", + "OBJROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "SYMROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "build", + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/description.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/description.msgpack new file mode 100644 index 0000000..ccce55b Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/description.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/manifest.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/manifest.json new file mode 100644 index 0000000..d9411be --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic"},"targets":{"":[""]},"nodes":{"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1":{"is-mutated":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true}},"commands":{"":{"tool":"phony","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","inputs":[],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"13b6d8b30bb1d4da63e30fd56c9053db"},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug"]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--fused-phase0-run-script":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CodeSign":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-Validate":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--VersionPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase0-compile-sources&link-binary©-bundle-resources":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase1-copy-files":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase2-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--swift-generated-headers":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--end":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--unsigned-product-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist/","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift/","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","--timestamp=none","--generate-entitlement-der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"cd32cd07b6284268ac31c024228debb3"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets":{"tool":"shell","description":"CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--enable-on-demand-resources","NO","--development-region","en","--target-device","mac","--minimum-deployment-target","10.14","--platform","macosx","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"28ba9dc77141e2a636656c478f51ca7f"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib":{"tool":"shell","description":"CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","task_1","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","--auto-activate-custom-fonts","--target-device","mac","--minimum-deployment-target","10.14","--output-format","human-readable-text","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"d03214ace453a087c519b773a501004d"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","",""],"outputs":[""],"deps":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ExtractAppIntentsMetadata":{"tool":"appintents-metadata","description":"ExtractAppIntentsMetadata","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-compiling":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-linking":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-scanning":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","","","","","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--entry":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--immediate":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--unsigned-product-ready":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent":{"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der":{"tool":"shell","description":"ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der"],"args":["/usr/bin/derq","query","-f","xml","-i","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","--raw"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"a3291242f6094c946284b091f1be2e73"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"lsregisterurl","description":"RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"71d40290a3015cdd13196a3a11edf44e"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"validate-product","description":"Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":["",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterInputs.xcfilelist","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters_impl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/breaks.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/collection.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/algorithms.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/boollist.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/canonicalized_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterable.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterator.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/comparators.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/empty_unmodifiable_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/functions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_zip.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/list_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/priority_queue.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/queue_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set_controller.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/unmodifiable_wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/assets/CupertinoIcons.ttf","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/flutter_lints-2.0.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/lints-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/matcher-0.12.16/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/blend/blend.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/contrast/contrast.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dislike/dislike_analyzer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/dynamic_color.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/material_dynamic_colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/src/tone_delta_constraint.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/cam16.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/hct.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/src/hct_solver.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/viewing_conditions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/material_color_utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/core_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/tonal_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_celebi.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wsmeans.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wu.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider_lab.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/dynamic_scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_content.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_expressive.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_fidelity.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_monochrome.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_neutral.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_tonal_spot.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_vibrant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/variant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/score/score.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/temperature/temperature_cache.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/color_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/math_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta_meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/path-1.8.3/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/test_api-0.6.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/error_helpers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/frustum.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/intersection_result.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/noise.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/obb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/opengl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/plane.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quad.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quaternion.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/ray.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/sphere.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/triangle.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/web-0.1.4-beta/LICENSE","/Users/jayvashishtha/Desktop/task_1/DOES_NOT_EXIST_RERUN_FOR_WILDCARD1052238274","/Users/jayvashishtha/Desktop/task_1/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/lib/Main_Screen.dart","/Users/jayvashishtha/Desktop/task_1/lib/detail_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/horizontal_widgets.dart","/Users/jayvashishtha/Desktop/task_1/lib/main.dart","/Users/jayvashishtha/Desktop/task_1/lib/places_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/touriest_place.dart","/Users/jayvashishtha/Desktop/task_1/lib/vertical_widgets.dart","/Users/jayvashishtha/Desktop/task_1/pubspec.yaml","/Users/jayvashishtha/flutter/bin/cache/artifacts/material_fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/flutter/bin/cache/pkg/sky_engine/LICENSE","/Users/jayvashishtha/flutter/bin/internal/engine.version","/Users/jayvashishtha/flutter/packages/flutter/LICENSE","/Users/jayvashishtha/flutter/packages/flutter/lib/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/cupertino.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/foundation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/painting.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/rendering.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/scheduler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/services.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/listener_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween_sequence.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu_action.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/interface_level.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/refresh.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/route.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/search_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/sliding_segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_form_field_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_capabilities_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_platform_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_timeline_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/annotations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/assertions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/bitfield.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/capabilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/change_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/collections.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/diagnostics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/isolates.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/key.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/licenses.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/math.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/memory_allocations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/node.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/observer_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/persistent_hash_map.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/platform.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/print.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/serialization.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/stack_frame.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/timeline.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/unicode.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/arena.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/converter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag_details.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/eager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/events.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/force_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/gesture_settings.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/hit_test.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/long_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/monodrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multidrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multitap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/recognizer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/resampler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/scale.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/tap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/team.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/about.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_icons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/arc.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/back_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/calendar_date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/choice_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/circle_avatar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/color_scheme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_source.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevation_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expand_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_panel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filter_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_highlight.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_ripple.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_sparkle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_well.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_date_picker_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_decorator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state_mixin.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/mergeable_material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/no_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/paginated_data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/range_slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/refresh_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_view_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selectable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selection_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shaders/ink_sparkle.frag","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shadows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/stepper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tabs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar_text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/typography.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/_network_image_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/alignment.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/border_radius.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/borders.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_fit.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_shadow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/circle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/clip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/edge_insets.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/fractional_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/geometry.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/gradient.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_cache.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_decoder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_resolution.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_stream.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/inline_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/linear_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/matrix_utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/notched_shapes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/oval_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/paint_utilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/placeholder_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shape_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/stadium_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/star_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/strut_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/friction_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/spring_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/tolerance.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_layout.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_paint.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/editable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/error.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flex.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layout_helper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_body.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/mouse_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/paragraph.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/rotated_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/shifted_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_group.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/stack.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/tweens.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/wrap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/priority.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/ticker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_event.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_service.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_bundle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_manifest.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binary_messenger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/browser_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/clipboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/deferred_component.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/font_loader.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/haptic_feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/hardware_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_inserted_content.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_key.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_maps.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/live_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codec.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codecs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_cursor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_tracking.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_channel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_views.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_ios.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_web.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_windows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_channels.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_chrome.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_sound.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing_delta.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_formatter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_input.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_layout_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/undo_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/_platform_selectable_region_context_menu_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/actions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/annotated_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app_lifecycle_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/async.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/basic.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/color_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_button_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_selection_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dismissible.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/display_feature_sub_screen.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/disposable_build_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/drag_target.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dual_transition_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/editable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/form.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/framework.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/grid_paper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/heroes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_model.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/interactive_viewer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/lookup_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/media_query.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/notification_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overflow_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_storage.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/pages.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/placeholder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_menu_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_selectable_region_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/preferred_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration_properties.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/routes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/safe_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_aware_image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification_observer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selectable_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selection_container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shared_app_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/slotted_render_object_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/snapshot_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spacer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/status_transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_and_drag_gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_editing_intents.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_anchors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/title.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/undo_history.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/unique_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/widgets.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/icon_tree_shaker.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/macos.dart","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/1.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/13.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/circleavatar1.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/gondola.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h2.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h3.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/h5.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel0.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel1.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/hotel2.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menubar.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newyork.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/santorini.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/saopaulo.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/stmarksbasilica.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS"],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Manual","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.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","DIFF":"/usr/bin/diff","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","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","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORK_VERSION":"A","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","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 ","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"NO","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","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PREPROCESS":"NO","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"jayvashishtha","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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_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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRODUCT_MODULE_NAME":"Flutter_Assemble","PRODUCT_NAME":"Flutter Assemble","PRODUCT_SETTINGS_PATH":"","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPT_INPUT_FILE_0":"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","SCRIPT_INPUT_FILE_COUNT":"1","SCRIPT_INPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SKIP_INSTALL":"YES","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.SwiftFileList","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Flutter Assemble","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Flutter Assemble","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"Flutter Assemble_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Flutter Assemble PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"e414d3b2c37b0c705f46da005dd418f1"},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal":{"tool":"shell","description":"Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-macos10.14","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-filelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/../Frameworks","-Xlinker","-object_path_lto","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat"],"deps-style":"dependency-info","signature":"76f94df93ab3de23aa5bedcf6a81bbe6"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Automatic","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"YES","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","CONTENTS_FOLDER_PATH":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/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","DIFF":"/usr/bin/diff","DOCUMENTATION_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","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":"task_1.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"NO","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":"task_1.app/Contents/Executables","EXECUTABLE_FOLDER_PATH":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","EXECUTABLE_NAME":"task_1","EXECUTABLE_PATH":"task_1.app/Contents/MacOS/task_1","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Extensions","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"task_1.app","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","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 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"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/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PATH":"task_1.app/Contents/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"task_1.app/Contents/Resources/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":"jayvashishtha","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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":"task_1.app/Contents/Resources/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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/task_1_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/../Frameworks","LD_RUNPATH_SEARCH_PATHS_YES":"@loader_path/../Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACH_O_TYPE":"mh_execute","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","MODULES_FOLDER_PATH":"task_1.app/Contents/Modules","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","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/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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":"task_1.app/Contents/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo","PKGINFO_PATH":"task_1.app/Contents/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PLUGINS_FOLDER_PATH":"task_1.app/Contents/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"task_1.app/Contents/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_COPYRIGHT":"Copyright © 2023 com.example. All rights reserved.","PRODUCT_MODULE_NAME":"task_1","PRODUCT_NAME":"task_1","PRODUCT_SETTINGS_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","PROVISIONING_PROFILE_REQUIRED":"NO","PROVISIONING_PROFILE_REQUIRED_YES_YES":"YES","PROVISIONING_PROFILE_SUPPORTED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"task_1.app/Contents/Headers","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"task_1.app/Contents/Resources/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/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHALLOW_BUNDLE_PLATFORM":"NO","SHALLOW_BUNDLE_TRIPLE":"macos","SHALLOW_BUNDLE_ios_macabi":"NO","SHALLOW_BUNDLE_macos":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"task_1.app/Contents/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_MACCATALYST":"NO","SUPPORTS_ON_DEMAND_RESOURCES":"NO","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents/SystemExtensions","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNLOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONPLIST_PATH":"task_1.app/Contents/version.plist","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"task_1_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:task_1 PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"task_1.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":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"task_1.app/Contents/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","_WRAPPER_CONTENTS_DIR":"/Contents","_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO":"/Contents","_WRAPPER_PARENT_PATH":"/..","_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO":"/..","_WRAPPER_RESOURCES_DIR":"/Resources","_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO":"/Resources","__IS_NOT_MACOS":"NO","__IS_NOT_MACOS_macosx":"NO","__IS_NOT_SIMULATOR":"YES","__IS_NOT_SIMULATOR_simulator":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"184eae62b9ffb97d99462abc175d8f2e"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"]}}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/target-graph.txt b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/target-graph.txt new file mode 100644 index 0000000..42b9765 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/target-graph.txt @@ -0,0 +1,4 @@ +Target dependency graph (2 targets) +Flutter Assemble in Runner, no dependencies +Runner in Runner, depends on: +Flutter Assemble in Runner (explicit) \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/task-store.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/task-store.msgpack new file mode 100644 index 0000000..89e5ace Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/10afe844d5a58dd6ee662171d85b198d.xcbuilddata/task-store.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/build-request.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/build-request.json new file mode 100644 index 0000000..4c8753e --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/build-request.json @@ -0,0 +1,63 @@ +{ + "buildCommand" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "configuredTargets" : [ + { + "guid" : "18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14" + } + ], + "containerPath" : "/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcworkspace", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx13.3", + "sdkVariant" : "macos", + "supportedArchitectures" : [ + "arm64e", + "arm64", + "x86_64" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products", + "derivedDataPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos", + "indexDataStoreFolderPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/PrecompiledHeaders", + "pchPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "commandLine" : { + "table" : { + "COMPILER_INDEX_STORE_ENABLE" : "NO", + "OBJROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "SYMROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "build", + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/description.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/description.msgpack new file mode 100644 index 0000000..d41cb3b Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/description.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/manifest.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/manifest.json new file mode 100644 index 0000000..fe1c6f0 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic"},"targets":{"":[""]},"nodes":{"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1":{"is-mutated":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true}},"commands":{"":{"tool":"phony","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","inputs":[],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"13b6d8b30bb1d4da63e30fd56c9053db"},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug"]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--fused-phase0-run-script":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CodeSign":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-Validate":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--VersionPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase0-compile-sources&link-binary©-bundle-resources":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase1-copy-files":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase2-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--swift-generated-headers":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--end":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--unsigned-product-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist/","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift/","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","--timestamp=none","--generate-entitlement-der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"cd32cd07b6284268ac31c024228debb3"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets":{"tool":"shell","description":"CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--enable-on-demand-resources","NO","--development-region","en","--target-device","mac","--minimum-deployment-target","10.14","--platform","macosx","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"28ba9dc77141e2a636656c478f51ca7f"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib":{"tool":"shell","description":"CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","task_1","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","--auto-activate-custom-fonts","--target-device","mac","--minimum-deployment-target","10.14","--output-format","human-readable-text","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"d03214ace453a087c519b773a501004d"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","",""],"outputs":[""],"deps":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ExtractAppIntentsMetadata":{"tool":"appintents-metadata","description":"ExtractAppIntentsMetadata","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-compiling":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-linking":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-scanning":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","","","","","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--entry":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--immediate":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--unsigned-product-ready":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent":{"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der":{"tool":"shell","description":"ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der"],"args":["/usr/bin/derq","query","-f","xml","-i","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","--raw"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"a3291242f6094c946284b091f1be2e73"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"lsregisterurl","description":"RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"71d40290a3015cdd13196a3a11edf44e"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"validate-product","description":"Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":["",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterInputs.xcfilelist","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters_impl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/breaks.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/collection.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/algorithms.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/boollist.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/canonicalized_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterable.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterator.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/comparators.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/empty_unmodifiable_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/functions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_zip.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/list_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/priority_queue.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/queue_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set_controller.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/unmodifiable_wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/assets/CupertinoIcons.ttf","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/flutter_lints-2.0.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/lints-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/matcher-0.12.16/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/blend/blend.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/contrast/contrast.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dislike/dislike_analyzer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/dynamic_color.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/material_dynamic_colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/src/tone_delta_constraint.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/cam16.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/hct.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/src/hct_solver.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/viewing_conditions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/material_color_utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/core_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/tonal_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_celebi.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wsmeans.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wu.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider_lab.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/dynamic_scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_content.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_expressive.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_fidelity.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_monochrome.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_neutral.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_tonal_spot.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_vibrant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/variant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/score/score.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/temperature/temperature_cache.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/color_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/math_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta_meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/path-1.8.3/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/test_api-0.6.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/error_helpers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/frustum.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/intersection_result.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/noise.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/obb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/opengl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/plane.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quad.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quaternion.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/ray.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/sphere.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/triangle.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/web-0.1.4-beta/LICENSE","/Users/jayvashishtha/Desktop/task_1/DOES_NOT_EXIST_RERUN_FOR_WILDCARD349708419","/Users/jayvashishtha/Desktop/task_1/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/lib/Main_Screen.dart","/Users/jayvashishtha/Desktop/task_1/lib/detail_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/horizontal_widgets.dart","/Users/jayvashishtha/Desktop/task_1/lib/main.dart","/Users/jayvashishtha/Desktop/task_1/lib/places_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/touriest_place.dart","/Users/jayvashishtha/Desktop/task_1/lib/vertical_widgets.dart","/Users/jayvashishtha/Desktop/task_1/pubspec.yaml","/Users/jayvashishtha/flutter/bin/cache/artifacts/material_fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/flutter/bin/cache/pkg/sky_engine/LICENSE","/Users/jayvashishtha/flutter/bin/internal/engine.version","/Users/jayvashishtha/flutter/packages/flutter/LICENSE","/Users/jayvashishtha/flutter/packages/flutter/lib/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/cupertino.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/foundation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/painting.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/rendering.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/scheduler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/services.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/listener_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween_sequence.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu_action.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/interface_level.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/refresh.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/route.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/search_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/sliding_segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_form_field_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_capabilities_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_platform_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_timeline_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/annotations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/assertions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/bitfield.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/capabilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/change_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/collections.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/diagnostics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/isolates.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/key.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/licenses.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/math.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/memory_allocations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/node.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/observer_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/persistent_hash_map.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/platform.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/print.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/serialization.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/stack_frame.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/timeline.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/unicode.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/arena.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/converter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag_details.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/eager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/events.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/force_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/gesture_settings.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/hit_test.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/long_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/monodrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multidrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multitap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/recognizer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/resampler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/scale.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/tap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/team.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/about.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_icons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/arc.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/back_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/calendar_date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/choice_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/circle_avatar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/color_scheme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_source.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevation_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expand_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_panel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filter_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_highlight.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_ripple.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_sparkle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_well.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_date_picker_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_decorator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state_mixin.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/mergeable_material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/no_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/paginated_data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/range_slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/refresh_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_view_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selectable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selection_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shaders/ink_sparkle.frag","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shadows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/stepper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tabs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar_text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/typography.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/_network_image_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/alignment.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/border_radius.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/borders.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_fit.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_shadow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/circle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/clip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/edge_insets.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/fractional_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/geometry.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/gradient.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_cache.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_decoder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_resolution.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_stream.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/inline_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/linear_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/matrix_utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/notched_shapes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/oval_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/paint_utilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/placeholder_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shape_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/stadium_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/star_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/strut_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/friction_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/spring_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/tolerance.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_layout.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_paint.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/editable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/error.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flex.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layout_helper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_body.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/mouse_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/paragraph.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/rotated_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/shifted_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_group.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/stack.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/tweens.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/wrap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/priority.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/ticker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_event.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_service.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_bundle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_manifest.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binary_messenger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/browser_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/clipboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/deferred_component.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/font_loader.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/haptic_feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/hardware_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_inserted_content.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_key.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_maps.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/live_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codec.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codecs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_cursor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_tracking.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_channel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_views.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_ios.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_web.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_windows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_channels.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_chrome.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_sound.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing_delta.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_formatter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_input.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_layout_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/undo_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/_platform_selectable_region_context_menu_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/actions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/annotated_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app_lifecycle_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/async.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/basic.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/color_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_button_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_selection_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dismissible.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/display_feature_sub_screen.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/disposable_build_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/drag_target.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dual_transition_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/editable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/form.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/framework.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/grid_paper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/heroes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_model.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/interactive_viewer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/lookup_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/media_query.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/notification_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overflow_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_storage.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/pages.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/placeholder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_menu_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_selectable_region_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/preferred_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration_properties.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/routes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/safe_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_aware_image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification_observer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selectable_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selection_container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shared_app_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/slotted_render_object_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/snapshot_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spacer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/status_transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_and_drag_gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_editing_intents.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_anchors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/title.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/undo_history.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/unique_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/widgets.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/icon_tree_shaker.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/macos.dart","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS"],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Manual","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.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","DIFF":"/usr/bin/diff","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","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","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORK_VERSION":"A","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","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 ","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"NO","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","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PREPROCESS":"NO","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"jayvashishtha","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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_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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRODUCT_MODULE_NAME":"Flutter_Assemble","PRODUCT_NAME":"Flutter Assemble","PRODUCT_SETTINGS_PATH":"","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPT_INPUT_FILE_0":"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","SCRIPT_INPUT_FILE_COUNT":"1","SCRIPT_INPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SKIP_INSTALL":"YES","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.SwiftFileList","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Flutter Assemble","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Flutter Assemble","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"Flutter Assemble_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Flutter Assemble PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"e414d3b2c37b0c705f46da005dd418f1"},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal":{"tool":"shell","description":"Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-macos10.14","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-filelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/../Frameworks","-Xlinker","-object_path_lto","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat"],"deps-style":"dependency-info","signature":"76f94df93ab3de23aa5bedcf6a81bbe6"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Automatic","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"YES","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","CONTENTS_FOLDER_PATH":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/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","DIFF":"/usr/bin/diff","DOCUMENTATION_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","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":"task_1.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"NO","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":"task_1.app/Contents/Executables","EXECUTABLE_FOLDER_PATH":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","EXECUTABLE_NAME":"task_1","EXECUTABLE_PATH":"task_1.app/Contents/MacOS/task_1","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Extensions","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"task_1.app","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","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 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"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/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PATH":"task_1.app/Contents/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"task_1.app/Contents/Resources/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":"jayvashishtha","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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":"task_1.app/Contents/Resources/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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/task_1_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/../Frameworks","LD_RUNPATH_SEARCH_PATHS_YES":"@loader_path/../Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACH_O_TYPE":"mh_execute","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","MODULES_FOLDER_PATH":"task_1.app/Contents/Modules","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","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/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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":"task_1.app/Contents/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo","PKGINFO_PATH":"task_1.app/Contents/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PLUGINS_FOLDER_PATH":"task_1.app/Contents/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"task_1.app/Contents/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_COPYRIGHT":"Copyright © 2023 com.example. All rights reserved.","PRODUCT_MODULE_NAME":"task_1","PRODUCT_NAME":"task_1","PRODUCT_SETTINGS_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","PROVISIONING_PROFILE_REQUIRED":"NO","PROVISIONING_PROFILE_REQUIRED_YES_YES":"YES","PROVISIONING_PROFILE_SUPPORTED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"task_1.app/Contents/Headers","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"task_1.app/Contents/Resources/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/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHALLOW_BUNDLE_PLATFORM":"NO","SHALLOW_BUNDLE_TRIPLE":"macos","SHALLOW_BUNDLE_ios_macabi":"NO","SHALLOW_BUNDLE_macos":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"task_1.app/Contents/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_MACCATALYST":"NO","SUPPORTS_ON_DEMAND_RESOURCES":"NO","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents/SystemExtensions","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNLOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONPLIST_PATH":"task_1.app/Contents/version.plist","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"task_1_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:task_1 PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"task_1.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":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"task_1.app/Contents/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","_WRAPPER_CONTENTS_DIR":"/Contents","_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO":"/Contents","_WRAPPER_PARENT_PATH":"/..","_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO":"/..","_WRAPPER_RESOURCES_DIR":"/Resources","_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO":"/Resources","__IS_NOT_MACOS":"NO","__IS_NOT_MACOS_macosx":"NO","__IS_NOT_SIMULATOR":"YES","__IS_NOT_SIMULATOR_simulator":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"184eae62b9ffb97d99462abc175d8f2e"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"]}}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/target-graph.txt b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/target-graph.txt new file mode 100644 index 0000000..42b9765 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/target-graph.txt @@ -0,0 +1,4 @@ +Target dependency graph (2 targets) +Flutter Assemble in Runner, no dependencies +Runner in Runner, depends on: +Flutter Assemble in Runner (explicit) \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/task-store.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/task-store.msgpack new file mode 100644 index 0000000..3326660 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/1be64fccf79550c38de2b275326f2db9.xcbuilddata/task-store.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/24d14de819975ea3adc898ff5084a6e8.xcbuilddata/manifest.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/24d14de819975ea3adc898ff5084a6e8.xcbuilddata/manifest.json new file mode 100644 index 0000000..e3a9c0a --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/24d14de819975ea3adc898ff5084a6e8.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic"},"targets":{"":[""]},"nodes":{"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex":{"is-mutated":true},"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products":{"is-mutated":true},"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"is-mutated":true},"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS":{"is-mutated":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true}},"commands":{"":{"tool":"phony","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/_CodeSignature","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/_CodeSignature","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","inputs":[],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/macos","signature":"ab7033113b7da5d452b09742c52dcef0"},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex"],"outputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products"],"outputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug"]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--fused-phase0-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CodeSign":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-Validate":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/PkgInfo"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--VersionPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase0-compile-sources&link-binary©-bundle-resources":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase1-copy-files":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase2-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--swift-generated-headers":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--modules-ready":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CodeSign /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"shell","description":"CodeSign /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent/","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist/","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","--timestamp=none","--generate-entitlement-der","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"a23fc89ae29a5105cb44a12b53eb6503"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileAssetCatalog /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets":{"tool":"shell","description":"CompileAssetCatalog /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--enable-on-demand-resources","NO","--development-region","en","--target-device","mac","--minimum-deployment-target","10.14","--platform","macosx","--compile","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"deps":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"ee4a7796074baaa41e2392c76e83c04c"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib":{"tool":"shell","description":"CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--output-partial-info-plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","--auto-activate-custom-fonts","--target-device","mac","--minimum-deployment-target","10.14","--output-format","human-readable-text","--compile","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"cb54852f98d7c6790900eee45a95dc21"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CopySwiftLibs /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS","","",""],"outputs":[""],"deps":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ExtractAppIntentsMetadata":{"tool":"appintents-metadata","description":"ExtractAppIntentsMetadata","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-compiling":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-linking":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-scanning":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","","","","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--entry":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--immediate":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--unsigned-product-ready":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessInfoPlistFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/PkgInfo"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent":{"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackagingDER /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der":{"tool":"shell","description":"ProcessProductPackagingDER /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der"],"args":["/usr/bin/derq","query","-f","xml","-i","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent","-o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.app.xcent.der","--raw"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"9e4d1f06ae4279a486b8f1899d6a78ee"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterWithLaunchServices /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"lsregisterurl","description":"RegisterWithLaunchServices /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Touch /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"shell","description":"Touch /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"3ada87853c8935dce52c26bad7cbfb54"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Validate /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app":{"tool":"validate-product","description":"Validate /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","inputs":["","","",""],"outputs":["",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-non-framework-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterInputs.xcfilelist","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","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_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Manual","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.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","DIFF":"/usr/bin/diff","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","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","FILE_LIST":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles","FRAMEWORK_VERSION":"A","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","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 ","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_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"NO","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","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PREPROCESS":"NO","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"jayvashishtha","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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_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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22G90","MAC_OS_X_VERSION_ACTUAL":"130501","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130500","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRODUCT_MODULE_NAME":"Flutter_Assemble","PRODUCT_NAME":"Flutter Assemble","PRODUCT_SETTINGS_PATH":"","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPT_INPUT_FILE_0":"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","SCRIPT_INPUT_FILE_COUNT":"1","SCRIPT_INPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SKIP_INSTALL":"YES","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.SwiftFileList","SYMROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Flutter Assemble","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Flutter Assemble","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"Flutter Assemble_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Flutter Assemble PROJECT:Runner-\"","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"683e84528de4e998dc56ccda5a14716a"},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo/","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json/","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.abi.json"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc/","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule/","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.swiftmodule/arm64-apple-macos.swiftmodule"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Ld /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS normal":{"tool":"shell","description":"Ld /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS normal","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS","","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-macos10.14","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-L/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-L/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","-F/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-F/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","-filelist","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/../Frameworks","-Xlinker","-object_path_lto","-Xlinker","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat","-o","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/MacOS"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","deps":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/_dependency_info.dat"],"deps-style":"dependency-info","signature":"0f624d1ab7cd96e4c92d4c50173ce2fd"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","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_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Automatic","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"YES","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","CONTENTS_FOLDER_PATH":".app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO":".app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES":".app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/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","DIFF":"/usr/bin/diff","DOCUMENTATION_FOLDER_PATH":".app/Contents/Resources/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"NO","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":".app/Contents/Executables","EXECUTABLE_FOLDER_PATH":".app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO":".app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES":".app/Contents","EXECUTABLE_PATH":".app/Contents/MacOS/","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","EXTENSIONS_FOLDER_PATH":".app/Contents/Extensions","FILE_LIST":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles","FRAMEWORKS_FOLDER_PATH":".app/Contents/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":".app","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","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 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"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/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PATH":".app/Contents/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":".app/Contents/Resources/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":"jayvashishtha","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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":".app/Contents/Resources/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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/../Frameworks","LD_RUNPATH_SEARCH_PATHS_YES":"@loader_path/../Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":".app/Contents/Resources/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACH_O_TYPE":"mh_execute","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22G90","MAC_OS_X_VERSION_ACTUAL":"130501","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130500","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/.app/Contents/Resources","MODULES_FOLDER_PATH":".app/Contents/Modules","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","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/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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":".app/Contents/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo","PKGINFO_PATH":".app/Contents/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PLUGINS_FOLDER_PATH":".app/Contents/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":".app/Contents/PrivateHeaders","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_NAME":"","PRODUCT_SETTINGS_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","PROVISIONING_PROFILE_REQUIRED":"NO","PROVISIONING_PROFILE_REQUIRED_YES_YES":"YES","PROVISIONING_PROFILE_SUPPORTED":"YES","PUBLIC_HEADERS_FOLDER_PATH":".app/Contents/Headers","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":".app/Contents/Resources/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/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHALLOW_BUNDLE_PLATFORM":"NO","SHALLOW_BUNDLE_TRIPLE":"macos","SHALLOW_BUNDLE_ios_macabi":"NO","SHALLOW_BUNDLE_macos":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":".app/Contents/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":".app/Contents/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_MACCATALYST":"NO","SUPPORTS_ON_DEMAND_RESOURCES":"NO","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_EXTENSIONS_FOLDER_PATH":".app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO":".app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES":".app/Contents/SystemExtensions","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNLOCALIZED_RESOURCES_FOLDER_PATH":".app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO":".app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES":".app/Contents","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONPLIST_PATH":".app/Contents/version.plist","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM: PROJECT:Runner-\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":".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":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":".app/Contents/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","_WRAPPER_CONTENTS_DIR":"/Contents","_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO":"/Contents","_WRAPPER_PARENT_PATH":"/..","_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO":"/..","_WRAPPER_RESOURCES_DIR":"/Resources","_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO":"/Resources","__IS_NOT_MACOS":"NO","__IS_NOT_MACOS_macosx":"NO","__IS_NOT_SIMULATOR":"YES","__IS_NOT_SIMULATOR_simulator":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"cd4df960e995e0041e9a5d4a96641bfe"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.SwiftFileList","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-generated-files.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-own-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-all-target-headers.hmap","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/-project-headers.hmap","","","",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftmodule","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftsourceinfo","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.abi.json","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h","inputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/-Swift.h",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/-Swift.h"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/.LinkFileList"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/Flutter_project/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"]}}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/build-request.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/build-request.json new file mode 100644 index 0000000..4c8753e --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/build-request.json @@ -0,0 +1,63 @@ +{ + "buildCommand" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "configuredTargets" : [ + { + "guid" : "18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14" + } + ], + "containerPath" : "/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcworkspace", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx13.3", + "sdkVariant" : "macos", + "supportedArchitectures" : [ + "arm64e", + "arm64", + "x86_64" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products", + "derivedDataPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos", + "indexDataStoreFolderPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/PrecompiledHeaders", + "pchPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "commandLine" : { + "table" : { + "COMPILER_INDEX_STORE_ENABLE" : "NO", + "OBJROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "SYMROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "build", + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/description.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/description.msgpack new file mode 100644 index 0000000..5a6d22f Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/description.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/manifest.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/manifest.json new file mode 100644 index 0000000..c1234cc --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic"},"targets":{"":[""]},"nodes":{"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1":{"is-mutated":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true}},"commands":{"":{"tool":"phony","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","inputs":[],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"13b6d8b30bb1d4da63e30fd56c9053db"},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug"]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--fused-phase0-run-script":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CodeSign":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-Validate":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--VersionPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase0-compile-sources&link-binary©-bundle-resources":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase1-copy-files":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase2-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--swift-generated-headers":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--end":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--unsigned-product-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist/","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift/","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","--timestamp=none","--generate-entitlement-der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"cd32cd07b6284268ac31c024228debb3"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets":{"tool":"shell","description":"CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--enable-on-demand-resources","NO","--development-region","en","--target-device","mac","--minimum-deployment-target","10.14","--platform","macosx","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"28ba9dc77141e2a636656c478f51ca7f"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib":{"tool":"shell","description":"CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","task_1","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","--auto-activate-custom-fonts","--target-device","mac","--minimum-deployment-target","10.14","--output-format","human-readable-text","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"d03214ace453a087c519b773a501004d"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","",""],"outputs":[""],"deps":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ExtractAppIntentsMetadata":{"tool":"appintents-metadata","description":"ExtractAppIntentsMetadata","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-compiling":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-linking":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-scanning":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","","","","","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--entry":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--immediate":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--unsigned-product-ready":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent":{"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der":{"tool":"shell","description":"ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der"],"args":["/usr/bin/derq","query","-f","xml","-i","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","--raw"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"a3291242f6094c946284b091f1be2e73"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"lsregisterurl","description":"RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"71d40290a3015cdd13196a3a11edf44e"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"validate-product","description":"Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":["",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterInputs.xcfilelist","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters_impl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/breaks.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/collection.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/algorithms.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/boollist.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/canonicalized_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterable.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterator.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/comparators.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/empty_unmodifiable_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/functions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_zip.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/list_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/priority_queue.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/queue_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set_controller.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/unmodifiable_wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/assets/CupertinoIcons.ttf","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/flutter_lints-2.0.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/lints-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/matcher-0.12.16/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/blend/blend.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/contrast/contrast.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dislike/dislike_analyzer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/dynamic_color.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/material_dynamic_colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/src/tone_delta_constraint.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/cam16.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/hct.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/src/hct_solver.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/viewing_conditions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/material_color_utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/core_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/tonal_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_celebi.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wsmeans.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wu.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider_lab.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/dynamic_scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_content.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_expressive.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_fidelity.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_monochrome.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_neutral.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_tonal_spot.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_vibrant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/variant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/score/score.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/temperature/temperature_cache.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/color_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/math_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta_meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/path-1.8.3/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/test_api-0.6.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/error_helpers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/frustum.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/intersection_result.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/noise.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/obb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/opengl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/plane.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quad.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quaternion.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/ray.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/sphere.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/triangle.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/web-0.1.4-beta/LICENSE","/Users/jayvashishtha/Desktop/task_1/DOES_NOT_EXIST_RERUN_FOR_WILDCARD506594398","/Users/jayvashishtha/Desktop/task_1/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/lib/Main_Screen.dart","/Users/jayvashishtha/Desktop/task_1/lib/detail_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/horizontal_widgets.dart","/Users/jayvashishtha/Desktop/task_1/lib/main.dart","/Users/jayvashishtha/Desktop/task_1/lib/places_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/touriest_place.dart","/Users/jayvashishtha/Desktop/task_1/lib/vertical_widgets.dart","/Users/jayvashishtha/Desktop/task_1/pubspec.yaml","/Users/jayvashishtha/flutter/bin/cache/artifacts/material_fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/flutter/bin/cache/pkg/sky_engine/LICENSE","/Users/jayvashishtha/flutter/bin/internal/engine.version","/Users/jayvashishtha/flutter/packages/flutter/LICENSE","/Users/jayvashishtha/flutter/packages/flutter/lib/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/cupertino.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/foundation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/painting.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/rendering.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/scheduler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/services.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/listener_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween_sequence.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu_action.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/interface_level.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/refresh.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/route.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/search_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/sliding_segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_form_field_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_capabilities_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_platform_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_timeline_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/annotations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/assertions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/bitfield.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/capabilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/change_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/collections.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/diagnostics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/isolates.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/key.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/licenses.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/math.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/memory_allocations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/node.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/observer_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/persistent_hash_map.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/platform.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/print.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/serialization.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/stack_frame.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/timeline.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/unicode.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/arena.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/converter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag_details.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/eager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/events.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/force_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/gesture_settings.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/hit_test.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/long_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/monodrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multidrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multitap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/recognizer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/resampler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/scale.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/tap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/team.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/about.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_icons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/arc.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/back_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/calendar_date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/choice_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/circle_avatar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/color_scheme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_source.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevation_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expand_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_panel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filter_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_highlight.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_ripple.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_sparkle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_well.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_date_picker_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_decorator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state_mixin.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/mergeable_material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/no_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/paginated_data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/range_slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/refresh_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_view_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selectable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selection_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shaders/ink_sparkle.frag","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shadows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/stepper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tabs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar_text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/typography.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/_network_image_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/alignment.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/border_radius.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/borders.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_fit.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_shadow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/circle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/clip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/edge_insets.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/fractional_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/geometry.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/gradient.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_cache.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_decoder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_resolution.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_stream.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/inline_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/linear_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/matrix_utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/notched_shapes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/oval_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/paint_utilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/placeholder_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shape_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/stadium_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/star_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/strut_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/friction_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/spring_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/tolerance.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_layout.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_paint.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/editable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/error.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flex.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layout_helper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_body.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/mouse_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/paragraph.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/rotated_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/shifted_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_group.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/stack.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/tweens.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/wrap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/priority.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/ticker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_event.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_service.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_bundle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_manifest.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binary_messenger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/browser_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/clipboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/deferred_component.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/font_loader.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/haptic_feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/hardware_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_inserted_content.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_key.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_maps.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/live_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codec.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codecs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_cursor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_tracking.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_channel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_views.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_ios.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_web.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_windows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_channels.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_chrome.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_sound.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing_delta.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_formatter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_input.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_layout_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/undo_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/_platform_selectable_region_context_menu_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/actions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/annotated_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app_lifecycle_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/async.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/basic.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/color_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_button_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_selection_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dismissible.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/display_feature_sub_screen.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/disposable_build_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/drag_target.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dual_transition_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/editable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/form.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/framework.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/grid_paper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/heroes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_model.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/interactive_viewer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/lookup_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/media_query.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/notification_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overflow_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_storage.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/pages.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/placeholder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_menu_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_selectable_region_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/preferred_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration_properties.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/routes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/safe_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_aware_image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification_observer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selectable_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selection_container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shared_app_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/slotted_render_object_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/snapshot_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spacer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/status_transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_and_drag_gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_editing_intents.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_anchors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/title.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/undo_history.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/unique_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/widgets.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/icon_tree_shaker.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/macos.dart","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS"],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Manual","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.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","DIFF":"/usr/bin/diff","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","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","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORK_VERSION":"A","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","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 ","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"NO","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","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PREPROCESS":"NO","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"jayvashishtha","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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_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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRODUCT_MODULE_NAME":"Flutter_Assemble","PRODUCT_NAME":"Flutter Assemble","PRODUCT_SETTINGS_PATH":"","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPT_INPUT_FILE_0":"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","SCRIPT_INPUT_FILE_COUNT":"1","SCRIPT_INPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SKIP_INSTALL":"YES","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.SwiftFileList","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Flutter Assemble","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Flutter Assemble","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"Flutter Assemble_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Flutter Assemble PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"e414d3b2c37b0c705f46da005dd418f1"},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal":{"tool":"shell","description":"Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-macos10.14","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-filelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/../Frameworks","-Xlinker","-object_path_lto","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat"],"deps-style":"dependency-info","signature":"76f94df93ab3de23aa5bedcf6a81bbe6"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Automatic","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"YES","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","CONTENTS_FOLDER_PATH":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/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","DIFF":"/usr/bin/diff","DOCUMENTATION_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","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":"task_1.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"NO","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":"task_1.app/Contents/Executables","EXECUTABLE_FOLDER_PATH":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","EXECUTABLE_NAME":"task_1","EXECUTABLE_PATH":"task_1.app/Contents/MacOS/task_1","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Extensions","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"task_1.app","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","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 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"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/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PATH":"task_1.app/Contents/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"task_1.app/Contents/Resources/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":"jayvashishtha","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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":"task_1.app/Contents/Resources/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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/task_1_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/../Frameworks","LD_RUNPATH_SEARCH_PATHS_YES":"@loader_path/../Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACH_O_TYPE":"mh_execute","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22F66","MAC_OS_X_VERSION_ACTUAL":"130400","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130400","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","MODULES_FOLDER_PATH":"task_1.app/Contents/Modules","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","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/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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":"task_1.app/Contents/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo","PKGINFO_PATH":"task_1.app/Contents/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PLUGINS_FOLDER_PATH":"task_1.app/Contents/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"task_1.app/Contents/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_COPYRIGHT":"Copyright © 2023 com.example. All rights reserved.","PRODUCT_MODULE_NAME":"task_1","PRODUCT_NAME":"task_1","PRODUCT_SETTINGS_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","PROVISIONING_PROFILE_REQUIRED":"NO","PROVISIONING_PROFILE_REQUIRED_YES_YES":"YES","PROVISIONING_PROFILE_SUPPORTED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"task_1.app/Contents/Headers","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"task_1.app/Contents/Resources/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/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHALLOW_BUNDLE_PLATFORM":"NO","SHALLOW_BUNDLE_TRIPLE":"macos","SHALLOW_BUNDLE_ios_macabi":"NO","SHALLOW_BUNDLE_macos":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"task_1.app/Contents/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_MACCATALYST":"NO","SUPPORTS_ON_DEMAND_RESOURCES":"NO","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents/SystemExtensions","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNLOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONPLIST_PATH":"task_1.app/Contents/version.plist","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"task_1_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:task_1 PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"task_1.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":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"task_1.app/Contents/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","_WRAPPER_CONTENTS_DIR":"/Contents","_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO":"/Contents","_WRAPPER_PARENT_PATH":"/..","_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO":"/..","_WRAPPER_RESOURCES_DIR":"/Resources","_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO":"/Resources","__IS_NOT_MACOS":"NO","__IS_NOT_MACOS_macosx":"NO","__IS_NOT_SIMULATOR":"YES","__IS_NOT_SIMULATOR_simulator":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"184eae62b9ffb97d99462abc175d8f2e"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"]}}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/target-graph.txt b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/target-graph.txt new file mode 100644 index 0000000..42b9765 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/target-graph.txt @@ -0,0 +1,4 @@ +Target dependency graph (2 targets) +Flutter Assemble in Runner, no dependencies +Runner in Runner, depends on: +Flutter Assemble in Runner (explicit) \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/task-store.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/task-store.msgpack new file mode 100644 index 0000000..af95d65 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/950654c5c8c3818451cc616d65a14063.xcbuilddata/task-store.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1692880082.6751378_hash=18c1723432283e0cc55f10a6dcfd9e02plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1692880082.6751378_hash=18c1723432283e0cc55f10a6dcfd9e02plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json new file mode 100644 index 0000000..cfc5ab9 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1692880082.6751378_hash=18c1723432283e0cc55f10a6dcfd9e02plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e025ea8168e7f361777a2c24e316569906b","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","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_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","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_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CODE_SIGN_IDENTITY":"-","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","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_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","MACOSX_DEPLOYMENT_TARGET":"10.14","MTL_ENABLE_DEBUG_INFO":"YES","ONLY_ACTIVE_ARCH":"YES","SDKROOT":"macosx","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_OPTIMIZATION_LEVEL":"-Onone"},"guid":"18c1723432283e0cc55f10a6dcfd9e02491ce0b95e267568e25ae7780a1372cb","name":"Debug"},{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e023b4e622549547751db70167aba3359c6","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","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_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","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_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CODE_SIGN_IDENTITY":"-","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","ENABLE_NS_ASSERTIONS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_NO_COMMON_BLOCKS":"YES","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","MACOSX_DEPLOYMENT_TARGET":"10.14","MTL_ENABLE_DEBUG_INFO":"NO","SDKROOT":"macosx","SWIFT_COMPILATION_MODE":"wholemodule","SWIFT_OPTIMIZATION_LEVEL":"-O"},"guid":"18c1723432283e0cc55f10a6dcfd9e027768264cd287a1e0904457fceae1a862","name":"Release"},{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e023b4e622549547751db70167aba3359c6","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","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_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_DOCUMENTATION_COMMENTS":"YES","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_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CODE_SIGN_IDENTITY":"-","COPY_PHASE_STRIP":"NO","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","ENABLE_NS_ASSERTIONS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_NO_COMMON_BLOCKS":"YES","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","MACOSX_DEPLOYMENT_TARGET":"10.14","MTL_ENABLE_DEBUG_INFO":"NO","SDKROOT":"macosx","SWIFT_COMPILATION_MODE":"wholemodule","SWIFT_OPTIMIZATION_LEVEL":"-O"},"guid":"18c1723432283e0cc55f10a6dcfd9e02bd86a90f1c36dbd8aefd3aaeb694545c","name":"Profile"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileType":"sourcecode.swift","guid":"18c1723432283e0cc55f10a6dcfd9e0290d3d1ed97e73aa53c07fd80de982e98","path":"AppDelegate.swift","sourceTree":"","type":"file"},{"fileType":"sourcecode.swift","guid":"18c1723432283e0cc55f10a6dcfd9e0224b190b0ed104f7b1fa5480db83abd20","path":"MainFlutterWindow.swift","sourceTree":"","type":"file"},{"fileType":"text.plist.entitlements","guid":"18c1723432283e0cc55f10a6dcfd9e026174d6df16af839588ab7942437f2f71","path":"DebugProfile.entitlements","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.plist.entitlements","guid":"18c1723432283e0cc55f10a6dcfd9e02f8c88c09355594ab81c43ca5184ccc3c","path":"Release.entitlements","sourceTree":"","type":"file"},{"children":[{"fileType":"folder.assetcatalog","guid":"18c1723432283e0cc55f10a6dcfd9e02896112a93f2a09f72db0bec985ef4c64","path":"Runner/Assets.xcassets","sourceTree":"","type":"file"},{"children":[{"fileType":"file.xib","guid":"18c1723432283e0cc55f10a6dcfd9e02763f538027d5d06f7f7a9adf4a25ba48","path":"Base.lproj/MainMenu.xib","regionVariantName":"Base","sourceTree":"","type":"file"}],"guid":"18c1723432283e0cc55f10a6dcfd9e028c91953baeab2ee7d542aceae751d8da","name":"MainMenu.xib","path":"Runner","sourceTree":"","type":"variantGroup"},{"fileType":"text.plist.xml","guid":"18c1723432283e0cc55f10a6dcfd9e0252d81aa16345ac96bed37c28cf286c96","path":"Runner/Info.plist","sourceTree":"","type":"file"}],"guid":"18c1723432283e0cc55f10a6dcfd9e0299518cee7385cdc4e83ab27b28daa3a5","name":"Resources","path":"..","sourceTree":"","type":"group"},{"children":[{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e02c4902511cd7de506ddcb4d4fe24c1302","path":"AppInfo.xcconfig","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e025ea8168e7f361777a2c24e316569906b","path":"Debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e023b4e622549547751db70167aba3359c6","path":"Release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e020a4669ed274c6c98bfb089e33e31f774","path":"Warnings.xcconfig","sourceTree":"","type":"file"}],"guid":"18c1723432283e0cc55f10a6dcfd9e024574b2ccd21665db30e863fff96c66a3","name":"Configs","path":"Configs","sourceTree":"","type":"group"}],"guid":"18c1723432283e0cc55f10a6dcfd9e026e18656a8cc965ad690967d031085e97","name":"Runner","path":"Runner","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.swift","guid":"18c1723432283e0cc55f10a6dcfd9e02763b891d23f1b765a6d89a076d8c809a","path":"GeneratedPluginRegistrant.swift","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e02de8f22173ac02076f5e1a4037a7a022d","path":"Flutter-Debug.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e02cbbce583d8fa2f589e5976aaa6ca4838","path":"Flutter-Release.xcconfig","sourceTree":"","type":"file"},{"fileType":"text.xcconfig","guid":"18c1723432283e0cc55f10a6dcfd9e02ab1b4c8075174045e5db4076dff6212a","path":"ephemeral/Flutter-Generated.xcconfig","sourceTree":"","type":"file"}],"guid":"18c1723432283e0cc55f10a6dcfd9e02269bece1d8d8e3a750b7445e01eaaa26","name":"Flutter","path":"Flutter","sourceTree":"","type":"group"},{"children":[{"fileType":"sourcecode.swift","guid":"18c1723432283e0cc55f10a6dcfd9e021be7331c41a267304d507f2f7ede3183","path":"RunnerTests.swift","sourceTree":"","type":"file"}],"guid":"18c1723432283e0cc55f10a6dcfd9e023be7f6069b95e917b68b999c925dc718","name":"RunnerTests","path":"RunnerTests","sourceTree":"","type":"group"},{"guid":"18c1723432283e0cc55f10a6dcfd9e024a77263bfa3206c1680d175d55f390a4","name":"Products","path":"","sourceTree":"","type":"group"},{"guid":"18c1723432283e0cc55f10a6dcfd9e0241f010674bf28d8d1dbb94f79bb86245","name":"Frameworks","path":"","sourceTree":"","type":"group"}],"guid":"18c1723432283e0cc55f10a6dcfd9e02074de2f2f27c856d1f92cc4593463861","name":"Runner","path":"","sourceTree":"","type":"group"},"guid":"18c1723432283e0cc55f10a6dcfd9e02","path":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","projectDirectory":"/Users/jayvashishtha/Desktop/task_1/macos","targets":["TARGET@v11_hash=c008e5aa3e096db192f9ea9f215cf3fb","TARGET@v11_hash=eee5494efe7c66ae49af47ac69db4c35","TARGET@v11_hash=943a464f55c15d8a7736efeac6d3a67c"]} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=943a464f55c15d8a7736efeac6d3a67c-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=943a464f55c15d8a7736efeac6d3a67c-json new file mode 100644 index 0000000..5f23c93 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=943a464f55c15d8a7736efeac6d3a67c-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"buildSettings":{"CODE_SIGN_STYLE":"Manual","PRODUCT_NAME":"$(TARGET_NAME)"},"guid":"18c1723432283e0cc55f10a6dcfd9e02d5d345235681149dc98077be639d5732","name":"Debug"},{"buildSettings":{"CODE_SIGN_STYLE":"Automatic","PRODUCT_NAME":"$(TARGET_NAME)"},"guid":"18c1723432283e0cc55f10a6dcfd9e024173fbca35daa28e3bd208741257ac3f","name":"Release"},{"buildSettings":{"CODE_SIGN_STYLE":"Manual","PRODUCT_NAME":"$(TARGET_NAME)"},"guid":"18c1723432283e0cc55f10a6dcfd9e0235aef2f356a7eebaba70a2c1f0ccd906","name":"Profile"}],"buildPhases":[{"alwaysOutOfDate":"false","buildFiles":[],"emitEnvironment":"true","guid":"18c1723432283e0cc55f10a6dcfd9e02f4f5bcf30ee9448700f1908916ccb6e2","inputFileListPaths":["Flutter/ephemeral/FlutterInputs.xcfilelist"],"inputFilePaths":["Flutter/ephemeral/tripwire"],"name":"Run Script","originalObjectID":"33CC111E2044C6BF0003C045","outputFileListPaths":["Flutter/ephemeral/FlutterOutputs.xcfilelist"],"outputFilePaths":[],"scriptContents":"\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[],"guid":"18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a","name":"Flutter Assemble","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":1}],"type":"aggregate"} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c008e5aa3e096db192f9ea9f215cf3fb-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c008e5aa3e096db192f9ea9f215cf3fb-json new file mode 100644 index 0000000..85c03c0 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c008e5aa3e096db192f9ea9f215cf3fb-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e02c4902511cd7de506ddcb4d4fe24c1302","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","CLANG_ENABLE_MODULES":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_STYLE":"Automatic","COMBINE_HIDPI_IMAGES":"YES","INFOPLIST_FILE":"Runner/Info.plist","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/../Frameworks","PROVISIONING_PROFILE_SPECIFIER":"","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_VERSION":"5.0"},"guid":"18c1723432283e0cc55f10a6dcfd9e02414fc89210b939a670a56353deb389f9","name":"Debug"},{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e02c4902511cd7de506ddcb4d4fe24c1302","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","CLANG_ENABLE_MODULES":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/Release.entitlements","CODE_SIGN_STYLE":"Automatic","COMBINE_HIDPI_IMAGES":"YES","INFOPLIST_FILE":"Runner/Info.plist","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/../Frameworks","PROVISIONING_PROFILE_SPECIFIER":"","SWIFT_VERSION":"5.0"},"guid":"18c1723432283e0cc55f10a6dcfd9e02591de84c5dabac79be81ba6cbbf9c7d5","name":"Release"},{"baseConfigurationFileReference":"18c1723432283e0cc55f10a6dcfd9e02c4902511cd7de506ddcb4d4fe24c1302","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","CLANG_ENABLE_MODULES":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_STYLE":"Automatic","COMBINE_HIDPI_IMAGES":"YES","INFOPLIST_FILE":"Runner/Info.plist","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/../Frameworks","PROVISIONING_PROFILE_SPECIFIER":"","SWIFT_VERSION":"5.0"},"guid":"18c1723432283e0cc55f10a6dcfd9e02efdb1d0e782e0ff253b8b1542e0f27ef","name":"Profile"}],"buildPhases":[{"buildFiles":[{"fileReference":"18c1723432283e0cc55f10a6dcfd9e0224b190b0ed104f7b1fa5480db83abd20","guid":"18c1723432283e0cc55f10a6dcfd9e0282a68372325fbeb344a644fdc22a4f7e"},{"fileReference":"18c1723432283e0cc55f10a6dcfd9e0290d3d1ed97e73aa53c07fd80de982e98","guid":"18c1723432283e0cc55f10a6dcfd9e02a096ce12b9139e481d6bd81017d9c3bb"},{"fileReference":"18c1723432283e0cc55f10a6dcfd9e02763b891d23f1b765a6d89a076d8c809a","guid":"18c1723432283e0cc55f10a6dcfd9e020762c8823fdaf22393225d08db9f7bd7"}],"guid":"18c1723432283e0cc55f10a6dcfd9e0245468e5587d9dfa6699ece6600b0f31d","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"18c1723432283e0cc55f10a6dcfd9e02dfc51d21b116b68082271de2adc934b6","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"18c1723432283e0cc55f10a6dcfd9e02896112a93f2a09f72db0bec985ef4c64","guid":"18c1723432283e0cc55f10a6dcfd9e02bd1f27e44757c5ac88a22e01a15f15d9"},{"fileReference":"18c1723432283e0cc55f10a6dcfd9e028c91953baeab2ee7d542aceae751d8da","guid":"18c1723432283e0cc55f10a6dcfd9e02c3e2c81dad01081f94f0811e7a2c7643"}],"guid":"18c1723432283e0cc55f10a6dcfd9e023cf19e18f74724910e507f60975bc54e","type":"com.apple.buildphase.resources"},{"buildFiles":[],"destinationSubfolder":"$(FRAMEWORKS_FOLDER_PATH)","destinationSubpath":"","guid":"18c1723432283e0cc55f10a6dcfd9e020d4f58b498d2216a5c31cecb5ed70906","type":"com.apple.buildphase.copy-files"},{"alwaysOutOfDate":"true","buildFiles":[],"emitEnvironment":"true","guid":"18c1723432283e0cc55f10a6dcfd9e0280fce6e78b27fa69321adec3779466d5","inputFileListPaths":[],"inputFilePaths":[],"name":"Run Script","originalObjectID":"3399D490228B24CF009A79C7","outputFileListPaths":[],"outputFilePaths":[],"scriptContents":"echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[{"guid":"18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a","name":"Flutter Assemble"}],"guid":"18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14","name":"Runner","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"18c1723432283e0cc55f10a6dcfd9e0211f07a77f8580f053762d0563c8edc82","name":"task_1.app","type":"product"},"productTypeIdentifier":"com.apple.product-type.application","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Release","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Profile","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=eee5494efe7c66ae49af47ac69db4c35-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=eee5494efe7c66ae49af47ac69db4c35-json new file mode 100644 index 0000000..c95dba7 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=eee5494efe7c66ae49af47ac69db4c35-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"buildSettings":{"BUNDLE_LOADER":"$(TEST_HOST)","CURRENT_PROJECT_VERSION":"1","GENERATE_INFOPLIST_FILE":"YES","MARKETING_VERSION":"1.0","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1.RunnerTests","PRODUCT_NAME":"$(TARGET_NAME)","SWIFT_VERSION":"5.0","TEST_HOST":"$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"},"guid":"18c1723432283e0cc55f10a6dcfd9e020e3be69526347d68653d8a2274b2c0d9","name":"Debug"},{"buildSettings":{"BUNDLE_LOADER":"$(TEST_HOST)","CURRENT_PROJECT_VERSION":"1","GENERATE_INFOPLIST_FILE":"YES","MARKETING_VERSION":"1.0","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1.RunnerTests","PRODUCT_NAME":"$(TARGET_NAME)","SWIFT_VERSION":"5.0","TEST_HOST":"$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"},"guid":"18c1723432283e0cc55f10a6dcfd9e02d9960b267d2ba5d9e6255f5751aeaeef","name":"Release"},{"buildSettings":{"BUNDLE_LOADER":"$(TEST_HOST)","CURRENT_PROJECT_VERSION":"1","GENERATE_INFOPLIST_FILE":"YES","MARKETING_VERSION":"1.0","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1.RunnerTests","PRODUCT_NAME":"$(TARGET_NAME)","SWIFT_VERSION":"5.0","TEST_HOST":"$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"},"guid":"18c1723432283e0cc55f10a6dcfd9e028ca89780f1f99a65a6376f9ab84c6919","name":"Profile"}],"buildPhases":[{"buildFiles":[{"fileReference":"18c1723432283e0cc55f10a6dcfd9e021be7331c41a267304d507f2f7ede3183","guid":"18c1723432283e0cc55f10a6dcfd9e027a75808882b9b3cdb0f23f0546695669"}],"guid":"18c1723432283e0cc55f10a6dcfd9e020215a83759096726e1ad289282589147","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"18c1723432283e0cc55f10a6dcfd9e0243295a6f17478e251aad30743fdf38bb","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"18c1723432283e0cc55f10a6dcfd9e0284350398ef4c3e78407f8b205f461570","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14","name":"Runner"}],"guid":"18c1723432283e0cc55f10a6dcfd9e02d14efa5122de29b6143434737a6a0e64","name":"RunnerTests","performanceTestsBaselinesPath":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj/xcshareddata/xcbaselines/331C80D4294CF70F00263BE5.xcbaseline","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"18c1723432283e0cc55f10a6dcfd9e022e82c8d04e1e9d41599eb7defe1ac508","name":"RunnerTests.xctest","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle.unit-test","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Release","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"$(PRODUCT_BUNDLE_IDENTIFIER)","configurationName":"Profile","provisioningStyle":1}],"type":"standard"} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=4a06dc085858515d7825732f9fc1a012_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=4a06dc085858515d7825732f9fc1a012_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json new file mode 100644 index 0000000..332784f --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=4a06dc085858515d7825732f9fc1a012_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json @@ -0,0 +1 @@ +{"guid":"db345a3ee8f610a90768e0d381ac2443","name":"Runner","path":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcworkspace","projects":["PROJECT@v11_mod=1692880082.6751378_hash=18c1723432283e0cc55f10a6dcfd9e02plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1"]} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=8678ceb4b991a8c224889857a6bee94c_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=8678ceb4b991a8c224889857a6bee94c_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json new file mode 100644 index 0000000..46c26cf --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=8678ceb4b991a8c224889857a6bee94c_subobjects=f8566cca00e54856b2ecbeab1a0d9f79-json @@ -0,0 +1 @@ +{"guid":"db345a3ee8f610a90768e0d381ac2443","name":"Runner","path":"/Users/jayvashishtha/Desktop/Flutter_project/task_1/macos/Runner.xcworkspace","projects":["PROJECT@v11_mod=1692880082.6751378_hash=18c1723432283e0cc55f10a6dcfd9e02plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1"]} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/build.db b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/build.db new file mode 100644 index 0000000..b3395b8 Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/build.db differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/build-request.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/build-request.json new file mode 100644 index 0000000..4c8753e --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/build-request.json @@ -0,0 +1,63 @@ +{ + "buildCommand" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "configuredTargets" : [ + { + "guid" : "18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14" + } + ], + "containerPath" : "/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcworkspace", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx13.3", + "sdkVariant" : "macos", + "supportedArchitectures" : [ + "arm64e", + "arm64", + "x86_64" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products", + "derivedDataPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos", + "indexDataStoreFolderPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Index.noindex/PrecompiledHeaders", + "pchPath" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "commandLine" : { + "table" : { + "COMPILER_INDEX_STORE_ENABLE" : "NO", + "OBJROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex", + "SYMROOT" : "/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "build", + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/description.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/description.msgpack new file mode 100644 index 0000000..452859d Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/description.msgpack differ diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/manifest.json b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/manifest.json new file mode 100644 index 0000000..8f3eb59 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic"},"targets":{"":[""]},"nodes":{"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"is-mutated":true},"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1":{"is-mutated":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true},"":{"is-command-timestamp":true}},"commands":{"":{"tool":"phony","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"roots":["/tmp/Runner.dst","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk /Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","inputs":[],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"13b6d8b30bb1d4da63e30fd56c9053db"},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","inputs":[],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"]},"P0:::CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products"],"outputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug"]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--fused-phase0-run-script":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:::Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CodeSign":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--Barrier-Validate":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--VersionPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase0-compile-sources&link-binary©-bundle-resources":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase1-copy-files":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--fused-phase2-run-script":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--package-copy-files-phase":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--swift-generated-headers":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--end":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--unsigned-product-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"outputs":[""]},"P0:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:Gate target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"CodeSign /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist/","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib/","/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift/","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/_CodeSignature","",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","--timestamp=none","--generate-entitlement-der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"cd32cd07b6284268ac31c024228debb3"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets":{"tool":"shell","description":"CompileAssetCatalog /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources /Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets/","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--enable-on-demand-resources","NO","--development-region","en","--target-device","mac","--minimum-deployment-target","10.14","--platform","macosx","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"28ba9dc77141e2a636656c478f51ca7f"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib":{"tool":"shell","description":"CompileXIB /Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","task_1","--output-partial-info-plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","--auto-activate-custom-fonts","--target-device","mac","--minimum-deployment-target","10.14","--output-format","human-readable-text","--compile","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/macos/Runner/Base.lproj/MainMenu.xib"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"d03214ace453a087c519b773a501004d"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","",""],"outputs":[""],"deps":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ExtractAppIntentsMetadata":{"tool":"appintents-metadata","description":"ExtractAppIntentsMetadata","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-compiling":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-linking":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--begin-scanning":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--end":{"tool":"phony","inputs":["","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~iphone.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu~ipad.nib","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","","","","","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--entry":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--immediate":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--modules-ready":{"tool":"phony","inputs":["","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--unsigned-product-ready":{"tool":"phony","inputs":["","","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Gate target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources":{"tool":"mkdir","description":"MkDir /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist /Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent":{"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/DebugProfile.entitlements","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der":{"tool":"shell","description":"ProcessProductPackagingDER /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der"],"args":["/usr/bin/derq","query","-f","xml","-i","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.app.xcent.der","--raw"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"a3291242f6094c946284b091f1be2e73"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"lsregisterurl","description":"RegisterWithLaunchServices /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":[""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"shell","description":"Touch /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","signature":"71d40290a3015cdd13196a3a11edf44e"},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app":{"tool":"validate-product","description":"Validate /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","inputs":["","","",""],"outputs":["",""]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/Entitlements.plist"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/all-product-headers.yaml"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-non-framework-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap"]},"P0:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1.hmap"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterInputs.xcfilelist","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters_impl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/breaks.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/collection.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/algorithms.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/boollist.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/canonicalized_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterable.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_iterator.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/combined_wrappers/combined_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/comparators.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/empty_unmodifiable_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/equality_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/functions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/iterable_zip.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/list_extensions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/priority_queue.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/queue_list.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/union_set_controller.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/unmodifiable_wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/collection-1.17.2/lib/src/wrappers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/assets/CupertinoIcons.ttf","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/flutter_lints-2.0.2/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/lints-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/matcher-0.12.16/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/blend/blend.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/contrast/contrast.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dislike/dislike_analyzer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/dynamic_color.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/material_dynamic_colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/dynamiccolor/src/tone_delta_constraint.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/cam16.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/hct.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/src/hct_solver.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/hct/viewing_conditions.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/material_color_utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/core_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/palettes/tonal_palette.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_celebi.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_map.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wsmeans.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/quantizer_wu.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/quantize/src/point_provider_lab.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/dynamic_scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_content.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_expressive.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_fidelity.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_monochrome.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_neutral.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_tonal_spot.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/scheme_vibrant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/scheme/variant.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/score/score.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/temperature/temperature_cache.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/color_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/utils/math_utils.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/meta-1.9.1/lib/meta_meta.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/path-1.8.3/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/test_api-0.6.0/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/colors.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/constants.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/error_helpers.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/frustum.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/intersection_result.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/matrix4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/noise.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/obb3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/opengl.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/plane.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quad.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/quaternion.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/ray.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/sphere.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/triangle.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/utilities.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector2.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector3.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart","/Users/jayvashishtha/.pub-cache/hosted/pub.dev/web-0.1.4-beta/LICENSE","/Users/jayvashishtha/Desktop/task_1/DOES_NOT_EXIST_RERUN_FOR_WILDCARD559563646","/Users/jayvashishtha/Desktop/task_1/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/lib/Main_Screen.dart","/Users/jayvashishtha/Desktop/task_1/lib/detail_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/horizontal_widgets.dart","/Users/jayvashishtha/Desktop/task_1/lib/main.dart","/Users/jayvashishtha/Desktop/task_1/lib/places_page.dart","/Users/jayvashishtha/Desktop/task_1/lib/touriest_place.dart","/Users/jayvashishtha/Desktop/task_1/lib/vertical_widgets.dart","/Users/jayvashishtha/Desktop/task_1/pubspec.yaml","/Users/jayvashishtha/flutter/bin/cache/artifacts/material_fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/flutter/bin/cache/pkg/sky_engine/LICENSE","/Users/jayvashishtha/flutter/bin/internal/engine.version","/Users/jayvashishtha/flutter/packages/flutter/LICENSE","/Users/jayvashishtha/flutter/packages/flutter/lib/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/cupertino.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/foundation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/painting.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/rendering.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/scheduler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/services.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animation_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/listener_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/animation/tween_sequence.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/activity_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/context_menu_action.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/form_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/interface_level.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_section.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/refresh.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/route.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/search_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/sliding_segmented_control.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/tab_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_form_field_row.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/cupertino/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_capabilities_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_isolates_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_platform_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/_timeline_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/annotations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/assertions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/bitfield.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/capabilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/change_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/collections.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/consolidate_response.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/diagnostics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/isolates.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/key.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/licenses.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/math.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/memory_allocations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/node.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/observer_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/persistent_hash_map.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/platform.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/print.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/serialization.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/stack_frame.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/synchronous_future.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/timeline.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/foundation/unicode.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/arena.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/converter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/drag_details.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/eager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/events.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/force_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/gesture_settings.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/hit_test.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/long_press.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/monodrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multidrag.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/multitap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/recognizer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/resampler.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/scale.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/tap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/team.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/gestures/velocity_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/about.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/action_icons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/arc.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/back_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/badge_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/banner_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_style_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/calendar_date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/card_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/checkbox_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/chip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/choice_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/circle_avatar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/color_scheme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/curves.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_source.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/data_table_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/date_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/desktop_text_selection_toolbar_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dialog_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/divider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/dropdown_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevated_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/elevation_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expand_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_panel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/expansion_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filled_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/filter_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flexible_space_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_location.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/floating_action_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icon_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/icons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_highlight.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_ripple.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_sparkle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/ink_well.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_chip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_date_picker_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/input_decorator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/list_tile_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/material_state_mixin.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/mergeable_material.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_drawer_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/navigation_rail_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/no_splash.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/outlined_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/page_transitions_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/paginated_data_table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/popup_menu_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/progress_indicator_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/radio_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/range_slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/refresh_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scaffold.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/scrollbar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_anchor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/search_view_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/segmented_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selectable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/selection_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shaders/ink_sparkle.frag","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/shadows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/slider_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/snack_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/spell_check_suggestions_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/stepper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_list_tile.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/switch_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tab_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tabs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_button_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_form_field.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_selection_toolbar_text_button.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/text_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/time_picker_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggle_buttons_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/toggleable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/tooltip_visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/typography.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/_network_image_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/alignment.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/basic_types.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/beveled_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/border_radius.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/borders.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_fit.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/box_shadow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/circle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/clip.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/colors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/continuous_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/decoration_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/edge_insets.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/flutter_logo.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/fractional_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/geometry.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/gradient.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_cache.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_decoder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_resolution.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/image_stream.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/inline_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/linear_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/matrix_utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/notched_shapes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/oval_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/paint_utilities.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/placeholder_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/rounded_rectangle_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shader_warm_up.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/shape_decoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/stadium_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/star_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/strut_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_painter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/painting/text_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/clamped_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/friction_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/gravity_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/spring_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/tolerance.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/physics/utils.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_layout.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/custom_paint.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/editable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/error.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flex.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/flow.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/layout_helper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_body.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/list_wheel_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/mouse_tracker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/object.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/paragraph.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/proxy_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/rotated_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/shifted_box.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_group.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_padding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/stack.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/table_border.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/tweens.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/viewport_offset.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/rendering/wrap.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/priority.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/scheduler/ticker.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_event.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/semantics/semantics_service.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_bundle.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/asset_manifest.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binary_messenger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/browser_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/clipboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/deferred_component.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/font_loader.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/haptic_feedback.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/hardware_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_inserted_content.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_key.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/keyboard_maps.g.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/live_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codec.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/message_codecs.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_cursor.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/mouse_tracking.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_channel.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/platform_views.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_android.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_ios.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_linux.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_macos.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_web.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/raw_keyboard_windows.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_channels.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_chrome.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/system_sound.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_editing_delta.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_formatter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_input.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/text_layout_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/services/undo_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/_platform_selectable_region_context_menu_io.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/actions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_cross_fade.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/animated_switcher.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/annotated_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/app_lifecycle_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/async.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autocomplete.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/autofill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/automatic_keep_alive.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/banner.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/basic.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/binding.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/color_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/constants.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_button_item.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/context_menu_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/debug.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/decorated_sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_selection_style.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dismissible.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/display_feature_sub_screen.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/disposable_build_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/drag_target.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/dual_transition_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/editable_text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_manager.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/focus_traversal.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/form.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/framework.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/gesture_detector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/grid_paper.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/heroes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_filter.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/image_icon.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/implicit_animations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_model.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/inherited_theme.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/interactive_viewer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/localizations.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/lookup_boundary.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/magnifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/media_query.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/navigator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/notification_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/orientation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overflow_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/overscroll_indicator.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_storage.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/page_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/pages.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/performance_overlay.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/placeholder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_menu_bar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_selectable_region_context_menu.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/platform_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/preferred_size.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/primary_scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/reorderable_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/restoration_properties.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/router.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/routes.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/safe_area.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_activity.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_aware_image_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_configuration.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_controller.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_notification_observer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_simulation.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollable_helpers.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/scrollbar.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selectable_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/selection_container.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/semantics_debugger.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/service_extensions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shared_app_data.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/shortcuts.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_fill.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_layout_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_persistent_header.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/slotted_render_object_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/snapshot_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spacer.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/spell_check.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/status_transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/table.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_and_drag_gestures.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tap_region.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_editing_intents.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_anchors.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/text_selection_toolbar_layout_delegate.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/texture.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/ticker_provider.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/title.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/transitions.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/tween_animation_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_scroll_view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/two_dimensional_viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/undo_history.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/unique_widget.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/value_listenable_builder.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/view.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/viewport.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/visibility.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_inspector.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/widget_span.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart","/Users/jayvashishtha/flutter/packages/flutter/lib/widgets.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/icon_tree_shaker.dart","/Users/jayvashishtha/flutter/packages/flutter_tools/lib/src/build_system/targets/macos.dart","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/App","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS"],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Manual","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.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","DIFF":"/usr/bin/diff","DONT_GENERATE_INFOPLIST_FILE":"NO","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":".dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","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","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORK_VERSION":"A","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","GCC_DYNAMIC_NO_PIC":"NO","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 ","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"YES","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"NO","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","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PREPROCESS":"NO","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"jayvashishtha","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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_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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22G90","MAC_OS_X_VERSION_ACTUAL":"130501","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130500","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRODUCT_MODULE_NAME":"Flutter_Assemble","PRODUCT_NAME":"Flutter Assemble","PRODUCT_SETTINGS_PATH":"","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPT_INPUT_FILE_0":"/Users/jayvashishtha/Desktop/task_1/macos/Flutter/ephemeral/tripwire","SCRIPT_INPUT_FILE_COUNT":"1","SCRIPT_INPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SKIP_INSTALL":"YES","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/arm64/Flutter Assemble.SwiftFileList","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Flutter Assemble","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Flutter Assemble","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"Flutter Assemble_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Flutter Assemble PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"aad2746e5b32a483e95be7dd47dabdba"},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-3fa5549bc5b405fd1f97b4ed50333249-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-b56785ffd0419c7e4c1f7527eadc0742-resolved.xcfilelist"]},"P1:target-Flutter Assemble-18c1723432283e0cc55f10a6dcfd9e02339362e37688461f7f8b651800569a9a-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Script-33CC111E2044C6BF0003C045.sh"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule/","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal":{"tool":"shell","description":"Ld /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 normal","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/MainFlutterWindow.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1","","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-macos10.14","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-L/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug","-F/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","-filelist","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/../Frameworks","-Xlinker","-object_path_lto","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat","-o","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1"],"env":{},"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","deps":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1_dependency_info.dat"],"deps-style":"dependency-info","signature":"76f94df93ab3de23aa5bedcf6a81bbe6"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"shell","description":"PhaseScriptExecution Run Script /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALLOW_TARGET_PLATFORM_SPECIALIZATION":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"jayvashishtha","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","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","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 x86_64","ARCHS_STANDARD_32_64_BIT":"arm64 x86_64 i386","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","AVAILABLE_PLATFORMS":"appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"NO","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","BUNDLE_CONTENTS_FOLDER_PATH":"Contents/","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_EXECUTABLE_FOLDER_PATH":"Contents/MacOS","BUNDLE_EXTENSIONS_FOLDER_PATH":"Contents/Extensions","BUNDLE_FORMAT":"deep","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Contents/Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"Contents/PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"Contents/PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Contents/Headers","CACHE_ROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CCHROOT":"/var/folders/tx/mklpfn3s7c312jsl_j8h_hlm0000gn/C/com.apple.DeveloperTools/14.3.1-14E300c/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION":"YES_AGGRESSIVE","CLANG_CXX_LANGUAGE_STANDARD":"gnu++14","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex/Session.modulevalidation","CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY":"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_DOCUMENTATION_COMMENTS":"YES","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_REPEATED_USE_OF_WEAK":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_PRAGMA_PACK":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNGUARDED_AVAILABILITY":"YES_AGGRESSIVE","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","COCOAPODS_PARALLEL_CODE_SIGN":"true","CODESIGNING_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_ENTITLEMENTS":"Runner/DebugProfile.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_IDENTITY_NO":"Apple Development","CODE_SIGN_IDENTITY_YES":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","CODE_SIGN_STYLE":"Automatic","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"YES","COMPILER_INDEX_STORE_ENABLE":"NO","COMPOSITE_SDK_DIRS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/CompositeSDKs","COMPRESS_PNG_FILES":"NO","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","CONFIGURATION_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug","CONTENTS_FOLDER_PATH":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents","CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_VARIANT":"normal","DART_DEFINES":"RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC9iMjAxODNlMDQwOTYwOTRiY2MzN2Q5Y2RlMmE0Yjk2ZjVjYzY4NGNmLw==","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"NO","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_SETTING_NAME":"MACOSX_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3","DERIVED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/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","DIFF":"/usr/bin/diff","DOCUMENTATION_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","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":"task_1.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","DYNAMIC_LIBRARY_EXTENSION":"dylib","EAGER_LINKING":"NO","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.provisionprofile","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_APP_SANDBOX":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_DEFAULT_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"NO","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"NO","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":"task_1.app/Contents/Executables","EXECUTABLE_FOLDER_PATH":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/MacOS","EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","EXECUTABLE_NAME":"task_1","EXECUTABLE_PATH":"task_1.app/Contents/MacOS/task_1","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Extensions","FILE_LIST":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/jayvashishtha/Desktop/task_1","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"1.0.0","FLUTTER_BUILD_NUMBER":"1","FLUTTER_ROOT":"/Users/jayvashishtha/flutter","FLUTTER_TARGET":"/Users/jayvashishtha/Desktop/task_1/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"task_1.app","FUSE_BUILD_PHASES":"YES","FUSE_BUILD_SCRIPT_PHASES":"NO","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu11","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 ","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","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_SHADOW":"YES","GCC_WARN_STRICT_SELECTOR_MATCH":"YES","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/GeneratedModuleMaps","GENERATE_INFOPLIST_FILE":"NO","GENERATE_INTERMEDIATE_TEXT_BASED_STUBS":"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/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/include ","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/jayvashishtha","HOST_PLATFORM":"macosx","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"same-as-input","INFOPLIST_PATH":"task_1.app/Contents/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"task_1.app/Contents/Resources/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":"jayvashishtha","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IOS_UNZIPPERED_TWIN_PREFIX_PATH":"/System/iOSSupport","IS_MACCATALYST":"NO","IS_UIKITFORMAC":"NO","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":"task_1.app/Contents/Resources/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_CFLAGS_CLASSIC":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KASAN_CFLAGS_TBI":"-DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-uar-retag-to-zero=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/task_1_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" @executable_path/../Frameworks","LD_RUNPATH_SEARCH_PATHS_YES":"@loader_path/../Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","LINK_OBJC_RUNTIME":"YES","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_NO":"macos10.14","LLVM_TARGET_TRIPLE_OS_VERSION_YES":"macos13.3","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZATION_EXPORT_SUPPORTED":"YES","LOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","LOCSYMROOT":"/Users/jayvashishtha/Desktop/task_1/macos","MACH_O_TYPE":"mh_execute","MACOSX_DEPLOYMENT_TARGET":"10.14","MAC_OS_X_PRODUCT_BUILD_VERSION":"22G90","MAC_OS_X_VERSION_ACTUAL":"130501","MAC_OS_X_VERSION_MAJOR":"130000","MAC_OS_X_VERSION_MINOR":"130500","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources","MODULES_FOLDER_PATH":"task_1.app/Contents/Modules","MODULE_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"arm64","NATIVE_ARCH_32_BIT":"arm","NATIVE_ARCH_64_BIT":"arm64","NATIVE_ARCH_ACTUAL":"arm64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","OBJROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","PACKAGE_CONFIG":"/Users/jayvashishtha/Desktop/task_1/.dart_tool/package_config.json","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/appleinternal/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/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/jayvashishtha/flutter/bin","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":"task_1.app/Contents/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo","PKGINFO_PATH":"task_1.app/Contents/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform","PLATFORM_DISPLAY_NAME":"macOS","PLATFORM_FAMILY_NAME":"macOS","PLATFORM_NAME":"macosx","PLATFORM_PREFERRED_ARCH":"x86_64","PLIST_FILE_OUTPUT_FORMAT":"same-as-input","PLUGINS_FOLDER_PATH":"task_1.app/Contents/PlugIns","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"task_1.app/Contents/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"com.example.task1","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_COPYRIGHT":"Copyright © 2023 com.example. All rights reserved.","PRODUCT_MODULE_NAME":"task_1","PRODUCT_NAME":"task_1","PRODUCT_SETTINGS_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources","PROJECT_DIR":"/Users/jayvashishtha/Desktop/task_1/macos","PROJECT_FILE_PATH":"/Users/jayvashishtha/Desktop/task_1/macos/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build","PROJECT_TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","PROVISIONING_PROFILE_REQUIRED":"NO","PROVISIONING_PROFILE_REQUIRED_YES_YES":"YES","PROVISIONING_PROFILE_SUPPORTED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"task_1.app/Contents/Headers","RECOMMENDED_MACOSX_DEPLOYMENT_TARGET":"10.14.6","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","REZ_COLLECTOR_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"task_1.app/Contents/Resources/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/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_DIR_macosx13_3":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk","SDK_NAME":"macosx13.3","SDK_NAMES":"macosx13.3","SDK_PRODUCT_BUILD_VERSION":"22E245","SDK_STAT_CACHE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos","SDK_STAT_CACHE_ENABLE":"YES","SDK_STAT_CACHE_PATH":"/Users/jayvashishtha/Desktop/task_1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache","SDK_VERSION":"13.3","SDK_VERSION_ACTUAL":"130300","SDK_VERSION_MAJOR":"130000","SDK_VERSION_MINOR":"130300","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":"NO","SHALLOW_BUNDLE_PLATFORM":"NO","SHALLOW_BUNDLE_TRIPLE":"macos","SHALLOW_BUNDLE_ios_macabi":"NO","SHALLOW_BUNDLE_macos":"NO","SHARED_DERIVED_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"task_1.app/Contents/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/PrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"task_1.app/Contents/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/jayvashishtha/Desktop/task_1/macos","SRCROOT":"/Users/jayvashishtha/Desktop/task_1/macos","STRINGSDATA_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch","STRINGSDATA_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","STRINGS_FILE_INFOPLIST_RENAME":"YES","STRINGS_FILE_OUTPUT_ENCODING":"UTF-16","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"NO","STRIP_PNG_TEXT":"NO","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_PLATFORMS":"macosx","SUPPORTS_MACCATALYST":"NO","SUPPORTS_ON_DEMAND_RESOURCES":"NO","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"DEBUG","SWIFT_EMIT_LOC_STRINGS":"NO","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"macos","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products","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_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_EXTENSIONS_FOLDER_PATH":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Library/SystemExtensions","SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents/SystemExtensions","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_DEMANGLE":"YES","TAPI_ENABLE_PROJECT_HEADERS":"NO","TAPI_LANGUAGE":"objective-c","TAPI_LANGUAGE_STANDARD":"compiler-default","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Products/Debug","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILES_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_FILE_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build","TEMP_ROOT":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNINSTALLED_PRODUCTS_DIR":"/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/UninstalledProducts","UNLOCALIZED_RESOURCES_FOLDER_PATH":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO":"task_1.app/Contents/Resources","UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES":"task_1.app/Contents","UNSTRIPPED_PRODUCT":"NO","USER":"jayvashishtha","USER_APPS_DIR":"/Users/jayvashishtha/Applications","USER_LIBRARY_DIR":"/Users/jayvashishtha/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONPLIST_PATH":"task_1.app/Contents/version.plist","VERSION_INFO_BUILDER":"jayvashishtha","VERSION_INFO_FILE":"task_1_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:task_1 PROJECT:Runner-\"","WARNING_CFLAGS":"-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"task_1.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":"14E300c","XCODE_VERSION_ACTUAL":"1431","XCODE_VERSION_MAJOR":"1400","XCODE_VERSION_MINOR":"1430","XPCSERVICES_FOLDER_PATH":"task_1.app/Contents/XPCServices","YACC":"yacc","_BOOL_":"NO","_BOOL_NO":"NO","_BOOL_YES":"YES","_DEVELOPMENT_TEAM_IS_EMPTY":"YES","_IS_EMPTY_":"YES","_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY":"NO","_WRAPPER_CONTENTS_DIR":"/Contents","_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO":"/Contents","_WRAPPER_PARENT_PATH":"/..","_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO":"/..","_WRAPPER_RESOURCES_DIR":"/Resources","_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO":"/Resources","__IS_NOT_MACOS":"NO","__IS_NOT_MACOS_macosx":"NO","__IS_NOT_SIMULATOR":"YES","__IS_NOT_SIMULATOR_simulator":"NO","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/jayvashishtha/Desktop/task_1/macos","control-enabled":false,"signature":"9efc6a16764aec6d5e896f7ae00a3e6b"},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Runner normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/jayvashishtha/Desktop/task_1/macos/Runner/MainFlutterWindow.swift","/Users/jayvashishtha/Desktop/task_1/macos/Runner/AppDelegate.swift","/Users/jayvashishtha/Desktop/task_1/macos/Flutter/GeneratedPluginRegistrant.swift","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.SwiftFileList","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-generated-files.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-own-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-all-target-headers.hmap","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/task_1-project-headers.hmap","","","",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/Runner Swift Compilation Requirements Finished","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftmodule","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftsourceinfo","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.abi.json","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.swiftdoc"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h","inputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1-Swift.h",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/task_1-Swift.h"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/arm64/task_1.LinkFileList"]},"P1:target-Runner-18c1723432283e0cc55f10a6dcfd9e02a26d6e580d3222b86d62fb80ec380c14-:Debug:WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh","inputs":["",""],"outputs":["/Users/jayvashishtha/Desktop/task_1/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh"]}}} \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/target-graph.txt b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/target-graph.txt new file mode 100644 index 0000000..42b9765 --- /dev/null +++ b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/target-graph.txt @@ -0,0 +1,4 @@ +Target dependency graph (2 targets) +Flutter Assemble in Runner, no dependencies +Runner in Runner, depends on: +Flutter Assemble in Runner (explicit) \ No newline at end of file diff --git a/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/task-store.msgpack b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/task-store.msgpack new file mode 100644 index 0000000..181fc5c Binary files /dev/null and b/Task1/build/macos/Build/Intermediates.noindex/XCBuildData/c0549909a35fbb992a8013d4733505d5.xcbuilddata/task-store.msgpack differ diff --git a/Task1/build/macos/Build/Products/Debug/.last_build_id b/Task1/build/macos/Build/Products/Debug/.last_build_id new file mode 100644 index 0000000..5f740be --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/.last_build_id @@ -0,0 +1 @@ +ffe1251ec78ede568d24e8281a9cb0dc \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/App b/Task1/build/macos/Build/Products/Debug/App.framework/App new file mode 120000 index 0000000..d4af921 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/App @@ -0,0 +1 @@ +Versions/Current/App \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Resources b/Task1/build/macos/Build/Products/Debug/App.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/App b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/App new file mode 100755 index 0000000..adc98c1 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/App differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..8a072d0 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,23 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + + + diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..146fb51 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/images/.DS_Store  assetassets/images/.DS_Storeassets/images/Disney_land.webp  assetassets/images/Disney_land.webpassets/images/Eiffel_tower.jpeg  assetassets/images/Eiffel_tower.jpegassets/images/Hill_station.jpeg  assetassets/images/Hill_station.jpeg"assets/images/KAGAGAHAN_RIJANI.jpg  asset"assets/images/KAGAGAHAN_RIJANI.jpgassets/images/Mountain_icon.png  assetassets/images/Mountain_icon.pngassets/images/Red_fort.jpg  assetassets/images/Red_fort.jpg+assets/images/Taj-Mahal-Agra-India.jpg.webp  asset+assets/images/Taj-Mahal-Agra-India.jpg.webpassets/images/cartoon.jpg  assetassets/images/cartoon.jpgassets/images/china_wall.webp  assetassets/images/china_wall.webpassets/images/city.png  assetassets/images/city.pngassets/images/desert.png  assetassets/images/desert.pngassets/images/forest.png  assetassets/images/forest.png$assets/images/historical_places.jpeg  asset$assets/images/historical_places.jpegassets/images/india_gate.jpeg  assetassets/images/india_gate.jpegassets/images/las.jpeg  assetassets/images/las.jpegassets/images/las_vegas.jpeg  assetassets/images/las_vegas.jpegassets/images/lotus-temple.jpeg  assetassets/images/lotus-temple.jpegassets/images/menu.png  assetassets/images/menu.pngassets/images/menu_icon.png  assetassets/images/menu_icon.pngassets/images/murano.jpg  assetassets/images/murano.jpgassets/images/newdelhi.jpg  assetassets/images/newdelhi.jpgassets/images/paris.jpg  assetassets/images/paris.jpgassets/images/red-fort.jpg  assetassets/images/red-fort.jpgassets/images/river.png  assetassets/images/river.pngassets/images/shimla.jpeg  assetassets/images/shimla.jpegassets/images/tajmahal.jpg  assetassets/images/tajmahal.jpgassets/images/temple.jpg  assetassets/images/temple.jpgassets/images/waterfall.png  assetassets/images/waterfall.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json new file mode 100644 index 0000000..cfb4f29 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/Disney_land.webp":["assets/images/Disney_land.webp"],"assets/images/Eiffel_tower.jpeg":["assets/images/Eiffel_tower.jpeg"],"assets/images/Hill_station.jpeg":["assets/images/Hill_station.jpeg"],"assets/images/KAGAGAHAN_RIJANI.jpg":["assets/images/KAGAGAHAN_RIJANI.jpg"],"assets/images/Mountain_icon.png":["assets/images/Mountain_icon.png"],"assets/images/Red_fort.jpg":["assets/images/Red_fort.jpg"],"assets/images/Taj-Mahal-Agra-India.jpg.webp":["assets/images/Taj-Mahal-Agra-India.jpg.webp"],"assets/images/cartoon.jpg":["assets/images/cartoon.jpg"],"assets/images/china_wall.webp":["assets/images/china_wall.webp"],"assets/images/city.png":["assets/images/city.png"],"assets/images/desert.png":["assets/images/desert.png"],"assets/images/forest.png":["assets/images/forest.png"],"assets/images/historical_places.jpeg":["assets/images/historical_places.jpeg"],"assets/images/india_gate.jpeg":["assets/images/india_gate.jpeg"],"assets/images/las.jpeg":["assets/images/las.jpeg"],"assets/images/las_vegas.jpeg":["assets/images/las_vegas.jpeg"],"assets/images/lotus-temple.jpeg":["assets/images/lotus-temple.jpeg"],"assets/images/menu.png":["assets/images/menu.png"],"assets/images/menu_icon.png":["assets/images/menu_icon.png"],"assets/images/murano.jpg":["assets/images/murano.jpg"],"assets/images/newdelhi.jpg":["assets/images/newdelhi.jpg"],"assets/images/paris.jpg":["assets/images/paris.jpg"],"assets/images/red-fort.jpg":["assets/images/red-fort.jpg"],"assets/images/river.png":["assets/images/river.png"],"assets/images/shimla.jpeg":["assets/images/shimla.jpeg"],"assets/images/tajmahal.jpg":["assets/images/tajmahal.jpg"],"assets/images/temple.jpg":["assets/images/temple.jpg"],"assets/images/waterfall.png":["assets/images/waterfall.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..5c16833 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store new file mode 100644 index 0000000..fbc5683 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/.DS_Store differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6a5616f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..c490cdc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..79ba7ea Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..73f984f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..2464640 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data differ diff --git a/Task1/build/macos/Build/Products/Debug/App.framework/Versions/Current b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/App.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/FlutterMacOS b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/FlutterMacOS new file mode 120000 index 0000000..8c8be5a --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/FlutterMacOS @@ -0,0 +1 @@ +Versions/Current/FlutterMacOS \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules new file mode 120000 index 0000000..5736f31 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Modules @@ -0,0 +1 @@ +Versions/Current/Modules \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Resources b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS new file mode 100755 index 0000000..ac211e9 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/FlutterMacOS differ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppDelegate.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppDelegate.h new file mode 100644 index 0000000..c7aaeca --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppDelegate.h @@ -0,0 +1,56 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERAPPDELEGATE_H_ +#define FLUTTER_FLUTTERAPPDELEGATE_H_ + +#import + +#import "FlutterAppLifecycleDelegate.h" +#import "FlutterMacros.h" + +/** + * |NSApplicationDelegate| subclass for simple apps that want default behavior. + * + * This class implements the following behaviors: + * * Updates the application name of items in the application menu to match the name in + * the app's Info.plist, assuming it is set to APP_NAME initially. |applicationMenu| must be + * set before the application finishes launching for this to take effect. + * * Updates the main Flutter window's title to match the name in the app's Info.plist. + * |mainFlutterWindow| must be set before the application finishes launching for this to take + * effect. + * + * App delegates for Flutter applications are *not* required to inherit from + * this class. Developers of custom app delegate classes should copy and paste + * code as necessary from FlutterAppDelegate.mm. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterAppDelegate : NSObject + +/** + * The application menu in the menu bar. + */ +@property(weak, nonatomic) IBOutlet NSMenu* applicationMenu; + +/** + * The primary application window containing a FlutterViewController. This is + * primarily intended for use in single-window applications. + */ +@property(weak, nonatomic) IBOutlet NSWindow* mainFlutterWindow; + +/** + * Adds an object implementing |FlutterAppLifecycleDelegate| to the list of + * delegates to be informed of application lifecycle events. + */ +- (void)addApplicationLifecycleDelegate:(NSObject*)delegate; + +/** + * Removes an object implementing |FlutterAppLifecycleDelegate| to the list of + * delegates to be informed of application lifecycle events. + */ +- (void)removeApplicationLifecycleDelegate:(NSObject*)delegate; + +@end + +#endif // FLUTTER_FLUTTERAPPDELEGATE_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppLifecycleDelegate.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppLifecycleDelegate.h new file mode 100644 index 0000000..fd8d52d --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterAppLifecycleDelegate.h @@ -0,0 +1,137 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERAPPLIFECYCLEDELEGATE_H_ +#define FLUTTER_FLUTTERAPPLIFECYCLEDELEGATE_H_ + +#import +#include + +#import "FlutterMacros.h" +#import "FlutterPluginMacOS.h" + +NS_ASSUME_NONNULL_BEGIN + +#pragma mark - +/** + * Protocol for listener of lifecycle events from the NSApplication, typically a + * FlutterPlugin. + */ +@protocol FlutterAppLifecycleDelegate + +@optional +/** + * Called when the |FlutterAppDelegate| gets the applicationWillFinishLaunching + * notification. + */ +- (void)handleWillFinishLaunching:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidFinishLaunching + * notification. + */ +- (void)handleDidFinishLaunching:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillBecomeActive + * notification. + */ +- (void)handleWillBecomeActive:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidBecomeActive + * notification. + */ +- (void)handleDidBecomeActive:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillResignActive + * notification. + */ +- (void)handleWillResignActive:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillResignActive + * notification. + */ +- (void)handleDidResignActive:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillHide + * notification. + */ +- (void)handleWillHide:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidHide + * notification. + */ +- (void)handleDidHide:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillUnhide + * notification. + */ +- (void)handleWillUnhide:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidUnhide + * notification. + */ +- (void)handleDidUnhide:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidUnhide + * notification. + */ +- (void)handleDidChangeScreenParameters:(NSNotification*)notification; + +/** + * Called when the |FlutterAppDelegate| gets the applicationDidUnhide + * notification. + */ +- (void)handleDidChangeOcclusionState:(NSNotification*)notification API_AVAILABLE(macos(10.9)); + +/** + * Called when the |FlutterAppDelegate| gets the applicationWillTerminate + * notification. + * + * Applications should not rely on always receiving all possible notifications. + * + * For example, if the application is killed with a task manager, a kill signal, + * the user pulls the power from the device, or there is a rapid unscheduled + * disassembly of the device, no notification will be sent before the + * application is suddenly terminated, and this notification may be skipped. + */ +- (void)handleWillTerminate:(NSNotification*)notification; +@end + +#pragma mark - + +/** + * Propagates `NSAppDelegate` callbacks to registered delegates. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterAppLifecycleRegistrar : NSObject + +/** + * Registers `delegate` to receive lifecycle callbacks via this + * FlutterAppLifecycleDelegate as long as it is alive. + * + * `delegate` will only be referenced weakly. + */ +- (void)addDelegate:(NSObject*)delegate; + +/** + * Unregisters `delegate` so that it will no longer receive life cycle callbacks + * via this FlutterAppLifecycleDelegate. + * + * `delegate` will only be referenced weakly. + */ +- (void)removeDelegate:(NSObject*)delegate; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERAPPLIFECYCLEDELEGATE_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterBinaryMessenger.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterBinaryMessenger.h new file mode 100644 index 0000000..9f59ec8 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterBinaryMessenger.h @@ -0,0 +1,105 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERBINARYMESSENGER_H_ +#define FLUTTER_FLUTTERBINARYMESSENGER_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a binary reply back to a Flutter message sender. Also used + * in for handling a binary message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterBinaryReply)(NSData* _Nullable reply); + +/** + * A strategy for handling incoming binary messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param reply A callback for submitting an asynchronous reply to the sender. + */ +typedef void (^FlutterBinaryMessageHandler)(NSData* _Nullable message, FlutterBinaryReply reply); + +typedef int64_t FlutterBinaryMessengerConnection; + +@protocol FlutterTaskQueue; + +/** + * A facility for communicating with the Flutter side using asynchronous message + * passing with binary messages. + * + * Implementated by: + * - `FlutterBasicMessageChannel`, which supports communication using structured + * messages. + * - `FlutterMethodChannel`, which supports communication using asynchronous + * method calls. + * - `FlutterEventChannel`, which supports commuication using event streams. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterBinaryMessenger +/// TODO(gaaclarke): Remove optional when macos supports Background Platform Channels. +@optional +- (NSObject*)makeBackgroundTaskQueue; + +- (FlutterBinaryMessengerConnection) + setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler:(FlutterBinaryMessageHandler _Nullable)handler + taskQueue:(NSObject* _Nullable)taskQueue; + +@required +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * no reply. + * + * @param channel The channel name. + * @param message The message. + */ +- (void)sendOnChannel:(NSString*)channel message:(NSData* _Nullable)message; + +/** + * Sends a binary message to the Flutter side on the specified channel, expecting + * an asynchronous reply. + * + * @param channel The channel name. + * @param message The message. + * @param callback A callback for receiving a reply. + */ +- (void)sendOnChannel:(NSString*)channel + message:(NSData* _Nullable)message + binaryReply:(FlutterBinaryReply _Nullable)callback; + +/** + * Registers a message handler for incoming binary messages from the Flutter side + * on the specified channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param channel The channel name. + * @param handler The message handler. + * @return An identifier that represents the connection that was just created to the channel. + */ +- (FlutterBinaryMessengerConnection)setMessageHandlerOnChannel:(NSString*)channel + binaryMessageHandler: + (FlutterBinaryMessageHandler _Nullable)handler; + +/** + * Clears out a channel's message handler if that handler is still the one that + * was created as a result of + * `setMessageHandlerOnChannel:binaryMessageHandler:`. + * + * @param connection The result from `setMessageHandlerOnChannel:binaryMessageHandler:`. + */ +- (void)cleanUpConnection:(FlutterBinaryMessengerConnection)connection; +@end +NS_ASSUME_NONNULL_END +#endif // FLUTTER_FLUTTERBINARYMESSENGER_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterChannels.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterChannels.h new file mode 100644 index 0000000..9b84cd6 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterChannels.h @@ -0,0 +1,452 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCHANNELS_H_ +#define FLUTTER_FLUTTERCHANNELS_H_ + +#import "FlutterBinaryMessenger.h" +#import "FlutterCodecs.h" + +@protocol FlutterTaskQueue; + +NS_ASSUME_NONNULL_BEGIN +/** + * A message reply callback. + * + * Used for submitting a reply back to a Flutter message sender. Also used in + * the dual capacity for handling a message reply received from Flutter. + * + * @param reply The reply. + */ +typedef void (^FlutterReply)(id _Nullable reply); + +/** + * A strategy for handling incoming messages from Flutter and to send + * asynchronous replies back to Flutter. + * + * @param message The message. + * @param callback A callback for submitting a reply to the sender which can be invoked from any + * thread. + */ +typedef void (^FlutterMessageHandler)(id _Nullable message, FlutterReply callback); + +/** + * A channel for communicating with the Flutter side using basic, asynchronous + * message passing. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBasicMessageChannel : NSObject +/** + * Creates a `FlutterBasicMessageChannel` with the specified name and binary + * messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMessageCodec` to encode and decode messages. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ ++ (instancetype)messageChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterBasicMessageChannel` with the specified name, binary + * messenger, and message codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The message codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +/** + * Sends the specified message to the Flutter side, ignoring any reply. + * + * @param message The message. Must be supported by the codec of this + * channel. + */ +- (void)sendMessage:(id _Nullable)message; + +/** + * Sends the specified message to the Flutter side, expecting an asynchronous + * reply. + * + * @param message The message. Must be supported by the codec of this channel. + * @param callback A callback to be invoked with the message reply from Flutter. + */ +- (void)sendMessage:(id _Nullable)message reply:(FlutterReply _Nullable)callback; + +/** + * Registers a message handler with this channel. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The message handler. + */ +- (void)setMessageHandler:(FlutterMessageHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * A method call result callback. + * + * Used for submitting a method call result back to a Flutter caller. Also used in + * the dual capacity for handling a method call result received from Flutter. + * + * @param result The result. + */ +typedef void (^FlutterResult)(id _Nullable result); + +/** + * A strategy for handling method calls. + * + * @param call The incoming method call. + * @param result A callback to asynchronously submit the result of the call. + * Invoke the callback with a `FlutterError` to indicate that the call failed. + * Invoke the callback with `FlutterMethodNotImplemented` to indicate that the + * method was unknown. Any other values, including `nil`, are interpreted as + * successful results. This can be invoked from any thread. + */ +typedef void (^FlutterMethodCallHandler)(FlutterMethodCall* call, FlutterResult result); + +/** + * A constant used with `FlutterMethodCallHandler` to respond to the call of an + * unknown method. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterMethodNotImplemented; + +/** + * A channel for communicating with the Flutter side using invocation of + * asynchronous methods. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodChannel : NSObject +/** + * Creates a `FlutterMethodChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to encode and decode method calls + * and result envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterMethodChannel` with the specified name, binary messenger, and + * method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)methodChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterMethodChannel` with the specified name, binary messenger, + * method codec, and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; + +// clang-format off +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * no results. + * + * @see [MethodChannel.setMethodCallHandler](https://api.flutter.dev/flutter/services/MethodChannel/setMethodCallHandler.html) + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + */ +// clang-format on +- (void)invokeMethod:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * Invokes the specified Flutter method with the specified arguments, expecting + * an asynchronous result. + * + * @param method The name of the method to invoke. + * @param arguments The arguments. Must be a value supported by the codec of this + * channel. + * @param callback A callback that will be invoked with the asynchronous result. + * The result will be a `FlutterError` instance, if the method call resulted + * in an error on the Flutter side. Will be `FlutterMethodNotImplemented`, if + * the method called was not implemented on the Flutter side. Any other value, + * including `nil`, should be interpreted as successful results. + */ +- (void)invokeMethod:(NSString*)method + arguments:(id _Nullable)arguments + result:(FlutterResult _Nullable)callback; +/** + * Registers a handler for method calls from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The method call handler. + */ +- (void)setMethodCallHandler:(FlutterMethodCallHandler _Nullable)handler; + +/** + * Adjusts the number of messages that will get buffered when sending messages to + * channels that aren't fully set up yet. For example, the engine isn't running + * yet or the channel's message handler isn't set up on the Dart side yet. + */ +- (void)resizeChannelBuffer:(NSInteger)newSize; + +@end + +/** + * An event sink callback. + * + * @param event The event. + */ +typedef void (^FlutterEventSink)(id _Nullable event); + +/** + * A strategy for exposing an event stream to the Flutter side. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterStreamHandler +/** + * Sets up an event stream and begin emitting events. + * + * Invoked when the first listener is registered with the Stream associated to + * this channel on the Flutter side. + * + * @param arguments Arguments for the stream. + * @param events A callback to asynchronously emit events. Invoke the + * callback with a `FlutterError` to emit an error event. Invoke the + * callback with `FlutterEndOfEventStream` to indicate that no more + * events will be emitted. Any other value, including `nil` are emitted as + * successful events. + * @return A FlutterError instance, if setup fails. + */ +- (FlutterError* _Nullable)onListenWithArguments:(id _Nullable)arguments + eventSink:(FlutterEventSink)events; + +/** + * Tears down an event stream. + * + * Invoked when the last listener is deregistered from the Stream associated to + * this channel on the Flutter side. + * + * The channel implementation may call this method with `nil` arguments + * to separate a pair of two consecutive set up requests. Such request pairs + * may occur during Flutter hot restart. + * + * @param arguments Arguments for the stream. + * @return A FlutterError instance, if teardown fails. + */ +- (FlutterError* _Nullable)onCancelWithArguments:(id _Nullable)arguments; +@end + +/** + * A constant used with `FlutterEventChannel` to indicate end of stream. + */ +FLUTTER_DARWIN_EXPORT +extern NSObject const* FlutterEndOfEventStream; + +/** + * A channel for communicating with the Flutter side using event streams. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEventChannel : NSObject +/** + * Creates a `FlutterEventChannel` with the specified name and binary messenger. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * The channel uses `FlutterStandardMethodCodec` to decode stream setup and + * teardown requests, and to encode event envelopes. + * + * @param name The channel name. + * @param messenger The binary messenger. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger; + +/** + * Creates a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ ++ (instancetype)eventChannelWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * and method codec. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec; + +/** + * Initializes a `FlutterEventChannel` with the specified name, binary messenger, + * method codec and task queue. + * + * The channel name logically identifies the channel; identically named channels + * interfere with each other's communication. + * + * The binary messenger is a facility for sending raw, binary messages to the + * Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`. + * + * @param name The channel name. + * @param messenger The binary messenger. + * @param codec The method codec. + * @param taskQueue The FlutterTaskQueue that executes the handler (see + -[FlutterBinaryMessenger makeBackgroundTaskQueue]). + */ +- (instancetype)initWithName:(NSString*)name + binaryMessenger:(NSObject*)messenger + codec:(NSObject*)codec + taskQueue:(NSObject* _Nullable)taskQueue; +/** + * Registers a handler for stream setup requests from the Flutter side. + * + * Replaces any existing handler. Use a `nil` handler for unregistering the + * existing handler. + * + * @param handler The stream handler. + */ +- (void)setStreamHandler:(NSObject* _Nullable)handler; +@end +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCHANNELS_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterCodecs.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterCodecs.h new file mode 100644 index 0000000..f7117f0 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterCodecs.h @@ -0,0 +1,476 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERCODECS_H_ +#define FLUTTER_FLUTTERCODECS_H_ + +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A message encoding/decoding mechanism. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMessageCodec +/** + * Returns a shared instance of this `FlutterMessageCodec`. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified message into binary. + * + * @param message The message. + * @return The binary encoding, or `nil`, if `message` was `nil`. + */ +- (NSData* _Nullable)encode:(id _Nullable)message; + +/** + * Decodes the specified message from binary. + * + * @param message The message. + * @return The decoded message, or `nil`, if `message` was `nil`. + */ +- (id _Nullable)decode:(NSData* _Nullable)message; +@end + +/** + * A `FlutterMessageCodec` using unencoded binary messages, represented as + * `NSData` instances. + * + * This codec is guaranteed to be compatible with the corresponding + * [BinaryCodec](https://api.flutter.dev/flutter/services/BinaryCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * On the Dart side, messages are represented using `ByteData`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterBinaryCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded `NSString` messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [StringCodec](https://api.flutter.dev/flutter/services/StringCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStringCodec : NSObject +@end + +/** + * A `FlutterMessageCodec` using UTF-8 encoded JSON messages. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMessageCodec](https://api.flutter.dev/flutter/services/JSONMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supports values accepted by `NSJSONSerialization` plus top-level + * `nil`, `NSNumber`, and `NSString`. + * + * On the Dart side, JSON messages are handled by the JSON facilities of the + * [`dart:convert`](https://api.dartlang.org/stable/dart-convert/JSON-constant.html) + * package. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMessageCodec : NSObject +@end + +/** + * A writer of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `writeValue`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardWriter : NSObject +/** + * Create a `FlutterStandardWriter` who will write to \p data. + */ +- (instancetype)initWithData:(NSMutableData*)data; +/** Write a 8-bit byte. */ +- (void)writeByte:(UInt8)value; +/** Write an array of \p bytes of size \p length. */ +- (void)writeBytes:(const void*)bytes length:(NSUInteger)length; +/** Write an array of bytes contained in \p data. */ +- (void)writeData:(NSData*)data; +/** Write 32-bit unsigned integer that represents a \p size of a collection. */ +- (void)writeSize:(UInt32)size; +/** Write zero padding until data is aligned with \p alignment. */ +- (void)writeAlignment:(UInt8)alignment; +/** Write a string with UTF-8 encoding. */ +- (void)writeUTF8:(NSString*)value; +/** Introspects into an object and writes its representation. + * + * Supported Data Types: + * - NSNull + * - NSNumber + * - NSString (as UTF-8) + * - FlutterStandardTypedData + * - NSArray of supported types + * - NSDictionary of supporte types + * + * NSAsserts on failure. + */ +- (void)writeValue:(id)value; +@end + +/** + * A reader of the Flutter standard binary encoding. + * + * See `FlutterStandardMessageCodec` for details on the encoding. + * + * The encoding is extensible via subclasses overriding `readValueOfType`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReader : NSObject +/** + * Create a new `FlutterStandardReader` who reads from \p data. + */ +- (instancetype)initWithData:(NSData*)data; +/** Returns YES when the reader hasn't reached the end of its data. */ +- (BOOL)hasMore; +/** Reads a byte value and increments the position. */ +- (UInt8)readByte; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (void)readBytes:(void*)destination length:(NSUInteger)length; +/** Reads a sequence of byte values of \p length and increments the position. */ +- (NSData*)readData:(NSUInteger)length; +/** Reads a 32-bit unsigned integer representing a collection size and increments the position.*/ +- (UInt32)readSize; +/** Advances the read position until it is aligned with \p alignment. */ +- (void)readAlignment:(UInt8)alignment; +/** Read a null terminated string encoded with UTF-8/ */ +- (NSString*)readUTF8; +/** + * Reads a byte for `FlutterStandardField` the decodes a value matching that type. + * + * See also: -[FlutterStandardWriter writeValue] + */ +- (nullable id)readValue; +/** + * Decodes a value matching the \p type specified. + * + * See also: + * - `FlutterStandardField` + * - `-[FlutterStandardWriter writeValue]` + */ +- (nullable id)readValueOfType:(UInt8)type; +@end + +/** + * A factory of compatible reader/writer instances using the Flutter standard + * binary encoding or extensions thereof. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardReaderWriter : NSObject +/** + * Create a new `FlutterStandardWriter` for writing to \p data. + */ +- (FlutterStandardWriter*)writerWithData:(NSMutableData*)data; +/** + * Create a new `FlutterStandardReader` for reading from \p data. + */ +- (FlutterStandardReader*)readerWithData:(NSData*)data; +@end + +/** + * A `FlutterMessageCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMessageCodec](https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Supported messages are acyclic values of these forms: + * + * - `nil` or `NSNull` + * - `NSNumber` (including their representation of Boolean values) + * - `NSString` + * - `FlutterStandardTypedData` + * - `NSArray` of supported values + * - `NSDictionary` with supported keys and values + * + * On the Dart side, these values are represented as follows: + * + * - `nil` or `NSNull`: null + * - `NSNumber`: `bool`, `int`, or `double`, depending on the contained value. + * - `NSString`: `String` + * - `FlutterStandardTypedData`: `Uint8List`, `Int32List`, `Int64List`, or `Float64List` + * - `NSArray`: `List` + * - `NSDictionary`: `Map` + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMessageCodec : NSObject +/** + * Create a `FlutterStandardMessageCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +/** + * Command object representing a method call on a `FlutterMethodChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterMethodCall : NSObject +/** + * Creates a method call for invoking the specified named method with the + * specified arguments. + * + * @param method the name of the method to call. + * @param arguments the arguments value. + */ ++ (instancetype)methodCallWithMethodName:(NSString*)method arguments:(id _Nullable)arguments; + +/** + * The method name. + */ +@property(readonly, nonatomic) NSString* method; + +/** + * The arguments. + */ +@property(readonly, nonatomic, nullable) id arguments; +@end + +/** + * Error object representing an unsuccessful outcome of invoking a method + * on a `FlutterMethodChannel`, or an error event on a `FlutterEventChannel`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterError : NSObject +/** + * Creates a `FlutterError` with the specified error code, message, and details. + * + * @param code An error code string for programmatic use. + * @param message A human-readable error message. + * @param details Custom error details. + */ ++ (instancetype)errorWithCode:(NSString*)code + message:(NSString* _Nullable)message + details:(id _Nullable)details; +/** + The error code. + */ +@property(readonly, nonatomic) NSString* code; + +/** + The error message. + */ +@property(readonly, nonatomic, nullable) NSString* message; + +/** + The error details. + */ +@property(readonly, nonatomic, nullable) id details; +@end + +/** + * Type of numeric data items encoded in a `FlutterStandardDataType`. + * + * - FlutterStandardDataTypeUInt8: plain bytes + * - FlutterStandardDataTypeInt32: 32-bit signed integers + * - FlutterStandardDataTypeInt64: 64-bit signed integers + * - FlutterStandardDataTypeFloat64: 64-bit floats + */ +typedef NS_ENUM(NSInteger, FlutterStandardDataType) { + FlutterStandardDataTypeUInt8, + FlutterStandardDataTypeInt32, + FlutterStandardDataTypeInt64, + FlutterStandardDataTypeFloat32, + FlutterStandardDataTypeFloat64, +}; + +/** + * A byte buffer holding `UInt8`, `SInt32`, `SInt64`, or `Float64` values, used + * with `FlutterStandardMessageCodec` and `FlutterStandardMethodCodec`. + * + * Two's complement encoding is used for signed integers. IEEE754 + * double-precision representation is used for floats. The platform's native + * endianness is assumed. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardTypedData : NSObject +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as plain bytes. + * + * @param data the byte data. + */ ++ (instancetype)typedDataWithBytes:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit signed integers. + * + * @param data the byte data. The length must be divisible by 4. + */ ++ (instancetype)typedDataWithInt32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit signed integers. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithInt64:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 32-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat32:(NSData*)data; + +/** + * Creates a `FlutterStandardTypedData` which interprets the specified data + * as 64-bit floats. + * + * @param data the byte data. The length must be divisible by 8. + */ ++ (instancetype)typedDataWithFloat64:(NSData*)data; + +/** + * The raw underlying data buffer. + */ +@property(readonly, nonatomic) NSData* data; + +/** + * The type of the encoded values. + */ +@property(readonly, nonatomic, assign) FlutterStandardDataType type; + +/** + * The number of value items encoded. + */ +@property(readonly, nonatomic, assign) UInt32 elementCount; + +/** + * The number of bytes used by the encoding of a single value item. + */ +@property(readonly, nonatomic, assign) UInt8 elementSize; +@end + +/** + * An arbitrarily large integer value, used with `FlutterStandardMessageCodec` + * and `FlutterStandardMethodCodec`. + */ +FLUTTER_DARWIN_EXPORT +FLUTTER_UNAVAILABLE("Unavailable on 2018-08-31. Deprecated on 2018-01-09. " + "FlutterStandardBigInteger was needed because the Dart 1.0 int type had no " + "size limit. With Dart 2.0, the int type is a fixed-size, 64-bit signed " + "integer. If you need to communicate larger integers, use NSString encoding " + "instead.") +@interface FlutterStandardBigInteger : NSObject +@end + +/** + * A codec for method calls and enveloped results. + * + * Method calls are encoded as binary messages with enough structure that the + * codec can extract a method name `NSString` and an arguments `NSObject`, + * possibly `nil`. These data items are used to populate a `FlutterMethodCall`. + * + * Result envelopes are encoded as binary messages with enough structure that + * the codec can determine whether the result was successful or an error. In + * the former case, the codec can extract the result `NSObject`, possibly `nil`. + * In the latter case, the codec can extract an error code `NSString`, a + * human-readable `NSString` error message (possibly `nil`), and a custom + * error details `NSObject`, possibly `nil`. These data items are used to + * populate a `FlutterError`. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterMethodCodec +/** + * Provides access to a shared instance this codec. + * + * @return The shared instance. + */ ++ (instancetype)sharedInstance; + +/** + * Encodes the specified method call into binary. + * + * @param methodCall The method call. The arguments value + * must be supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeMethodCall:(FlutterMethodCall*)methodCall; + +/** + * Decodes the specified method call from binary. + * + * @param methodCall The method call to decode. + * @return The decoded method call. + */ +- (FlutterMethodCall*)decodeMethodCall:(NSData*)methodCall; + +/** + * Encodes the specified successful result into binary. + * + * @param result The result. Must be a value supported by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeSuccessEnvelope:(id _Nullable)result; + +/** + * Encodes the specified error result into binary. + * + * @param error The error object. The error details value must be supported + * by this codec. + * @return The binary encoding. + */ +- (NSData*)encodeErrorEnvelope:(FlutterError*)error; + +/** + * Deccodes the specified result envelope from binary. + * + * @param envelope The error object. + * @return The result value, if the envelope represented a successful result, + * or a `FlutterError` instance, if not. + */ +- (id _Nullable)decodeEnvelope:(NSData*)envelope; +@end + +/** + * A `FlutterMethodCodec` using UTF-8 encoded JSON method calls and result + * envelopes. + * + * This codec is guaranteed to be compatible with the corresponding + * [JSONMethodCodec](https://api.flutter.dev/flutter/services/JSONMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as methods arguments and result payloads are + * those supported as top-level or leaf values by `FlutterJSONMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterJSONMethodCodec : NSObject +@end + +/** + * A `FlutterMethodCodec` using the Flutter standard binary encoding. + * + * This codec is guaranteed to be compatible with the corresponding + * [StandardMethodCodec](https://api.flutter.dev/flutter/services/StandardMethodCodec-class.html) + * on the Dart side. These parts of the Flutter SDK are evolved synchronously. + * + * Values supported as method arguments and result payloads are those supported by + * `FlutterStandardMessageCodec`. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterStandardMethodCodec : NSObject +/** + * Create a `FlutterStandardMethodCodec` who will read and write to \p readerWriter. + */ ++ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERCODECS_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterDartProject.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterDartProject.h new file mode 100644 index 0000000..2878a1d --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterDartProject.h @@ -0,0 +1,103 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERDARTPROJECT_H_ +#define FLUTTER_FLUTTERDARTPROJECT_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * A set of Flutter and Dart assets used by a `FlutterEngine` to initialize execution. + * + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterDartProject : NSObject + +/** + * Initializes a Flutter Dart project from a bundle. + * + * The bundle must either contain a flutter_assets resource directory, or set the Info.plist key + * FLTAssetsPath to override that name (if you are doing a custom build using a different name). + * + * @param bundle The bundle containing the Flutter assets directory. If nil, the App framework + * created by Flutter will be used. + */ +- (instancetype)initWithPrecompiledDartBundle:(nullable NSBundle*)bundle NS_DESIGNATED_INITIALIZER; +/** + * Unavailable - use `init` instead. + */ +- (instancetype)initFromDefaultSourceForConfiguration API_UNAVAILABLE(macos) + FLUTTER_UNAVAILABLE("Use -init instead."); + +/** + * Returns the default identifier for the bundle where we expect to find the Flutter Dart + * application. + */ ++ (NSString*)defaultBundleIdentifier; + +/** + * An NSArray of NSStrings to be passed as command line arguments to the Dart entrypoint. + * + * If this is not explicitly set, this will default to the contents of + * [NSProcessInfo arguments], without the binary name. + * + * Set this to nil to pass no arguments to the Dart entrypoint. + */ +@property(nonatomic, nullable, copy) + NSArray* dartEntrypointArguments API_UNAVAILABLE(ios); + +/** + * Returns the file name for the given asset. If the bundle with the identifier + * "io.flutter.flutter.app" exists, it will try use that bundle; otherwise, it + * will use the main bundle. To specify a different bundle, use + * `+lookupKeyForAsset:fromBundle`. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the supplied bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param bundle The `NSBundle` to use for looking up the asset. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromBundle:(nullable NSBundle*)bundle; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the specified bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @param bundle The bundle to use when doing the lookup. + * @return the file name to be used for lookup in the main bundle. + */ ++ (NSString*)lookupKeyForAsset:(NSString*)asset + fromPackage:(NSString*)package + fromBundle:(nullable NSBundle*)bundle; + +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERDARTPROJECT_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterEngine.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterEngine.h new file mode 100644 index 0000000..bb12d5c --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterEngine.h @@ -0,0 +1,102 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERENGINE_H_ +#define FLUTTER_FLUTTERENGINE_H_ + +#import + +#include + +#import "FlutterAppLifecycleDelegate.h" +#import "FlutterBinaryMessenger.h" +#import "FlutterDartProject.h" +#import "FlutterMacros.h" +#import "FlutterPluginRegistrarMacOS.h" +#import "FlutterTexture.h" + +// TODO: Merge this file with the iOS FlutterEngine.h. + +@class FlutterViewController; + +/** + * Coordinates a single instance of execution of a Flutter engine. + * + * A FlutterEngine can only be attached with one controller from the native + * code. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterEngine + : NSObject + +/** + * Initializes an engine with the given project. + * + * @param labelPrefix Currently unused; in the future, may be used for labelling threads + * as with the iOS FlutterEngine. + * @param project The project configuration. If nil, a default FlutterDartProject will be used. + */ +- (nonnull instancetype)initWithName:(nonnull NSString*)labelPrefix + project:(nullable FlutterDartProject*)project; + +/** + * Initializes an engine that can run headlessly with the given project. + * + * @param labelPrefix Currently unused; in the future, may be used for labelling threads + * as with the iOS FlutterEngine. + * @param project The project configuration. If nil, a default FlutterDartProject will be used. + */ +- (nonnull instancetype)initWithName:(nonnull NSString*)labelPrefix + project:(nullable FlutterDartProject*)project + allowHeadlessExecution:(BOOL)allowHeadlessExecution NS_DESIGNATED_INITIALIZER; + +- (nonnull instancetype)init NS_UNAVAILABLE; + +/** + * Runs a Dart program on an Isolate from the main Dart library (i.e. the library that + * contains `main()`). + * + * The first call to this method will create a new Isolate. Subsequent calls will return + * immediately. + * + * @param entrypoint The name of a top-level function from the same Dart + * library that contains the app's main() function. If this is nil, it will + * default to `main()`. If it is not the app's main() function, that function + * must be decorated with `@pragma(vm:entry-point)` to ensure the method is not + * tree-shaken by the Dart compiler. + * @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise. + */ +- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint; + +/** + * The `FlutterViewController` of this engine, if any. + * + * This view is used by legacy APIs that assume a single view. + * + * Setting this field from nil to a non-nil view controller also updates + * the view controller's engine and ID. + * + * Setting this field from non-nil to nil will terminate the engine if + * allowHeadlessExecution is NO. + * + * Setting this field from non-nil to a different non-nil FlutterViewController + * is prohibited and will throw an assertion error. + */ +@property(nonatomic, nullable, weak) FlutterViewController* viewController; + +/** + * The `FlutterBinaryMessenger` for communicating with this engine. + */ +@property(nonatomic, nonnull, readonly) id binaryMessenger; + +/** + * Shuts the Flutter engine if it is running. The FlutterEngine instance must always be shutdown + * before it may be collected. Not shutting down the FlutterEngine instance before releasing it will + * result in the leak of that engine instance. + */ +- (void)shutDownEngine; + +@end + +#endif // FLUTTER_FLUTTERENGINE_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacOS.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacOS.h new file mode 100644 index 0000000..a7753e5 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacOS.h @@ -0,0 +1,16 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import "FlutterAppDelegate.h" +#import "FlutterAppLifecycleDelegate.h" +#import "FlutterBinaryMessenger.h" +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterDartProject.h" +#import "FlutterEngine.h" +#import "FlutterMacros.h" +#import "FlutterPluginMacOS.h" +#import "FlutterPluginRegistrarMacOS.h" +#import "FlutterTexture.h" +#import "FlutterViewController.h" diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacros.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacros.h new file mode 100644 index 0000000..da99e10 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterMacros.h @@ -0,0 +1,48 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERMACROS_H_ +#define FLUTTER_FLUTTERMACROS_H_ + +#if defined(FLUTTER_FRAMEWORK) + +#define FLUTTER_DARWIN_EXPORT __attribute__((visibility("default"))) + +#else // defined(FLUTTER_SDK) + +#define FLUTTER_DARWIN_EXPORT + +#endif // defined(FLUTTER_SDK) + +#ifndef NS_ASSUME_NONNULL_BEGIN +#define NS_ASSUME_NONNULL_BEGIN _Pragma("clang assume_nonnull begin") +#define NS_ASSUME_NONNULL_END _Pragma("clang assume_nonnull end") +#endif // defined(NS_ASSUME_NONNULL_BEGIN) + +/** + * Indicates that the API has been deprecated for the specified reason. Code + * that uses the deprecated API will continue to work as before. However, the + * API will soon become unavailable and users are encouraged to immediately take + * the appropriate action mentioned in the deprecation message and the BREAKING + * CHANGES section present in the Flutter.h umbrella header. + */ +#define FLUTTER_DEPRECATED(msg) __attribute__((__deprecated__(msg))) + +/** + * Indicates that the previously deprecated API is now unavailable. Code that + * uses the API will not work and the declaration of the API is only a stub + * meant to display the given message detailing the actions for the user to take + * immediately. + */ +#define FLUTTER_UNAVAILABLE(msg) __attribute__((__unavailable__(msg))) + +#if __has_feature(objc_arc) +#define FLUTTER_ASSERT_ARC +#define FLUTTER_ASSERT_NOT_ARC #error ARC must be disabled ! +#else +#define FLUTTER_ASSERT_ARC #error ARC must be enabled ! +#define FLUTTER_ASSERT_NOT_ARC +#endif + +#endif // FLUTTER_FLUTTERMACROS_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPlatformViews.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPlatformViews.h new file mode 100644 index 0000000..4287a34 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPlatformViews.h @@ -0,0 +1,40 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERPLATFORMVIEWS_H_ +#define FLUTTER_FLUTTERPLATFORMVIEWS_H_ + +#import + +#import "FlutterCodecs.h" +#import "FlutterMacros.h" + +@protocol FlutterPlatformViewFactory + +/** + * Create a Platform View which is an `NSView`. + * + * A MacOS plugin should implement this method and return an `NSView`, which can be embedded in a + * Flutter App. + * + * The implementation of this method should create a new `NSView`. + * + * @param viewId A unique identifier for this view. + * @param args Parameters for creating the view sent from the Dart side of the + * Flutter app. If `createArgsCodec` is not implemented, or if no creation arguments were sent from + * the Dart code, this will be null. Otherwise this will be the value sent from the Dart code as + * decoded by `createArgsCodec`. + */ +- (nonnull NSView*)createWithViewIdentifier:(int64_t)viewId arguments:(nullable id)args; + +/** + * Returns the `FlutterMessageCodec` for decoding the args parameter of `createWithFrame`. + * + * Only implement this if `createWithFrame` needs an arguments parameter. + */ +@optional +- (nullable NSObject*)createArgsCodec; +@end + +#endif // FLUTTER_FLUTTERPLATFORMVIEWS_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginMacOS.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginMacOS.h new file mode 100644 index 0000000..af8e0dd --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginMacOS.h @@ -0,0 +1,50 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterChannels.h" +#import "FlutterCodecs.h" +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +@protocol FlutterPluginRegistrar; + +/** + * Implemented by the platform side of a Flutter plugin. + * + * Defines a set of optional callback methods and a method to set up the plugin + * and register it to be called by other application components. + * + * Currently the macOS version of FlutterPlugin has very limited functionality, but is expected to + * expand over time to more closely match the functionality of the iOS FlutterPlugin. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterPlugin + +/** + * Creates an instance of the plugin to register with |registrar| using the desired + * FlutterPluginRegistrar methods. + */ ++ (void)registerWithRegistrar:(id)registrar; + +@optional + +/** + * Called when a message is sent from Flutter on a channel that a plugin instance has subscribed + * to via -[FlutterPluginRegistrar addMethodCallDelegate:channel:]. + * + * The |result| callback must be called exactly once, with one of: + * - FlutterMethodNotImplemented, if the method call is unknown. + * - A FlutterError, if the method call was understood but there was a + * problem handling it. + * - Any other value (including nil) to indicate success. The value will + * be returned to the Flutter caller, and must be serializable to JSON. + */ +- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result; + +NS_ASSUME_NONNULL_END + +@end diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginRegistrarMacOS.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginRegistrarMacOS.h new file mode 100644 index 0000000..8e99ad8 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterPluginRegistrarMacOS.h @@ -0,0 +1,113 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterBinaryMessenger.h" +#import "FlutterChannels.h" +#import "FlutterMacros.h" +#import "FlutterPlatformViews.h" +#import "FlutterPluginMacOS.h" +#import "FlutterTexture.h" + +// TODO: Merge this file and FlutterPluginMacOS.h with the iOS FlutterPlugin.h, sharing all but +// the platform-specific methods. + +/** + * The protocol for an object managing registration for a plugin. It provides access to application + * context, as allowing registering for callbacks for handling various conditions. + * + * Currently the macOS PluginRegistrar has very limited functionality, but is expected to expand + * over time to more closely match the functionality of FlutterPluginRegistrar. + */ +FLUTTER_DARWIN_EXPORT +@protocol FlutterPluginRegistrar + +/** + * The binary messenger used for creating channels to communicate with the Flutter engine. + */ +@property(nonnull, readonly) id messenger; + +/** + * Returns a `FlutterTextureRegistry` for registering textures + * provided by the plugin. + */ +@property(nonnull, readonly) id textures; + +/** + * The default view displaying Flutter content. + * + * This method may return |nil|, for instance in a headless environment. + * + * The default view is a special view operated by single-view APIs. + */ +@property(nullable, readonly) NSView* view; + +/** + * Registers |delegate| to receive handleMethodCall:result: callbacks for the given |channel|. + */ +- (void)addMethodCallDelegate:(nonnull id)delegate + channel:(nonnull FlutterMethodChannel*)channel; + +/** + * Registers a `FlutterPlatformViewFactory` for creation of platform views. + * + * Plugins expose `NSView` for embedding in Flutter apps by registering a view factory. + * + * @param factory The view factory that will be registered. + * @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use + * this identifier to request creation of a `NSView` by the registered factory. + */ +- (void)registerViewFactory:(nonnull NSObject*)factory + withId:(nonnull NSString*)factoryId; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return the file name to be used for lookup in the main bundle. + */ +- (nonnull NSString*)lookupKeyForAsset:(nonnull NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified package. + * The returned file name can be used to access the asset in the application's main bundle. + * + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return the file name to be used for lookup in the main bundle. + */ +- (nonnull NSString*)lookupKeyForAsset:(nonnull NSString*)asset + fromPackage:(nonnull NSString*)package; + +@end + +/** + * A registry of Flutter macOS plugins. + * + * Plugins are identified by unique string keys, typically the name of the + * plugin's main class. + * + * Plugins typically need contextual information and the ability to register + * callbacks for various application events. To keep the API of the registry + * focused, these facilities are not provided directly by the registry, but by + * a `FlutterPluginRegistrar`, created by the registry in exchange for the unique + * key of the plugin. + * + * There is no implied connection between the registry and the registrar. + * Specifically, callbacks registered by the plugin via the registrar may be + * relayed directly to the underlying iOS application objects. + */ +@protocol FlutterPluginRegistry + +/** + * Returns a registrar for registering a plugin. + * + * @param pluginKey The unique key identifying the plugin. + */ +- (nonnull id)registrarForPlugin:(nonnull NSString*)pluginKey; + +@end diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterTexture.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterTexture.h new file mode 100644 index 0000000..59d2ced --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterTexture.h @@ -0,0 +1,62 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLUTTERTEXTURE_H_ +#define FLUTTER_FLUTTERTEXTURE_H_ + +#import +#import + +#import "FlutterMacros.h" + +NS_ASSUME_NONNULL_BEGIN + +FLUTTER_DARWIN_EXPORT +/** + * Represents a texture that can be shared with Flutter. + * + * See also: https://github.com/flutter/plugins/tree/master/packages/camera + */ +@protocol FlutterTexture +/** Copy the contents of the texture into a `CVPixelBuffer`. */ +- (CVPixelBufferRef _Nullable)copyPixelBuffer; + +/** + * Called when the texture is unregistered. + * + * Called on the raster thread. + */ +@optional +- (void)onTextureUnregistered:(NSObject*)texture; +@end + +FLUTTER_DARWIN_EXPORT +/** + * A collection of registered `FlutterTexture`'s. + */ +@protocol FlutterTextureRegistry +/** + * Registers a `FlutterTexture` for usage in Flutter and returns an id that can be used to reference + * that texture when calling into Flutter with channels. Textures must be registered on the + * platform thread. On success returns the pointer to the registered texture, else returns 0. + */ +- (int64_t)registerTexture:(NSObject*)texture; +/** + * Notifies Flutter that the content of the previously registered texture has been updated. + * + * This will trigger a call to `-[FlutterTexture copyPixelBuffer]` on the raster thread. + */ +- (void)textureFrameAvailable:(int64_t)textureId; +/** + * Unregisters a `FlutterTexture` that has previously regeistered with `registerTexture:`. Textures + * must be unregistered on the platform thread. + * + * @param textureId The result that was previously returned from `registerTexture:`. + */ +- (void)unregisterTexture:(int64_t)textureId; +@end + +NS_ASSUME_NONNULL_END + +#endif // FLUTTER_FLUTTERTEXTURE_H_ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterViewController.h b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterViewController.h new file mode 100644 index 0000000..b0d7a9f --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Headers/FlutterViewController.h @@ -0,0 +1,177 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import + +#import "FlutterEngine.h" +#import "FlutterMacros.h" +#import "FlutterPlatformViews.h" +#import "FlutterPluginRegistrarMacOS.h" + +/** + * Values for the `mouseTrackingMode` property. + */ +typedef NS_ENUM(NSInteger, FlutterMouseTrackingMode) { + // Hover events will never be sent to Flutter. + FlutterMouseTrackingModeNone = 0, + // Hover events will be sent to Flutter when the view is in the key window. + FlutterMouseTrackingModeInKeyWindow, + // Hover events will be sent to Flutter when the view is in the active app. + FlutterMouseTrackingModeInActiveApp, + // Hover events will be sent to Flutter regardless of window and app focus. + FlutterMouseTrackingModeAlways, +}; + +/** + * Controls a view that displays Flutter content and manages input. + * + * A FlutterViewController works with a FlutterEngine. Upon creation, the view + * controller is always added to an engine, either a given engine, or it implicitly + * creates an engine and add itself to that engine. + * + * The FlutterEngine assigns each view controller attached to it a unique ID. + * Each view controller corresponds to a view, and the ID is used by the framework + * to specify which view to operate. + * + * A FlutterViewController can also be unattached to an engine after it is manually + * unset from the engine, or transiently during the initialization process. + * An unattached view controller is invalid. Whether the view controller is attached + * can be queried using FlutterViewController#attached. + * + * The FlutterViewController strongly references the FlutterEngine, while + * the engine weakly the view controller. When a FlutterViewController is deallocated, + * it automatically removes itself from its attached engine. When a FlutterEngine + * has no FlutterViewControllers attached, it might shut down itself or not depending + * on its configuration. + */ +FLUTTER_DARWIN_EXPORT +@interface FlutterViewController : NSViewController + +/** + * The Flutter engine associated with this view controller. + */ +@property(nonatomic, nonnull, readonly) FlutterEngine* engine; + +/** + * The style of mouse tracking to use for the view. Defaults to + * FlutterMouseTrackingModeInKeyWindow. + */ +@property(nonatomic) FlutterMouseTrackingMode mouseTrackingMode; + +/** + * Initializes a controller that will run the given project. + * + * In this initializer, this controller creates an engine, and is attached to + * that engine as the default controller. In this way, this controller can not + * be set to other engines. This initializer is suitable for the first Flutter + * view controller of the app. To use the controller with an existing engine, + * use initWithEngine:nibName:bundle: instead. + * + * @param project The project to run in this view controller. If nil, a default `FlutterDartProject` + * will be used. + */ +- (nonnull instancetype)initWithProject:(nullable FlutterDartProject*)project + NS_DESIGNATED_INITIALIZER; + +- (nonnull instancetype)initWithNibName:(nullable NSString*)nibNameOrNil + bundle:(nullable NSBundle*)nibBundleOrNil + NS_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithCoder:(nonnull NSCoder*)nibNameOrNil NS_DESIGNATED_INITIALIZER; +/** + * Initializes this FlutterViewController with an existing `FlutterEngine`. + * + * The initialized view controller will add itself to the engine as part of this process. + * + * This initializer is suitable for both the first Flutter view controller and + * the following ones of the app. + * + * @param engine The `FlutterEngine` instance to attach to. Cannot be nil. + * @param nibName The NIB name to initialize this controller with. + * @param nibBundle The NIB bundle. + */ +- (nonnull instancetype)initWithEngine:(nonnull FlutterEngine*)engine + nibName:(nullable NSString*)nibName + bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER; + +/** + * Return YES if the view controller is attached to an engine. + */ +- (BOOL)attached; + +/** + * Invoked by the engine right before the engine is restarted. + * + * This should reset states to as if the application has just started. It + * usually indicates a hot restart (Shift-R in Flutter CLI.) + */ +- (void)onPreEngineRestart; + +/** + * Returns the file name for the given asset. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @return The file name to be used for lookup in the main bundle. + */ +- (nonnull NSString*)lookupKeyForAsset:(nonnull NSString*)asset; + +/** + * Returns the file name for the given asset which originates from the specified + * package. + * The returned file name can be used to access the asset in the application's + * main bundle. + * + * @param asset The name of the asset. The name can be hierarchical. + * @param package The name of the package from which the asset originates. + * @return The file name to be used for lookup in the main bundle. + */ +- (nonnull NSString*)lookupKeyForAsset:(nonnull NSString*)asset + fromPackage:(nonnull NSString*)package; + +/** + * The contentView (FlutterView)'s background color is set to black during + * its instantiation. + * + * The containing layer's color can be set to the NSColor provided to this method. + * + * For example, the background may be set after the FlutterViewController + * is instantiated in MainFlutterWindow.swift in the Flutter project. + * ```swift + * import Cocoa + * import FlutterMacOS + * + * class MainFlutterWindow: NSWindow { + * override func awakeFromNib() { + * let flutterViewController = FlutterViewController() + * + * // The background color of the window and `FlutterViewController` + * // are retained separately. + * // + * // In this example, both the MainFlutterWindow and FlutterViewController's + * // FlutterView's backgroundColor are set to clear to achieve a fully + * // transparent effect. + * // + * // If the window's background color is not set, it will use the system + * // default. + * // + * // If the `FlutterView`'s color is not set via `FlutterViewController.setBackgroundColor` + * // it's default will be black. + * self.backgroundColor = NSColor.clear + * flutterViewController.backgroundColor = NSColor.clear + * + * let windowFrame = self.frame + * self.contentViewController = flutterViewController + * self.setFrame(windowFrame, display: true) + * + * RegisterGeneratedPlugins(registry: flutterViewController) + * + * super.awakeFromNib() + * } + * } + * ``` + */ +@property(readwrite, nonatomic, nullable, copy) NSColor* backgroundColor; + +@end diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Modules/module.modulemap b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Modules/module.modulemap new file mode 100644 index 0000000..3e70a88 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module FlutterMacOS { + umbrella header "FlutterMacOS.h" + + export * + module * { export * } +} diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/Info.plist b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..044a5e3 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + FlutterMacOS + CFBundleIdentifier + io.flutter.flutter-macos + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + FlutterMacOS + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + NSPrincipalClass + + + diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat new file mode 100644 index 0000000..62cfc0d Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat differ diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources new file mode 100644 index 0000000..6c2cb18 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources @@ -0,0 +1,244 @@ + + + + + files + + Resources/Info.plist + + jqU87p/MJtpIAzfj0wm59ZtbI3o= + + Resources/icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + + files2 + + Headers/FlutterAppDelegate.h + + hash2 + + waeNpoKLYFCncgG3uNrGiWJTtkJsnL3b0MM5oGnyS3g= + + + Headers/FlutterAppLifecycleDelegate.h + + hash2 + + 4FssdYr7eUB7e80ed4hssWDV5NGGhvOiluUG4atSbCU= + + + Headers/FlutterBinaryMessenger.h + + hash2 + + 4quj8X+HDK/AVExMhTcqLpIRxe/OjnnNTiON5KEv3hI= + + + Headers/FlutterChannels.h + + hash2 + + IAJwMIrTpwHKIiP2tBsYBUQe8B8qT6nLVEQzZLi+yFc= + + + Headers/FlutterCodecs.h + + hash2 + + Y1JL+Rn5pGoCA+qXfiSPa8dGiXxlpiHY4NzmmjVEuaY= + + + Headers/FlutterDartProject.h + + hash2 + + Z2cWf9G2hrQXXwHW+2ilnnP/58EqDYhte+THHob5IsI= + + + Headers/FlutterEngine.h + + hash2 + + UpV3ByacFzXhRrj9/JhKX5svVE36puXdJHXYYvjF0oY= + + + Headers/FlutterMacOS.h + + hash2 + + C8oz8WQD8EapvKxbBWPM2/3ol0RQMb9Z+ViIEPryoMM= + + + Headers/FlutterMacros.h + + hash2 + + IEPKCkPf/10aPZiU0dKCx8/ZoIfvkjycwKB4vH8mwG4= + + + Headers/FlutterPlatformViews.h + + hash2 + + XzVAwtEmkEc3RhQbtAlhdf/01qrTot2o1cxhWJzYXbM= + + + Headers/FlutterPluginMacOS.h + + hash2 + + kr6RHMFuxYGrVTjJgiRum/Vlez9x4Vj5VnfhQzy9RCg= + + + Headers/FlutterPluginRegistrarMacOS.h + + hash2 + + uBywWvhl2IaS2xGRj0VTzKMq3BVMc359g/GpaVdBG70= + + + Headers/FlutterTexture.h + + hash2 + + VkMu2v4CZSBLhGWCJdxdAPzVFOgUvVyyxpdwmfAnWrY= + + + Headers/FlutterViewController.h + + hash2 + + YDnUO5/k8bNatJ+CiPO691EIN9IJA3VYonOCGYU9G/c= + + + Modules/module.modulemap + + hash2 + + wgsdtVh6ndm95Zc35nrBbFsqLz3fGHr6DYyHgR8URbE= + + + Resources/Info.plist + + hash2 + + aDYD1VCbX1UQIZikBOHcRjPXPmzUntLnd7K2cjnvfoQ= + + + Resources/icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/Current b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/FlutterMacOS.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/App b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/App new file mode 120000 index 0000000..d4af921 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/App @@ -0,0 +1 @@ +Versions/Current/App \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Resources b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/App b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/App new file mode 100755 index 0000000..e7bd7cc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/App differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/Info.plist b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..8a072d0 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,23 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..146fb51 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/images/.DS_Store  assetassets/images/.DS_Storeassets/images/Disney_land.webp  assetassets/images/Disney_land.webpassets/images/Eiffel_tower.jpeg  assetassets/images/Eiffel_tower.jpegassets/images/Hill_station.jpeg  assetassets/images/Hill_station.jpeg"assets/images/KAGAGAHAN_RIJANI.jpg  asset"assets/images/KAGAGAHAN_RIJANI.jpgassets/images/Mountain_icon.png  assetassets/images/Mountain_icon.pngassets/images/Red_fort.jpg  assetassets/images/Red_fort.jpg+assets/images/Taj-Mahal-Agra-India.jpg.webp  asset+assets/images/Taj-Mahal-Agra-India.jpg.webpassets/images/cartoon.jpg  assetassets/images/cartoon.jpgassets/images/china_wall.webp  assetassets/images/china_wall.webpassets/images/city.png  assetassets/images/city.pngassets/images/desert.png  assetassets/images/desert.pngassets/images/forest.png  assetassets/images/forest.png$assets/images/historical_places.jpeg  asset$assets/images/historical_places.jpegassets/images/india_gate.jpeg  assetassets/images/india_gate.jpegassets/images/las.jpeg  assetassets/images/las.jpegassets/images/las_vegas.jpeg  assetassets/images/las_vegas.jpegassets/images/lotus-temple.jpeg  assetassets/images/lotus-temple.jpegassets/images/menu.png  assetassets/images/menu.pngassets/images/menu_icon.png  assetassets/images/menu_icon.pngassets/images/murano.jpg  assetassets/images/murano.jpgassets/images/newdelhi.jpg  assetassets/images/newdelhi.jpgassets/images/paris.jpg  assetassets/images/paris.jpgassets/images/red-fort.jpg  assetassets/images/red-fort.jpgassets/images/river.png  assetassets/images/river.pngassets/images/shimla.jpeg  assetassets/images/shimla.jpegassets/images/tajmahal.jpg  assetassets/images/tajmahal.jpgassets/images/temple.jpg  assetassets/images/temple.jpgassets/images/waterfall.png  assetassets/images/waterfall.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json new file mode 100644 index 0000000..cfb4f29 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/Disney_land.webp":["assets/images/Disney_land.webp"],"assets/images/Eiffel_tower.jpeg":["assets/images/Eiffel_tower.jpeg"],"assets/images/Hill_station.jpeg":["assets/images/Hill_station.jpeg"],"assets/images/KAGAGAHAN_RIJANI.jpg":["assets/images/KAGAGAHAN_RIJANI.jpg"],"assets/images/Mountain_icon.png":["assets/images/Mountain_icon.png"],"assets/images/Red_fort.jpg":["assets/images/Red_fort.jpg"],"assets/images/Taj-Mahal-Agra-India.jpg.webp":["assets/images/Taj-Mahal-Agra-India.jpg.webp"],"assets/images/cartoon.jpg":["assets/images/cartoon.jpg"],"assets/images/china_wall.webp":["assets/images/china_wall.webp"],"assets/images/city.png":["assets/images/city.png"],"assets/images/desert.png":["assets/images/desert.png"],"assets/images/forest.png":["assets/images/forest.png"],"assets/images/historical_places.jpeg":["assets/images/historical_places.jpeg"],"assets/images/india_gate.jpeg":["assets/images/india_gate.jpeg"],"assets/images/las.jpeg":["assets/images/las.jpeg"],"assets/images/las_vegas.jpeg":["assets/images/las_vegas.jpeg"],"assets/images/lotus-temple.jpeg":["assets/images/lotus-temple.jpeg"],"assets/images/menu.png":["assets/images/menu.png"],"assets/images/menu_icon.png":["assets/images/menu_icon.png"],"assets/images/murano.jpg":["assets/images/murano.jpg"],"assets/images/newdelhi.jpg":["assets/images/newdelhi.jpg"],"assets/images/paris.jpg":["assets/images/paris.jpg"],"assets/images/red-fort.jpg":["assets/images/red-fort.jpg"],"assets/images/river.png":["assets/images/river.png"],"assets/images/shimla.jpeg":["assets/images/shimla.jpeg"],"assets/images/tajmahal.jpg":["assets/images/tajmahal.jpg"],"assets/images/temple.jpg":["assets/images/temple.jpg"],"assets/images/waterfall.png":["assets/images/waterfall.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json new file mode 100644 index 0000000..464ab58 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..5c16833 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/NOTICES.Z differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp new file mode 100644 index 0000000..1015508 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Disney_land.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg new file mode 100644 index 0000000..158d304 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Eiffel_tower.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg new file mode 100644 index 0000000..a4d40fe Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Hill_station.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg new file mode 100644 index 0000000..3c5b677 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png new file mode 100644 index 0000000..80b57fe Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Mountain_icon.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Red_fort.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg new file mode 100644 index 0000000..c25f69b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/cartoon.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp new file mode 100644 index 0000000..e0ec0bc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/china_wall.webp differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png new file mode 100644 index 0000000..ccfd6bf Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/city.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png new file mode 100644 index 0000000..4e69753 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/desert.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png new file mode 100644 index 0000000..f3f35f4 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/forest.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg new file mode 100644 index 0000000..ba13320 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/historical_places.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg new file mode 100644 index 0000000..36cea01 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/india_gate.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg new file mode 100644 index 0000000..83492b5 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg new file mode 100644 index 0000000..d5121e6 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/las_vegas.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg new file mode 100644 index 0000000..93f612a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/lotus-temple.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png new file mode 100644 index 0000000..d61271b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png new file mode 100644 index 0000000..cbdccce Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/menu_icon.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg new file mode 100644 index 0000000..14aeba9 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/murano.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg new file mode 100644 index 0000000..ebee971 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/newdelhi.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg new file mode 100644 index 0000000..5b593d7 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/paris.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg new file mode 100644 index 0000000..625367a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/red-fort.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png new file mode 100644 index 0000000..5fa0dc5 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/river.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg new file mode 100644 index 0000000..863e191 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/shimla.jpeg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg new file mode 100644 index 0000000..cd9ac62 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/tajmahal.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg new file mode 100644 index 0000000..8278c3f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/temple.jpg differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png new file mode 100644 index 0000000..331507e Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/assets/images/waterfall.png differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6a5616f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/isolate_snapshot_data differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..c490cdc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/kernel_blob.bin differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 0000000..79ba7ea Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..73f984f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..2464640 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/Resources/flutter_assets/vm_snapshot_data differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/_CodeSignature/CodeResources b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/_CodeSignature/CodeResources new file mode 100644 index 0000000..efdc06a --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/A/_CodeSignature/CodeResources @@ -0,0 +1,546 @@ + + + + + files + + Resources/Info.plist + + yxv1a2BjaTIAD1Ye63vf3R+QhUU= + + Resources/flutter_assets/AssetManifest.bin + + wcJZyp0JCnLRE7WIN86ETE3dZxQ= + + Resources/flutter_assets/AssetManifest.json + + 1jzEu7fbeGa+DUg3iA5Dj/uTT1w= + + Resources/flutter_assets/FontManifest.json + + vKJkVIcw+LGHFnKJGwrQwCREv68= + + Resources/flutter_assets/NOTICES.Z + + RIAilnlOaIQ4G5me//hYHoX0dxY= + + Resources/flutter_assets/assets/images/Disney_land.webp + + pi4K1n/M94kAzaqlGrUpGyQtiKc= + + Resources/flutter_assets/assets/images/Eiffel_tower.jpeg + + gtxhDr+7jZ+dDey5STfW0y3hyIA= + + Resources/flutter_assets/assets/images/Hill_station.jpeg + + KOG2B6EOkfiqU/q8it2gTW7AVwU= + + Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + p2GR77UjawEuM54U/TTdp5NUloA= + + Resources/flutter_assets/assets/images/Mountain_icon.png + + X9P0JioFiesVs6F5goSurEiSLjw= + + Resources/flutter_assets/assets/images/Red_fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Resources/flutter_assets/assets/images/cartoon.jpg + + u69i6nMbDRH9G5bI+Z4tDmBZCPM= + + Resources/flutter_assets/assets/images/china_wall.webp + + c06kMLguJmElg5glepcLln0LjrE= + + Resources/flutter_assets/assets/images/city.png + + b1CdzRtHcm41/XZVRoI3Nrups4M= + + Resources/flutter_assets/assets/images/desert.png + + hmRkhnwTRYBcaP/g3ygJ4KWofoE= + + Resources/flutter_assets/assets/images/forest.png + + lVQEgTadD4lzDoB5SZ7uNlhRfx0= + + Resources/flutter_assets/assets/images/historical_places.jpeg + + SBBFCtdM8dTwa2A7Xq3PjqFHh1c= + + Resources/flutter_assets/assets/images/india_gate.jpeg + + Q2vJp8vSC+LHi3miAr9yTnRPRjI= + + Resources/flutter_assets/assets/images/las.jpeg + + sQsLJ4z80A2PN9RXfFf8bgOo/Iw= + + Resources/flutter_assets/assets/images/las_vegas.jpeg + + /NwlZQPMASjcqyv04e0uKdt45k8= + + Resources/flutter_assets/assets/images/lotus-temple.jpeg + + PypYe8pFMtwZThmOFSrL/6PeLjs= + + Resources/flutter_assets/assets/images/menu.png + + hhLT1dSEedNDEwXZel0YjGGvEUc= + + Resources/flutter_assets/assets/images/menu_icon.png + + nrRD7InZ8egktSpwtW6QQMjCUCg= + + Resources/flutter_assets/assets/images/murano.jpg + + mWNp5suntl/Ny4y6+wya7DTprzA= + + Resources/flutter_assets/assets/images/newdelhi.jpg + + Spm91uaDZSiR1gmoAreVGF+TM4s= + + Resources/flutter_assets/assets/images/paris.jpg + + JUOiZ19qKu1pAGjmUkEpmJMNJLg= + + Resources/flutter_assets/assets/images/red-fort.jpg + + QKnNb92irYK/YvJcZ2YtBka+szU= + + Resources/flutter_assets/assets/images/river.png + + mHowu9+zogbNlO4vwOc4uQXkmdk= + + Resources/flutter_assets/assets/images/shimla.jpeg + + mwllpT3oOEiCE/f4tuhFQ9o0X9U= + + Resources/flutter_assets/assets/images/tajmahal.jpg + + BSzI/nwBjd43QLAeuqryQa9hcKc= + + Resources/flutter_assets/assets/images/temple.jpg + + NaV8JYJ/xg7ypEGp7pILxmw6I24= + + Resources/flutter_assets/assets/images/waterfall.png + + RI/Hy0Cnq9OtAHz8rwQGj2zbIs4= + + Resources/flutter_assets/fonts/MaterialIcons-Regular.otf + + /CUoTuPQqqdexfyOT9lpJhV+2MQ= + + Resources/flutter_assets/isolate_snapshot_data + + rEm9QHmX9lHK140Gnnn2K8SPfaU= + + Resources/flutter_assets/kernel_blob.bin + + QSTEiY03IQHTu8se+t4fqtfVwl0= + + Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + P7bb/oR3EhwqCIH1M6LyTuBIWYU= + + Resources/flutter_assets/shaders/ink_sparkle.frag + + XHXaUJyiOGA8Fg8IUhEcTdXECcA= + + Resources/flutter_assets/vm_snapshot_data + + +HsWKuOINTMijVvKruokFpzcml8= + + + files2 + + Resources/Info.plist + + hash2 + + wCWlrRVPbO84WsrdcQvLMq6Yz/zmZ2OX8Vz6nMChxzY= + + + Resources/flutter_assets/AssetManifest.bin + + hash2 + + XJ0fsXCWi4X7LOqm47ClqEeWOEQ7g32dHNwpK1n44J0= + + + Resources/flutter_assets/AssetManifest.json + + hash2 + + +xZwY7n8csONkbsfAXhhZXn4AJIFPIZNIiEHU1LWOVA= + + + Resources/flutter_assets/FontManifest.json + + hash2 + + zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE= + + + Resources/flutter_assets/NOTICES.Z + + hash2 + + C4szPdS0AD7JLMyAxOIXKRO6ASL7TphOPzbz+/rCD8o= + + + Resources/flutter_assets/assets/images/Disney_land.webp + + hash2 + + MNvtzIR2rb1ms/zd+Es/yUaPnaVrVTvADJ2v4PnCNyI= + + + Resources/flutter_assets/assets/images/Eiffel_tower.jpeg + + hash2 + + zyqCLrURHmB1e5eKJFYunsv+/4olD/hx4NgZwqrg97E= + + + Resources/flutter_assets/assets/images/Hill_station.jpeg + + hash2 + + lg2fo+77Qtsx/f4d5WlqSuDumXDXfwfTDGMHc8YtGVE= + + + Resources/flutter_assets/assets/images/KAGAGAHAN_RIJANI.jpg + + hash2 + + lqf+mhTFVUlMDPj9e/bR5IPawgq/bfeLAie8uw4t5o0= + + + Resources/flutter_assets/assets/images/Mountain_icon.png + + hash2 + + CVjDGl3uP+F/Wgx794udhdRcN+tu4kPt2IKTTeV7Fm4= + + + Resources/flutter_assets/assets/images/Red_fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Resources/flutter_assets/assets/images/Taj-Mahal-Agra-India.jpg.webp + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Resources/flutter_assets/assets/images/cartoon.jpg + + hash2 + + XTxREOJC7QU4N1crE1zSzaQcdD2ZExSYW0LCF4PyzjE= + + + Resources/flutter_assets/assets/images/china_wall.webp + + hash2 + + NkhZdRUg0UV4Ubk9+ZzMzYIpF9OWf5cvy3kY+jgrGns= + + + Resources/flutter_assets/assets/images/city.png + + hash2 + + 2vW2j+4otcGXwSmsQh72npKqwjaMFdHEqjSFSoZ6vp4= + + + Resources/flutter_assets/assets/images/desert.png + + hash2 + + G6LdjjL+nTt+tnjgFX0FXdALlle8+IFxLhtcGvYFSMM= + + + Resources/flutter_assets/assets/images/forest.png + + hash2 + + qyx8eEU7ziqN2mF3IEJDjTuQbBU7cZhPJBBMw7aCpGU= + + + Resources/flutter_assets/assets/images/historical_places.jpeg + + hash2 + + YWhJz5mIE6fj9g+6I1oYG6A1VfPnQMTe6K3OUq6NwFY= + + + Resources/flutter_assets/assets/images/india_gate.jpeg + + hash2 + + 3YDQ4Wl1wy1rzraGYhfJh6xF6FX5SmKlKyUL/s8wrvo= + + + Resources/flutter_assets/assets/images/las.jpeg + + hash2 + + yNpoy4vHrZ4RPTxAW3X46P2aJW8JTAcuKpj6fM1S8rY= + + + Resources/flutter_assets/assets/images/las_vegas.jpeg + + hash2 + + j1oqWnHAIR/W7Cy50zC3T/G+ttdjGvoa1BfWIJEmCp0= + + + Resources/flutter_assets/assets/images/lotus-temple.jpeg + + hash2 + + MWc8aWK2LMsoYJfHHVJZMy8lXH2smFtLUJZSGsKG16I= + + + Resources/flutter_assets/assets/images/menu.png + + hash2 + + 1pqcZSuoK5a2Nj/7mwK1ouzGgtGdoBSLamxdThyzNac= + + + Resources/flutter_assets/assets/images/menu_icon.png + + hash2 + + 8s3YNF6loN7mD/Fc5nU18NTbqC/oZeWgU/BuC4LShNk= + + + Resources/flutter_assets/assets/images/murano.jpg + + hash2 + + mpgv1R1+CN6ClrOWGvciOgcowzjIepsBZV2qTVomAbQ= + + + Resources/flutter_assets/assets/images/newdelhi.jpg + + hash2 + + ZjXLkhDYR1iWMqCn6kX+nhic6mP1/5ogwIvGfAKrnJg= + + + Resources/flutter_assets/assets/images/paris.jpg + + hash2 + + /gQtMpQzoXXbrdf3v9yOVE/D1UoirgzRkayesy4NrTA= + + + Resources/flutter_assets/assets/images/red-fort.jpg + + hash2 + + OoIbexepx675cd+/tajMmQP1h/50HtMDK3bpQj9Xd+k= + + + Resources/flutter_assets/assets/images/river.png + + hash2 + + RRB61WMYLDK6vAKQ7Ju3m0Si8Lt326chciOPsE1rviE= + + + Resources/flutter_assets/assets/images/shimla.jpeg + + hash2 + + DxwGcaunQPnLfKpJDLa6AxulHLz6gMeRwlQKUZHZ9Uk= + + + Resources/flutter_assets/assets/images/tajmahal.jpg + + hash2 + + SMniVn1Bj19GPfhWob+qSZKQtJZnGKow9fX2mGt0bZs= + + + Resources/flutter_assets/assets/images/temple.jpg + + hash2 + + m08jJbmVdP7dotM0SXrb+pdpaXDExUri+GameP/1hJA= + + + Resources/flutter_assets/assets/images/waterfall.png + + hash2 + + ZZuq4eWCIuOGotjYIeZSMU/nCP5m1ZjF28mxada77EM= + + + Resources/flutter_assets/fonts/MaterialIcons-Regular.otf + + hash2 + + 2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM= + + + Resources/flutter_assets/isolate_snapshot_data + + hash2 + + xqTNttXLjHIz+PPExj3G9tN4xAJ96JV248w0bfsuIyQ= + + + Resources/flutter_assets/kernel_blob.bin + + hash2 + + iylnjFA8f5dd8PRMsUapJe4qQw/OZs1JbyYb4BCj8vw= + + + Resources/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf + + hash2 + + x6NX+tjyECiQtyzbbjyY8U2zoZ7GDbJtE+T+k/dzgI0= + + + Resources/flutter_assets/shaders/ink_sparkle.frag + + hash2 + + uD2fimg4X20XUZPRRgWzjIwZQyusgegogzEXEDtrdvE= + + + Resources/flutter_assets/vm_snapshot_data + + hash2 + + XRpcsR0vWGkDzG+35GjjzaJtqN3CuV3azmWWPti/o3M= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/Current b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/App.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/FlutterMacOS b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/FlutterMacOS new file mode 120000 index 0000000..8c8be5a --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/FlutterMacOS @@ -0,0 +1 @@ +Versions/Current/FlutterMacOS \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Resources b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/FlutterMacOS b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/FlutterMacOS new file mode 100755 index 0000000..eba40f5 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/FlutterMacOS differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/Info.plist b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..044a5e3 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + FlutterMacOS + CFBundleIdentifier + io.flutter.flutter-macos + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + FlutterMacOS + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + NSPrincipalClass + + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat new file mode 100644 index 0000000..62cfc0d Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/Resources/icudtl.dat differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources new file mode 100644 index 0000000..8a4258b --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A/_CodeSignature/CodeResources @@ -0,0 +1,139 @@ + + + + + files + + Resources/Info.plist + + jqU87p/MJtpIAzfj0wm59ZtbI3o= + + Resources/icudtl.dat + + nMTZkkm9uooDDa8A2YJSyK73oP8= + + + files2 + + Resources/Info.plist + + hash2 + + aDYD1VCbX1UQIZikBOHcRjPXPmzUntLnd7K2cjnvfoQ= + + + Resources/icudtl.dat + + hash2 + + rETMw/Yb9jC7IPuAQ9hs/kyJldBrRgCEQA20XXBJezA= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/Current b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/FlutterMacOS.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftAppKit.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftAppKit.dylib new file mode 100755 index 0000000..9f6fee0 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftAppKit.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCore.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCore.dylib new file mode 100755 index 0000000..5001a7f Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCore.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreAudio.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreAudio.dylib new file mode 100755 index 0000000..48f1344 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreAudio.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreData.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreData.dylib new file mode 100755 index 0000000..d09d5fc Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreData.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreFoundation.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreFoundation.dylib new file mode 100755 index 0000000..e45dc84 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreFoundation.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreGraphics.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 0000000..659d03a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreImage.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 0000000..a9d04a0 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreImage.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreMedia.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreMedia.dylib new file mode 100755 index 0000000..572b27c Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftCoreMedia.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDarwin.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDarwin.dylib new file mode 100755 index 0000000..c8770de Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDarwin.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDispatch.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDispatch.dylib new file mode 100755 index 0000000..c38df48 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftDispatch.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftFoundation.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftFoundation.dylib new file mode 100755 index 0000000..fc39ad4 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftFoundation.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftIOKit.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftIOKit.dylib new file mode 100755 index 0000000..a07a64a Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftIOKit.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftMetal.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftMetal.dylib new file mode 100755 index 0000000..344b973 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftMetal.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftObjectiveC.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 0000000..cc7a3c8 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftObjectiveC.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftQuartzCore.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftQuartzCore.dylib new file mode 100755 index 0000000..4f1de8b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftQuartzCore.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftXPC.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftXPC.dylib new file mode 100755 index 0000000..90594aa Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftXPC.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftos.dylib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftos.dylib new file mode 100755 index 0000000..5ff2fa3 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Frameworks/libswiftos.dylib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist new file mode 100644 index 0000000..422d5ac --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Info.plist @@ -0,0 +1,56 @@ + + + + + BuildMachineOSBuild + 22G90 + CFBundleDevelopmentRegion + en + CFBundleExecutable + task_1 + CFBundleIconFile + AppIcon + CFBundleIconName + AppIcon + CFBundleIdentifier + com.example.task1 + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + task_1 + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0.0 + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 13.3 + DTSDKBuild + 22E245 + DTSDKName + macosx13.3 + DTXcode + 1431 + DTXcodeBuild + 14E300c + LSMinimumSystemVersion + 10.14 + NSHumanReadableCopyright + Copyright © 2023 com.example. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 new file mode 100755 index 0000000..b543a00 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/MacOS/task_1 differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/AppIcon.icns b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/AppIcon.icns new file mode 100644 index 0000000..ceae6f7 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/AppIcon.icns differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car new file mode 100644 index 0000000..fc0f612 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Assets.car differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib new file mode 100644 index 0000000..ecaf2f3 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/Resources/Base.lproj/MainMenu.nib differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/_CodeSignature/CodeResources b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/_CodeSignature/CodeResources new file mode 100644 index 0000000..4f9a01e --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.app/Contents/_CodeSignature/CodeResources @@ -0,0 +1,321 @@ + + + + + files + + Resources/AppIcon.icns + + aAxGg0Q+dQoQhfAk9AHVCAev338= + + Resources/Assets.car + + H+5I/s/jo/fqT8F5Hx40PrM1FdI= + + Resources/Base.lproj/MainMenu.nib + + iTNl8tMBYaZOWsp9FL18VcrlDbA= + + + files2 + + Frameworks/App.framework + + cdhash + + EC2R4i3wkonkzchDY5NYfa/IhVc= + + requirement + cdhash H"102d91e22df09289e4cdc8436393587dafc88557" + + Frameworks/FlutterMacOS.framework + + cdhash + + Y6T8umCh36tmOVzmURmimy1qYS8= + + requirement + cdhash H"63a4fcba60a1dfab66395ce65119a29b2d6a612f" + + Frameworks/libswiftAppKit.dylib + + cdhash + + /OmwGRbORcnNjnoLmSHJ5YPdYTA= + + requirement + cdhash H"93e4a579dc797d359af753c1d9875e1e368a7be4" or cdhash H"fce9b01916ce45c9cd8e7a0b9921c9e583dd6130" + + Frameworks/libswiftCore.dylib + + cdhash + + GX4mmXq+7/mQoj8oZdn8Hutw0Y8= + + requirement + cdhash H"5896a3c5c845fa8e206333a333969a967f159eeb" or cdhash H"197e26997abeeff990a23f2865d9fc1eeb70d18f" + + Frameworks/libswiftCoreAudio.dylib + + cdhash + + A7UrDoeeg9NbAL6zhhfNao2U+rc= + + requirement + cdhash H"addbf0ec5c37ef636ad1edbe3596d1ecf1a9db42" or cdhash H"03b52b0e879e83d35b00beb38617cd6a8d94fab7" + + Frameworks/libswiftCoreData.dylib + + cdhash + + RgOKaMtfkc0qUMlFJgiXpeQ4Sdo= + + requirement + cdhash H"9ffc88ce5cb9c9b9acd49f00caa1b083efdbe122" or cdhash H"46038a68cb5f91cd2a50c945260897a5e43849da" + + Frameworks/libswiftCoreFoundation.dylib + + cdhash + + BH44Vy47Lx+AwIteCd/JCOP+GvY= + + requirement + cdhash H"8fa7f3c353eb61af2b7fc8c12269195f74bea074" or cdhash H"047e38572e3b2f1f80c08b5e09dfc908e3fe1af6" + + Frameworks/libswiftCoreGraphics.dylib + + cdhash + + k0cSEkTzmj4aFYrjlQ01bP4lHFc= + + requirement + cdhash H"3604106a6a3cb32759dbdec9dd34797d3641fe01" or cdhash H"9347121244f39a3e1a158ae3950d356cfe251c57" + + Frameworks/libswiftCoreImage.dylib + + cdhash + + 71/02RN7QBBmkWLMRa2YS0OEzOs= + + requirement + cdhash H"1c94028a679fd3abc70acbf9a125258c112c0371" or cdhash H"ef5ff4d9137b4010669162cc45ad984b4384cceb" + + Frameworks/libswiftCoreMedia.dylib + + cdhash + + wKq5+CadziNvyHnxt5nSaAMhEdk= + + requirement + cdhash H"fcfdbfac49b22f22aff1a259db747bf573307d2a" or cdhash H"c0aab9f8269dce236fc879f1b799d268032111d9" + + Frameworks/libswiftDarwin.dylib + + cdhash + + J8aEbcH96rf3olM1v8wJQms7xaI= + + requirement + cdhash H"300b03492cc2be4543d5f2be1e06909f387af72d" or cdhash H"27c6846dc1fdeab7f7a25335bfcc09426b3bc5a2" + + Frameworks/libswiftDispatch.dylib + + cdhash + + 1DtZZpeByuwlmdUB3e/N6JGfZ14= + + requirement + cdhash H"bab33e638bc83f0268af02eebce6bf5dd6b3c51f" or cdhash H"d43b59669781caec2599d501ddefcde8919f675e" + + Frameworks/libswiftFoundation.dylib + + cdhash + + 8t0+NaUGfny0OE73x/qjMHlQjFE= + + requirement + cdhash H"d7e9fb967f6385f8a8b790ae5a59c01d83b2672c" or cdhash H"f2dd3e35a5067e7cb4384ef7c7faa33079508c51" + + Frameworks/libswiftIOKit.dylib + + cdhash + + pQPvcS1eE2AmKSN5CMtcZiMT4PQ= + + requirement + cdhash H"f5bd61791fbc60c97936524b070348de57792878" or cdhash H"a503ef712d5e13602629237908cb5c662313e0f4" + + Frameworks/libswiftMetal.dylib + + cdhash + + tKr6i2JJtHEFLkK/fMudC093jZ4= + + requirement + cdhash H"1291840c54eedc74a0c7b25a0aa8a3ea8ba2dd1f" or cdhash H"b4aafa8b6249b471052e42bf7ccb9d0b4f778d9e" + + Frameworks/libswiftObjectiveC.dylib + + cdhash + + OwCGe/c9CItCxNr6jAps2hesJYA= + + requirement + cdhash H"5f949b391729fb4cb0aac45efc729edf52fc94ea" or cdhash H"3b00867bf73d088b42c4dafa8c0a6cda17ac2580" + + Frameworks/libswiftQuartzCore.dylib + + cdhash + + AtxA7yzVGYRZPoPfhZZSpfLEEyU= + + requirement + cdhash H"e02d111c168bcdb2d35b89d2b165838e343b452e" or cdhash H"02dc40ef2cd51984593e83df859652a5f2c41325" + + Frameworks/libswiftXPC.dylib + + cdhash + + uFKhujvCOYyZ4lm3G/9ojAmusY8= + + requirement + cdhash H"fcc4f33e2b4fdf2be11ccb50f72a1365b70294a8" or cdhash H"b852a1ba3bc2398c99e259b71bff688c09aeb18f" + + Frameworks/libswiftos.dylib + + cdhash + + c+BBGYIvLYzV7rQm3awrK5gpXe8= + + requirement + cdhash H"3406aab10f486b91c2d9334de341504de56a5631" or cdhash H"73e04119822f2d8cd5eeb426ddac2b2b98295def" + + Resources/AppIcon.icns + + hash2 + + cmkXXoTx+ZUjFC50oDL4Cmb6f++oBA9wPejlIra72Gc= + + + Resources/Assets.car + + hash2 + + hp3PPmWOY8nmZVaVti2JmL7rk8//6lqBgK8E69Ou3tY= + + + Resources/Base.lproj/MainMenu.nib + + hash2 + + 7g5SvmGw9lEPDAZmr8cARd7HJFKrvkjYVIAgLUC0iX0= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo new file mode 100644 index 0000000..8a4e841 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json new file mode 100644 index 0000000..dc109fc --- /dev/null +++ b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.abi.json @@ -0,0 +1,9 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc new file mode 100644 index 0000000..859eb8b Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftdoc differ diff --git a/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule new file mode 100644 index 0000000..fb6d166 Binary files /dev/null and b/Task1/build/macos/Build/Products/Debug/task_1.swiftmodule/arm64-apple-macos.swiftmodule differ diff --git a/Task1/build/macos/Logs/Build/.dat.nosync5392.YXdKzl b/Task1/build/macos/Logs/Build/.dat.nosync5392.YXdKzl new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/.dat.nosync63ae.gsNYQR b/Task1/build/macos/Logs/Build/.dat.nosync63ae.gsNYQR new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/.dat.nosync6ed0.eUFhEC b/Task1/build/macos/Logs/Build/.dat.nosync6ed0.eUFhEC new file mode 100644 index 0000000..1886d0a --- /dev/null +++ b/Task1/build/macos/Logs/Build/.dat.nosync6ed0.eUFhEC @@ -0,0 +1,79 @@ + + + + + logFormatVersion + 10 + logs + + BB65F758-79C8-4C14-AEDF-F25919D5DD13 + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + BB65F758-79C8-4C14-AEDF-F25919D5DD13.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + E + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714763136.59541702 + timeStoppedRecording + 714763137.29890704 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + BB65F758-79C8-4C14-AEDF-F25919D5DD13 + + DD4FAB97-809B-443D-B106-8B902953F50C + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + DD4FAB97-809B-443D-B106-8B902953F50C.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + S + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714653402.71037304 + timeStoppedRecording + 714653416.19616699 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + DD4FAB97-809B-443D-B106-8B902953F50C + + + + diff --git a/Task1/build/macos/Logs/Build/.dat.nosync6f41.7fouyt b/Task1/build/macos/Logs/Build/.dat.nosync6f41.7fouyt new file mode 100644 index 0000000..28e12b5 --- /dev/null +++ b/Task1/build/macos/Logs/Build/.dat.nosync6f41.7fouyt @@ -0,0 +1,79 @@ + + + + + logFormatVersion + 10 + logs + + CB4E4655-2A3D-4546-925E-47DDBA1D66BC + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + CB4E4655-2A3D-4546-925E-47DDBA1D66BC.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + E + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714763155.74666703 + timeStoppedRecording + 714763156.24329901 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + CB4E4655-2A3D-4546-925E-47DDBA1D66BC + + DD4FAB97-809B-443D-B106-8B902953F50C + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + DD4FAB97-809B-443D-B106-8B902953F50C.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + S + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714653402.71037304 + timeStoppedRecording + 714653416.19616699 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + DD4FAB97-809B-443D-B106-8B902953F50C + + + + diff --git a/Task1/build/macos/Logs/Build/.dat.nosync6f90.DzVscQ b/Task1/build/macos/Logs/Build/.dat.nosync6f90.DzVscQ new file mode 100644 index 0000000..18c6521 --- /dev/null +++ b/Task1/build/macos/Logs/Build/.dat.nosync6f90.DzVscQ @@ -0,0 +1,79 @@ + + + + + logFormatVersion + 10 + logs + + 4BE1522B-FA8C-421A-ADED-774CC54D0898 + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + 4BE1522B-FA8C-421A-ADED-774CC54D0898.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + E + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714763172.88884699 + timeStoppedRecording + 714763173.22458196 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + 4BE1522B-FA8C-421A-ADED-774CC54D0898 + + DD4FAB97-809B-443D-B106-8B902953F50C + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + DD4FAB97-809B-443D-B106-8B902953F50C.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + S + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714653402.71037304 + timeStoppedRecording + 714653416.19616699 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + DD4FAB97-809B-443D-B106-8B902953F50C + + + + diff --git a/Task1/build/macos/Logs/Build/.dat.nosync73db.obNNXQ b/Task1/build/macos/Logs/Build/.dat.nosync73db.obNNXQ new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/.dat.nosync74b4.wgxbgz b/Task1/build/macos/Logs/Build/.dat.nosync74b4.wgxbgz new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/.dat.nosync85a6.pvZ3Vv b/Task1/build/macos/Logs/Build/.dat.nosync85a6.pvZ3Vv new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/0462A2B0-434F-4FA0-8A5D-1188A51903C6.xcactivitylog b/Task1/build/macos/Logs/Build/0462A2B0-434F-4FA0-8A5D-1188A51903C6.xcactivitylog new file mode 100644 index 0000000..c4bc63c Binary files /dev/null and b/Task1/build/macos/Logs/Build/0462A2B0-434F-4FA0-8A5D-1188A51903C6.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/06E003E4-4DB1-4783-95DB-5915511E0C77.xcactivitylog b/Task1/build/macos/Logs/Build/06E003E4-4DB1-4783-95DB-5915511E0C77.xcactivitylog new file mode 100644 index 0000000..3f16335 Binary files /dev/null and b/Task1/build/macos/Logs/Build/06E003E4-4DB1-4783-95DB-5915511E0C77.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/0B75C938-CEF3-4C85-AE44-A10CD947B58F.xcactivitylog b/Task1/build/macos/Logs/Build/0B75C938-CEF3-4C85-AE44-A10CD947B58F.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/0BB3C881-A290-4B8E-AD9E-D2A8B2E1F0C9.xcactivitylog b/Task1/build/macos/Logs/Build/0BB3C881-A290-4B8E-AD9E-D2A8B2E1F0C9.xcactivitylog new file mode 100644 index 0000000..c589fbe Binary files /dev/null and b/Task1/build/macos/Logs/Build/0BB3C881-A290-4B8E-AD9E-D2A8B2E1F0C9.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/0FF5E119-82C0-48DD-9AE2-9474BF99E36B.xcactivitylog b/Task1/build/macos/Logs/Build/0FF5E119-82C0-48DD-9AE2-9474BF99E36B.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/10EC0EBE-5E8B-471D-B0C5-6DD2FD8AE868.xcactivitylog b/Task1/build/macos/Logs/Build/10EC0EBE-5E8B-471D-B0C5-6DD2FD8AE868.xcactivitylog new file mode 100644 index 0000000..2b06ef5 Binary files /dev/null and b/Task1/build/macos/Logs/Build/10EC0EBE-5E8B-471D-B0C5-6DD2FD8AE868.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/23AD3C55-99E3-49C2-AC3C-01003E9F642F.xcactivitylog b/Task1/build/macos/Logs/Build/23AD3C55-99E3-49C2-AC3C-01003E9F642F.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/28994C4D-B050-4707-8446-673751651F54.xcactivitylog b/Task1/build/macos/Logs/Build/28994C4D-B050-4707-8446-673751651F54.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/2D4F7B1B-9807-464C-943E-F761D55B04FB.xcactivitylog b/Task1/build/macos/Logs/Build/2D4F7B1B-9807-464C-943E-F761D55B04FB.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/2DD42F6B-824A-4438-8706-10C7C6FA6993.xcactivitylog b/Task1/build/macos/Logs/Build/2DD42F6B-824A-4438-8706-10C7C6FA6993.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/34F86DCB-F884-42BB-8CCB-70C8A7FCDCBC.xcactivitylog b/Task1/build/macos/Logs/Build/34F86DCB-F884-42BB-8CCB-70C8A7FCDCBC.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/37A7D13B-1043-4C74-88C9-D88C76AD0B93.xcactivitylog b/Task1/build/macos/Logs/Build/37A7D13B-1043-4C74-88C9-D88C76AD0B93.xcactivitylog new file mode 100644 index 0000000..f688b58 Binary files /dev/null and b/Task1/build/macos/Logs/Build/37A7D13B-1043-4C74-88C9-D88C76AD0B93.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/3B5DC4F8-A5A3-448D-863A-A62FCA5858FD.xcactivitylog b/Task1/build/macos/Logs/Build/3B5DC4F8-A5A3-448D-863A-A62FCA5858FD.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/419D12B4-460C-49A7-8EDD-3C4C3A64E800.xcactivitylog b/Task1/build/macos/Logs/Build/419D12B4-460C-49A7-8EDD-3C4C3A64E800.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/4BE1522B-FA8C-421A-ADED-774CC54D0898.xcactivitylog b/Task1/build/macos/Logs/Build/4BE1522B-FA8C-421A-ADED-774CC54D0898.xcactivitylog new file mode 100644 index 0000000..16663f4 Binary files /dev/null and b/Task1/build/macos/Logs/Build/4BE1522B-FA8C-421A-ADED-774CC54D0898.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/57761E64-4247-447D-80BC-1CFE5C715D8F.xcactivitylog b/Task1/build/macos/Logs/Build/57761E64-4247-447D-80BC-1CFE5C715D8F.xcactivitylog new file mode 100644 index 0000000..b8b93b6 Binary files /dev/null and b/Task1/build/macos/Logs/Build/57761E64-4247-447D-80BC-1CFE5C715D8F.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/582AB74A-4F6E-43F8-84D3-6D85EAD266E5.xcactivitylog b/Task1/build/macos/Logs/Build/582AB74A-4F6E-43F8-84D3-6D85EAD266E5.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/61B1C83E-9DDD-4924-8990-3DEE1197ECDB.xcactivitylog b/Task1/build/macos/Logs/Build/61B1C83E-9DDD-4924-8990-3DEE1197ECDB.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/61B3EF00-7D7B-47DC-9DB2-F0214434589B.xcactivitylog b/Task1/build/macos/Logs/Build/61B3EF00-7D7B-47DC-9DB2-F0214434589B.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/624B826A-4A40-4F7C-97DD-06537F7F4980.xcactivitylog b/Task1/build/macos/Logs/Build/624B826A-4A40-4F7C-97DD-06537F7F4980.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/673C6E43-D2F4-44F2-A3AB-8D83EE96BFFA.xcactivitylog b/Task1/build/macos/Logs/Build/673C6E43-D2F4-44F2-A3AB-8D83EE96BFFA.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/6B040DD2-03BE-4E32-9A36-F83E91995E85.xcactivitylog b/Task1/build/macos/Logs/Build/6B040DD2-03BE-4E32-9A36-F83E91995E85.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/6C8D39C7-64FB-4359-A2DF-70573F6391A9.xcactivitylog b/Task1/build/macos/Logs/Build/6C8D39C7-64FB-4359-A2DF-70573F6391A9.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/74D7A116-0963-4B60-93BC-0F237026F16C.xcactivitylog b/Task1/build/macos/Logs/Build/74D7A116-0963-4B60-93BC-0F237026F16C.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/7D452406-509B-454E-9D18-BC17551EB5A5.xcactivitylog b/Task1/build/macos/Logs/Build/7D452406-509B-454E-9D18-BC17551EB5A5.xcactivitylog new file mode 100644 index 0000000..b479543 Binary files /dev/null and b/Task1/build/macos/Logs/Build/7D452406-509B-454E-9D18-BC17551EB5A5.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/7DD4177C-EEAF-4260-AF61-88842A96DD50.xcactivitylog b/Task1/build/macos/Logs/Build/7DD4177C-EEAF-4260-AF61-88842A96DD50.xcactivitylog new file mode 100644 index 0000000..d440066 Binary files /dev/null and b/Task1/build/macos/Logs/Build/7DD4177C-EEAF-4260-AF61-88842A96DD50.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/84762A55-9C80-4E51-8B50-9CF2111125C3.xcactivitylog b/Task1/build/macos/Logs/Build/84762A55-9C80-4E51-8B50-9CF2111125C3.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/88B35104-50AE-4991-A70E-0BEF5041151B.xcactivitylog b/Task1/build/macos/Logs/Build/88B35104-50AE-4991-A70E-0BEF5041151B.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/8A8D4FAC-4E5E-42AC-85FA-750183B1E0D9.xcactivitylog b/Task1/build/macos/Logs/Build/8A8D4FAC-4E5E-42AC-85FA-750183B1E0D9.xcactivitylog new file mode 100644 index 0000000..12c55bd Binary files /dev/null and b/Task1/build/macos/Logs/Build/8A8D4FAC-4E5E-42AC-85FA-750183B1E0D9.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/8B6D6587-C261-4EE9-B15E-6032331A6890.xcactivitylog b/Task1/build/macos/Logs/Build/8B6D6587-C261-4EE9-B15E-6032331A6890.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/9962954F-30E1-43FB-8B87-FD59906776AB.xcactivitylog b/Task1/build/macos/Logs/Build/9962954F-30E1-43FB-8B87-FD59906776AB.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/A1C2EBC7-4FA4-49D4-855A-64EE45EE97FE.xcactivitylog b/Task1/build/macos/Logs/Build/A1C2EBC7-4FA4-49D4-855A-64EE45EE97FE.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/ABE01262-F947-46D5-9977-E9E5BA6929E4.xcactivitylog b/Task1/build/macos/Logs/Build/ABE01262-F947-46D5-9977-E9E5BA6929E4.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/ACDA4DDE-EEDD-43C5-9601-EC734842B804.xcactivitylog b/Task1/build/macos/Logs/Build/ACDA4DDE-EEDD-43C5-9601-EC734842B804.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/ACF6755D-3801-4FE4-B587-C881640E3DBF.xcactivitylog b/Task1/build/macos/Logs/Build/ACF6755D-3801-4FE4-B587-C881640E3DBF.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/BB65F758-79C8-4C14-AEDF-F25919D5DD13.xcactivitylog b/Task1/build/macos/Logs/Build/BB65F758-79C8-4C14-AEDF-F25919D5DD13.xcactivitylog new file mode 100644 index 0000000..a2fb5b2 Binary files /dev/null and b/Task1/build/macos/Logs/Build/BB65F758-79C8-4C14-AEDF-F25919D5DD13.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/C1A15249-49F7-48D3-801F-0D265549C477.xcactivitylog b/Task1/build/macos/Logs/Build/C1A15249-49F7-48D3-801F-0D265549C477.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/CB4E4655-2A3D-4546-925E-47DDBA1D66BC.xcactivitylog b/Task1/build/macos/Logs/Build/CB4E4655-2A3D-4546-925E-47DDBA1D66BC.xcactivitylog new file mode 100644 index 0000000..a4c0a58 Binary files /dev/null and b/Task1/build/macos/Logs/Build/CB4E4655-2A3D-4546-925E-47DDBA1D66BC.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/CBF4A35A-A25E-46CF-B243-0264257FE177.xcactivitylog b/Task1/build/macos/Logs/Build/CBF4A35A-A25E-46CF-B243-0264257FE177.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/CCDBA1F4-51BF-4236-ADD8-0E9EBB81CD06.xcactivitylog b/Task1/build/macos/Logs/Build/CCDBA1F4-51BF-4236-ADD8-0E9EBB81CD06.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/E565B066-1842-48B3-ABD9-EC67AC2F4970.xcactivitylog b/Task1/build/macos/Logs/Build/E565B066-1842-48B3-ABD9-EC67AC2F4970.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/F23ADAB4-5621-441D-BE8E-726FDF74F76B.xcactivitylog b/Task1/build/macos/Logs/Build/F23ADAB4-5621-441D-BE8E-726FDF74F76B.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/F3431EDC-6332-4A0F-93C7-4C6FF4319245.xcactivitylog b/Task1/build/macos/Logs/Build/F3431EDC-6332-4A0F-93C7-4C6FF4319245.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/F7AEF955-D76F-4737-8054-DE0E53ACCE4A.xcactivitylog b/Task1/build/macos/Logs/Build/F7AEF955-D76F-4737-8054-DE0E53ACCE4A.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/FB381670-4333-4A90-BC42-A74A50C39D43.xcactivitylog b/Task1/build/macos/Logs/Build/FB381670-4333-4A90-BC42-A74A50C39D43.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/FBF184BB-E400-4072-B857-28CD34CCBCE9.xcactivitylog b/Task1/build/macos/Logs/Build/FBF184BB-E400-4072-B857-28CD34CCBCE9.xcactivitylog new file mode 100644 index 0000000..23213b0 Binary files /dev/null and b/Task1/build/macos/Logs/Build/FBF184BB-E400-4072-B857-28CD34CCBCE9.xcactivitylog differ diff --git a/Task1/build/macos/Logs/Build/FDA8C7B9-465F-4CF2-9D83-53F1BC853669.xcactivitylog b/Task1/build/macos/Logs/Build/FDA8C7B9-465F-4CF2-9D83-53F1BC853669.xcactivitylog new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/Logs/Build/LogStoreManifest.plist b/Task1/build/macos/Logs/Build/LogStoreManifest.plist new file mode 100644 index 0000000..a4a72d1 --- /dev/null +++ b/Task1/build/macos/Logs/Build/LogStoreManifest.plist @@ -0,0 +1,45 @@ + + + + + logFormatVersion + 10 + logs + + 57761E64-4247-447D-80BC-1CFE5C715D8F + + className + IDECommandLineBuildLog + documentTypeString + <nil> + domainType + Xcode.IDEActivityLogDomainType.BuildLog + fileName + 57761E64-4247-447D-80BC-1CFE5C715D8F.xcactivitylog + hasPrimaryLog + + primaryObservable + + highLevelStatus + E + + schemeIdentifier-containerName + Runner project + schemeIdentifier-schemeName + Runner + schemeIdentifier-sharedScheme + 1 + signature + Building workspace Runner with scheme Runner and configuration Debug + timeStartedRecording + 714763543.24134398 + timeStoppedRecording + 714763543.57268298 + title + Building workspace Runner with scheme Runner and configuration Debug + uniqueIdentifier + 57761E64-4247-447D-80BC-1CFE5C715D8F + + + + diff --git a/Task1/build/macos/Logs/Launch/LogStoreManifest.plist b/Task1/build/macos/Logs/Launch/LogStoreManifest.plist new file mode 100644 index 0000000..c8c83d1 --- /dev/null +++ b/Task1/build/macos/Logs/Launch/LogStoreManifest.plist @@ -0,0 +1,10 @@ + + + + + logFormatVersion + 10 + logs + + + diff --git a/Task1/build/macos/Logs/Localization/LogStoreManifest.plist b/Task1/build/macos/Logs/Localization/LogStoreManifest.plist new file mode 100644 index 0000000..c8c83d1 --- /dev/null +++ b/Task1/build/macos/Logs/Localization/LogStoreManifest.plist @@ -0,0 +1,10 @@ + + + + + logFormatVersion + 10 + logs + + + diff --git a/Task1/build/macos/Logs/Package/LogStoreManifest.plist b/Task1/build/macos/Logs/Package/LogStoreManifest.plist new file mode 100644 index 0000000..c8c83d1 --- /dev/null +++ b/Task1/build/macos/Logs/Package/LogStoreManifest.plist @@ -0,0 +1,10 @@ + + + + + logFormatVersion + 10 + logs + + + diff --git a/Task1/build/macos/Logs/Test/LogStoreManifest.plist b/Task1/build/macos/Logs/Test/LogStoreManifest.plist new file mode 100644 index 0000000..c8c83d1 --- /dev/null +++ b/Task1/build/macos/Logs/Test/LogStoreManifest.plist @@ -0,0 +1,10 @@ + + + + + logFormatVersion + 10 + logs + + + diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Accessibility-1C39AWPZ3ZCHS.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Accessibility-1C39AWPZ3ZCHS.pcm new file mode 100644 index 0000000..750d498 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Accessibility-1C39AWPZ3ZCHS.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/AppKit-2E52K8BLPXB98.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/AppKit-2E52K8BLPXB98.pcm new file mode 100644 index 0000000..d96351c Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/AppKit-2E52K8BLPXB98.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ApplicationServices-318ED6HVOOOWK.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ApplicationServices-318ED6HVOOOWK.pcm new file mode 100644 index 0000000..6e5e199 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ApplicationServices-318ED6HVOOOWK.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CFNetwork-2QM24TU1OUNU.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CFNetwork-2QM24TU1OUNU.pcm new file mode 100644 index 0000000..28e7764 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CFNetwork-2QM24TU1OUNU.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CUPS-JHNNNXXF1OP5.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CUPS-JHNNNXXF1OP5.pcm new file mode 100644 index 0000000..5728b82 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CUPS-JHNNNXXF1OP5.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Cocoa-G0K7USNOMP8I.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Cocoa-G0K7USNOMP8I.pcm new file mode 100644 index 0000000..907ed66 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Cocoa-G0K7USNOMP8I.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ColorSync-FUKP4SF5WDN.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ColorSync-FUKP4SF5WDN.pcm new file mode 100644 index 0000000..4ea827d Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ColorSync-FUKP4SF5WDN.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudio-1AA2PF9D9ZR1E.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudio-1AA2PF9D9ZR1E.pcm new file mode 100644 index 0000000..d2cc3d1 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudio-1AA2PF9D9ZR1E.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudioTypes-FBCZNCTK6GB0.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudioTypes-FBCZNCTK6GB0.pcm new file mode 100644 index 0000000..043f692 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreAudioTypes-FBCZNCTK6GB0.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreData-3DC7JJOJKG7MT.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreData-3DC7JJOJKG7MT.pcm new file mode 100644 index 0000000..68edf8a Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreData-3DC7JJOJKG7MT.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreFoundation-XRVNUAOWDGXL.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreFoundation-XRVNUAOWDGXL.pcm new file mode 100644 index 0000000..67a2ad3 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreFoundation-XRVNUAOWDGXL.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreGraphics-3T9VBW5GP5OQV.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreGraphics-3T9VBW5GP5OQV.pcm new file mode 100644 index 0000000..228a9a9 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreGraphics-3T9VBW5GP5OQV.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreImage-2CUH609RP6X7P.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreImage-2CUH609RP6X7P.pcm new file mode 100644 index 0000000..185bc8a Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreImage-2CUH609RP6X7P.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreMedia-37PVQTJTN9KQQ.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreMedia-37PVQTJTN9KQQ.pcm new file mode 100644 index 0000000..2b4a972 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreMedia-37PVQTJTN9KQQ.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreServices-3FK4JMT7K1IRE.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreServices-3FK4JMT7K1IRE.pcm new file mode 100644 index 0000000..b8f34a3 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreServices-3FK4JMT7K1IRE.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreText-2K5RVIO1QZLNS.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreText-2K5RVIO1QZLNS.pcm new file mode 100644 index 0000000..464818c Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreText-2K5RVIO1QZLNS.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreVideo-1EDP4WMD3WVWL.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreVideo-1EDP4WMD3WVWL.pcm new file mode 100644 index 0000000..498f52a Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/CoreVideo-1EDP4WMD3WVWL.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Darwin-14TRD15FCACV2.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Darwin-14TRD15FCACV2.pcm new file mode 100644 index 0000000..d1ed0c7 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Darwin-14TRD15FCACV2.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/DiskArbitration-QK5Z60WO3GCK.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/DiskArbitration-QK5Z60WO3GCK.pcm new file mode 100644 index 0000000..349099d Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/DiskArbitration-QK5Z60WO3GCK.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Dispatch-Y4ZZ1HR72FEI.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Dispatch-Y4ZZ1HR72FEI.pcm new file mode 100644 index 0000000..9b63652 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Dispatch-Y4ZZ1HR72FEI.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/FlutterMacOS-3C5HLHMK56UL4.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/FlutterMacOS-3C5HLHMK56UL4.pcm new file mode 100644 index 0000000..b4ef859 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/FlutterMacOS-3C5HLHMK56UL4.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Foundation-2M8Y3D1H909LB.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Foundation-2M8Y3D1H909LB.pcm new file mode 100644 index 0000000..69c94fe Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Foundation-2M8Y3D1H909LB.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOKit-1YJU4L4Q03Y5.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOKit-1YJU4L4Q03Y5.pcm new file mode 100644 index 0000000..4e17f5d Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOKit-1YJU4L4Q03Y5.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOSurface-235Q4H9R8GAYU.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOSurface-235Q4H9R8GAYU.pcm new file mode 100644 index 0000000..f519158 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/IOSurface-235Q4H9R8GAYU.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ImageIO-27XM1J7FM4Q7H.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ImageIO-27XM1J7FM4Q7H.pcm new file mode 100644 index 0000000..493ba0a Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ImageIO-27XM1J7FM4Q7H.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/MachO-YWFNV22Z5VUT.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/MachO-YWFNV22Z5VUT.pcm new file mode 100644 index 0000000..fac64cc Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/MachO-YWFNV22Z5VUT.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Metal-1B038G1N9AC0V.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Metal-1B038G1N9AC0V.pcm new file mode 100644 index 0000000..1e76154 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Metal-1B038G1N9AC0V.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ObjectiveC-2C4A7FIGEFV6M.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ObjectiveC-2C4A7FIGEFV6M.pcm new file mode 100644 index 0000000..e5bccb3 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ObjectiveC-2C4A7FIGEFV6M.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/OpenGL-2YY2N6L4YVU9Y.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/OpenGL-2YY2N6L4YVU9Y.pcm new file mode 100644 index 0000000..5b8dd3e Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/OpenGL-2YY2N6L4YVU9Y.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/QuartzCore-KO6TAZ9XHBR8.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/QuartzCore-KO6TAZ9XHBR8.pcm new file mode 100644 index 0000000..2ce478b Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/QuartzCore-KO6TAZ9XHBR8.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Security-3MRSRYU7H638B.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Security-3MRSRYU7H638B.pcm new file mode 100644 index 0000000..4bd90ed Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/Security-3MRSRYU7H638B.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftOverlayShims-39ZO3A1THQ3HL.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftOverlayShims-39ZO3A1THQ3HL.pcm new file mode 100644 index 0000000..75348ff Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftOverlayShims-39ZO3A1THQ3HL.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftShims-39ZO3A1THQ3HL.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftShims-39ZO3A1THQ3HL.pcm new file mode 100644 index 0000000..036175c Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/SwiftShims-39ZO3A1THQ3HL.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/XPC-1O6EQOTZ7QBYA.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/XPC-1O6EQOTZ7QBYA.pcm new file mode 100644 index 0000000..edd3689 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/XPC-1O6EQOTZ7QBYA.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/_Builtin_stddef_max_align_t-23F22BLV37QFM.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/_Builtin_stddef_max_align_t-23F22BLV37QFM.pcm new file mode 100644 index 0000000..23ef636 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/_Builtin_stddef_max_align_t-23F22BLV37QFM.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/launch-14TRD15FCACV2.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/launch-14TRD15FCACV2.pcm new file mode 100644 index 0000000..56a0c1c Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/launch-14TRD15FCACV2.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libDER-2YDAHEQ2C7FF0.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libDER-2YDAHEQ2C7FF0.pcm new file mode 100644 index 0000000..8d402f2 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libDER-2YDAHEQ2C7FF0.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libkern-14TRD15FCACV2.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libkern-14TRD15FCACV2.pcm new file mode 100644 index 0000000..8bb07bc Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/libkern-14TRD15FCACV2.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_object-14TRD15FCACV2.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_object-14TRD15FCACV2.pcm new file mode 100644 index 0000000..398bb50 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_object-14TRD15FCACV2.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_workgroup-14TRD15FCACV2.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_workgroup-14TRD15FCACV2.pcm new file mode 100644 index 0000000..f66ee9a Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/os_workgroup-14TRD15FCACV2.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ptrauth-23F22BLV37QFM.pcm b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ptrauth-23F22BLV37QFM.pcm new file mode 100644 index 0000000..d055318 Binary files /dev/null and b/Task1/build/macos/ModuleCache.noindex/1ZUH6Y8O0C7LI/ptrauth-23F22BLV37QFM.pcm differ diff --git a/Task1/build/macos/ModuleCache.noindex/Accessibility-8JGMMD9MGUJI.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Accessibility-8JGMMD9MGUJI.swiftmodule new file mode 100644 index 0000000..a58cb3c --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Accessibility-8JGMMD9MGUJI.swiftmodule @@ -0,0 +1,80 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769443000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 95208 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1677963262000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 11705 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/AppKit-2TUHFQSEG96DA.swiftmodule b/Task1/build/macos/ModuleCache.noindex/AppKit-2TUHFQSEG96DA.swiftmodule new file mode 100644 index 0000000..fa77542 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/AppKit-2TUHFQSEG96DA.swiftmodule @@ -0,0 +1,128 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769536000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 348608 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1677963262000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 11705 + sdk_relative: true + - mtime: 1677965335000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1678340740000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1677951594000000000 + path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes' + size: 7721 + sdk_relative: true + - mtime: 1678230709000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 74343 + sdk_relative: true + - mtime: 1677975564000000000 + path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes' + size: 36607 + sdk_relative: true + - mtime: 1677951616000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7428 + sdk_relative: true + - mtime: 1678341117000000000 + path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes' + size: 383169 + sdk_relative: true + - mtime: 1677963218000000000 + path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 40232 + sdk_relative: true + - mtime: 1678254708000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 23771 + sdk_relative: true + - mtime: 1677963530000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1613 + sdk_relative: true + - mtime: 1677963525000000000 + path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 567 + sdk_relative: true + - mtime: 1677967238000000000 + path: 'usr/lib/swift/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 55813 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Combine-CMJ4CS6VNP35.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Combine-CMJ4CS6VNP35.swiftmodule new file mode 100644 index 0000000..6ea3f8f --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Combine-CMJ4CS6VNP35.swiftmodule @@ -0,0 +1,32 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769385000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 441284 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreAudio-20YK61F5U24WX.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreAudio-20YK61F5U24WX.swiftmodule new file mode 100644 index 0000000..7f9a1db --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreAudio-20YK61F5U24WX.swiftmodule @@ -0,0 +1,56 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769400000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreAudio.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 47388 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677965450000000000 + path: 'System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes' + size: 1519 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961639000000000 + path: 'usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 9125 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreData-3FOQU4T97SOVD.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreData-3FOQU4T97SOVD.swiftmodule new file mode 100644 index 0000000..8174790 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreData-3FOQU4T97SOVD.swiftmodule @@ -0,0 +1,76 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769444000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 106728 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677951594000000000 + path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes' + size: 7721 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1677963218000000000 + path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 40232 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreFoundation-2NZ3OE8MWBGQQ.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreFoundation-2NZ3OE8MWBGQQ.swiftmodule new file mode 100644 index 0000000..272f4c6 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreFoundation-2NZ3OE8MWBGQQ.swiftmodule @@ -0,0 +1,48 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769399000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 150212 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreGraphics-1V1W3KT8WXJDD.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreGraphics-1V1W3KT8WXJDD.swiftmodule new file mode 100644 index 0000000..8bff14c --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreGraphics-1V1W3KT8WXJDD.swiftmodule @@ -0,0 +1,60 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769403000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 164740 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreImage-1YTI8UBS34DP4.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreImage-1YTI8UBS34DP4.swiftmodule new file mode 100644 index 0000000..745f779 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreImage-1YTI8UBS34DP4.swiftmodule @@ -0,0 +1,100 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769513000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 16676 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677965335000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1678340740000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1678230709000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 74343 + sdk_relative: true + - mtime: 1677975564000000000 + path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes' + size: 36607 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1678254708000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 23771 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true + - mtime: 1677963525000000000 + path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 567 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/CoreMedia-3IN2HM1FB8KIX.swiftmodule b/Task1/build/macos/ModuleCache.noindex/CoreMedia-3IN2HM1FB8KIX.swiftmodule new file mode 100644 index 0000000..0f450ca --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/CoreMedia-3IN2HM1FB8KIX.swiftmodule @@ -0,0 +1,108 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769514000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/CoreMedia.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 325336 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677965450000000000 + path: 'System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes' + size: 1519 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961639000000000 + path: 'usr/lib/swift/CoreAudio.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 9125 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677965335000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1678340740000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1678230709000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 74343 + sdk_relative: true + - mtime: 1678335876000000000 + path: 'System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes' + size: 65558 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1678254708000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 23771 + sdk_relative: true + - mtime: 1678340321000000000 + path: 'usr/lib/swift/CoreMedia.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 114731 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Darwin-3V8YTEMZUXZGA.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Darwin-3V8YTEMZUXZGA.swiftmodule new file mode 100644 index 0000000..8e67317 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Darwin-3V8YTEMZUXZGA.swiftmodule @@ -0,0 +1,20 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769382000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 137920 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Dispatch-2VYD3P2ETTK9R.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Dispatch-2VYD3P2ETTK9R.swiftmodule new file mode 100644 index 0000000..d60ea00 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Dispatch-2VYD3P2ETTK9R.swiftmodule @@ -0,0 +1,44 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769396000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 164492 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Foundation-P66EROFDKLG9.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Foundation-P66EROFDKLG9.swiftmodule new file mode 100644 index 0000000..642057b --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Foundation-P66EROFDKLG9.swiftmodule @@ -0,0 +1,68 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769432000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 2801180 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/IOKit-MNCYT5PV0JWB.swiftmodule b/Task1/build/macos/ModuleCache.noindex/IOKit-MNCYT5PV0JWB.swiftmodule new file mode 100644 index 0000000..e24a73e --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/IOKit-MNCYT5PV0JWB.swiftmodule @@ -0,0 +1,52 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769400000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 25532 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Metal-APNJLNQVGXA7.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Metal-APNJLNQVGXA7.swiftmodule new file mode 100644 index 0000000..2ddad9d --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Metal-APNJLNQVGXA7.swiftmodule @@ -0,0 +1,76 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769444000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Metal.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 95268 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1678230709000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 74343 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1678254708000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 23771 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/ObjectiveC-1JD39SC764RB2.swiftmodule b/Task1/build/macos/ModuleCache.noindex/ObjectiveC-1JD39SC764RB2.swiftmodule new file mode 100644 index 0000000..20d7f1b --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/ObjectiveC-1JD39SC764RB2.swiftmodule @@ -0,0 +1,36 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769384000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 42268 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/QuartzCore-1X7NJLHNH5BWE.swiftmodule b/Task1/build/macos/ModuleCache.noindex/QuartzCore-1X7NJLHNH5BWE.swiftmodule new file mode 100644 index 0000000..8fc778a --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/QuartzCore-1X7NJLHNH5BWE.swiftmodule @@ -0,0 +1,100 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769512000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 23956 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961546000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22183 + sdk_relative: true + - mtime: 1678343366000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1677975779000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 80986 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true + - mtime: 1677961723000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3480 + sdk_relative: true + - mtime: 1677965194000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 750275 + sdk_relative: true + - mtime: 1677951460000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 51513 + sdk_relative: true + - mtime: 1678230709000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 74343 + sdk_relative: true + - mtime: 1677965335000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1678340740000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1677951616000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7428 + sdk_relative: true + - mtime: 1678254708000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 23771 + sdk_relative: true + - mtime: 1677961840000000000 + path: 'usr/lib/swift/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 42998 + sdk_relative: true + - mtime: 1677963530000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1613 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/Session.modulevalidation b/Task1/build/macos/ModuleCache.noindex/Session.modulevalidation new file mode 100644 index 0000000..db08f91 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Session.modulevalidation @@ -0,0 +1 @@ +1692960607.7651892: Module build session file for module cache at Path(str: "/Users/jayvashishtha/Desktop/task_1/build/macos/ModuleCache.noindex") diff --git a/Task1/build/macos/ModuleCache.noindex/Swift-17WP9Q4L7W4G7.swiftmodule b/Task1/build/macos/ModuleCache.noindex/Swift-17WP9Q4L7W4G7.swiftmodule new file mode 100644 index 0000000..41c2d8f --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/Swift-17WP9Q4L7W4G7.swiftmodule @@ -0,0 +1,12 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769370000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 12105204 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/SwiftOnoneSupport-DCIM7EVCG71M.swiftmodule b/Task1/build/macos/ModuleCache.noindex/SwiftOnoneSupport-DCIM7EVCG71M.swiftmodule new file mode 100644 index 0000000..64fc18f --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/SwiftOnoneSupport-DCIM7EVCG71M.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769378000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 14624 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 585 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/XPC-2TGAS7OD2SV80.swiftmodule b/Task1/build/macos/ModuleCache.noindex/XPC-2TGAS7OD2SV80.swiftmodule new file mode 100644 index 0000000..6809233 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/XPC-2TGAS7OD2SV80.swiftmodule @@ -0,0 +1,48 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769398000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 20588 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677945963000000000 + path: 'usr/include/Darwin.apinotes' + size: 1133 + sdk_relative: true + - mtime: 1677974079000000000 + path: 'usr/include/objc/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1677960639000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 25396 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true + - mtime: 1677961295000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 169323 + sdk_relative: true + - mtime: 1677961256000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4634 + sdk_relative: true + - mtime: 1677961400000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 52396 + sdk_relative: true + - mtime: 1677961552000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1931 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/_Concurrency-3N5JIUDKRM25O.swiftmodule b/Task1/build/macos/ModuleCache.noindex/_Concurrency-3N5JIUDKRM25O.swiftmodule new file mode 100644 index 0000000..ff5285d --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/_Concurrency-3N5JIUDKRM25O.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769379000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 295700 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677957492000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 122761 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/_StringProcessing-17QNEGMHVMLOL.swiftmodule b/Task1/build/macos/ModuleCache.noindex/_StringProcessing-17QNEGMHVMLOL.swiftmodule new file mode 100644 index 0000000..45b0194 --- /dev/null +++ b/Task1/build/macos/ModuleCache.noindex/_StringProcessing-17QNEGMHVMLOL.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1683769379000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/13.3/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 69316 + - mtime: 1677957489000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2053440 + sdk_relative: true + - mtime: 1677960777000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 21728 + sdk_relative: true +version: 1 +... diff --git a/Task1/build/macos/ModuleCache.noindex/modules.timestamp b/Task1/build/macos/ModuleCache.noindex/modules.timestamp new file mode 100644 index 0000000..e69de29 diff --git a/Task1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache b/Task1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache new file mode 100644 index 0000000..4542542 Binary files /dev/null and b/Task1/build/macos/SDKStatCaches.noindex/macosx13.3-22E245-.sdkstatcache differ diff --git a/Task1/build/macos/info.plist b/Task1/build/macos/info.plist new file mode 100644 index 0000000..1b94a16 --- /dev/null +++ b/Task1/build/macos/info.plist @@ -0,0 +1,10 @@ + + + + + LastAccessedDate + 2023-08-27T03:55:55Z + WorkspacePath + /Users/jayvashishtha/Desktop/Flutter_project/task_1/macos/Runner.xcworkspace + + diff --git a/Task1/ios/.DS_Store b/Task1/ios/.DS_Store new file mode 100644 index 0000000..fb854f2 Binary files /dev/null and b/Task1/ios/.DS_Store differ diff --git a/Task1/ios/.gitignore b/Task1/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/Task1/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/Task1/ios/Flutter/AppFrameworkInfo.plist b/Task1/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/Task1/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/Task1/ios/Flutter/Debug.xcconfig b/Task1/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/Task1/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/Task1/ios/Flutter/Release.xcconfig b/Task1/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/Task1/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/Task1/ios/Runner.xcodeproj/project.pbxproj b/Task1/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..2af2273 --- /dev/null +++ b/Task1/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,614 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 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 */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807E294A63A400263BE5 /* Frameworks */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + 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 = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1430; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist 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; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + 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"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + 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 = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = 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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + 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 = 11.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + 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 = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + 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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/Task1/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Task1/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Task1/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/Task1/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/Task1/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/Task1/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..87131a0 --- /dev/null +++ b/Task1/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/ios/Runner.xcworkspace/contents.xcworkspacedata b/Task1/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/Task1/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Task1/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Task1/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Task1/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Task1/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Task1/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/Task1/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/Task1/ios/Runner/AppDelegate.swift b/Task1/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/Task1/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/Task1/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/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/Task1/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/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/Task1/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/Task1/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/Task1/ios/Runner/Base.lproj/LaunchScreen.storyboard b/Task1/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/Task1/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/ios/Runner/Base.lproj/Main.storyboard b/Task1/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/Task1/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/ios/Runner/Info.plist b/Task1/ios/Runner/Info.plist new file mode 100644 index 0000000..58f2668 --- /dev/null +++ b/Task1/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Task 1 + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + task_1 + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + diff --git a/Task1/ios/Runner/Runner-Bridging-Header.h b/Task1/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/Task1/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/Task1/ios/RunnerTests/RunnerTests.swift b/Task1/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/Task1/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/Task1/lib/Main_Screen.dart b/Task1/lib/Main_Screen.dart new file mode 100644 index 0000000..9cf4186 --- /dev/null +++ b/Task1/lib/Main_Screen.dart @@ -0,0 +1,174 @@ +// ignore: file_names +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:tourism_ui/vertical_widgets.dart'; +import 'package:tourism_ui/horizontal_widgets.dart'; +import 'package:tourism_ui/places_page.dart'; +import 'package:tourism_ui/touriest_place.dart'; + +class HomeScreen extends StatefulWidget { + const HomeScreen({super.key}); + + @override + State createState() => _HomeScreenState(); +} + +class _HomeScreenState extends State { + Map place = places[0]; + int _index = 0; + @override + Widget build(BuildContext context) { + return SafeArea( + child: Scaffold( + bottomNavigationBar: CupertinoTabBar( + currentIndex: _index, + onTap: (value) { + setState(() { + _index = value; + }); + }, + items: const [ + BottomNavigationBarItem( + icon: Icon(Icons.home), + ), + BottomNavigationBarItem( + icon: Icon( + Icons.favorite, + )), + BottomNavigationBarItem( + icon: Icon( + Icons.shopping_cart, + ), + ), + BottomNavigationBarItem( + icon: Icon( + Icons.person, + ), + ), + ]), + body: Container( + height: MediaQuery.of(context).size.height, + child: Padding( + padding: + const EdgeInsets.symmetric(horizontal: 20.0, vertical: 20.0), + child: ListView(children: [ + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Container( + width: 50, + height: 50, + decoration: BoxDecoration( + color: Color.fromARGB(255, 244, 241, 241), + borderRadius: BorderRadius.circular(12)), + child: IconButton( + onPressed: () {}, + icon: Image.asset( + color: const Color.fromARGB(255, 97, 95, 95), + 'assets/images/menu_icon.png', + ))), + Column( + mainAxisAlignment: MainAxisAlignment.spaceAround, + children: [ + Text( + 'Current Location', + style: TextStyle(color: Colors.grey.shade800), + ), + ElevatedButton.icon( + style: const ButtonStyle( + elevation: MaterialStatePropertyAll(0), + iconColor: MaterialStatePropertyAll(Colors.blue)), + onPressed: () {}, + icon: const Icon(Icons.location_on), + label: const Text( + 'Agra,India', + style: TextStyle( + color: Color.fromARGB(255, 0, 0, 0), + fontWeight: FontWeight.bold), + )) + ], + ), + const CircleAvatar( + backgroundImage: AssetImage('assets/images/cartoon.jpg'), + ) + ], + ), + const SizedBox( + height: 20, + ), + const Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Catagory', + style: TextStyle(fontWeight: FontWeight.bold, fontSize: 25), + ), + Expanded( + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Text( + 'View all', + style: TextStyle( + color: Colors.blue, + fontWeight: FontWeight.bold, + fontSize: 15), + ) + ], + )), + Icon( + Icons.arrow_right_alt_rounded, + color: Colors.blue, + ) + ], + ), + const SizedBox( + height: 20, + ), + const TourPlaces(), + const SizedBox( + height: 20, + ), + const HorizontalCard(), + const SizedBox( + height: 30, + ), + const Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + 'Popular Destination', + style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22), + ), + Expanded( + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Text( + 'View all', + style: TextStyle( + color: Colors.blue, + fontWeight: FontWeight.bold, + fontSize: 15), + ) + ], + )), + Icon( + Icons.arrow_right_alt_rounded, + color: Color.fromARGB(255, 22, 22, 22), + ) + ], + ), + const SizedBox( + height: 30, + ), + const VerticalCard(), + ]), + ), + ), + ), + ); + } +} diff --git a/Task1/lib/detail_page.dart b/Task1/lib/detail_page.dart new file mode 100644 index 0000000..bc8af32 --- /dev/null +++ b/Task1/lib/detail_page.dart @@ -0,0 +1,233 @@ +import 'package:flutter/material.dart'; +import 'package:tourism_ui/places_page.dart'; + +class DetailPage extends StatefulWidget { + final Map place; + final bool isHor; + const DetailPage({ + Key? key, + required this.place, + this.isHor = false, + }) : super(key: key); + + @override + State createState() => _DetailPageState(); +} + +class _DetailPageState extends State { + IconData icon = Icons.favorite_border; + bool active = false; + + @override + Widget build(BuildContext context) { + return Scaffold( + body: SafeArea( + child: ListView( + padding: const EdgeInsets.all(10), + children: [ + SizedBox( + height: 300, + width: double.maxFinite, + child: Stack( + // fit: StackFit.expand, + children: [ + Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(20), + image: DecorationImage( + image: AssetImage(widget.isHor + ? widget.place['horimg'] + : widget.place['img']), + fit: BoxFit.cover)), + ), + Positioned( + left: 10, + top: 10, + child: Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(15), + color: Colors.white), + child: IconButton( + onPressed: () { + Navigator.pop(context); + }, + icon: const Icon( + Icons.arrow_back, + color: Colors.black, + )), + ), + ), + Positioned( + right: 10, + top: 10, + child: Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(15), + color: Colors.white), + child: IconButton( + onPressed: () { + setState(() { + if (active) { + icon = Icons.favorite_rounded; + active = false; + } else { + icon = Icons.favorite_border; + active = true; + } + }); + }, + icon: Icon( + icon, + color: Colors.red, + )), + ), + ) + ], + ), + ), + Card( + surfaceTintColor: Colors.white, + elevation: 5, + child: Container( + padding: const EdgeInsets.only(left: 10, right: 10), + width: double.infinity, + height: 480, + decoration: + BoxDecoration(borderRadius: BorderRadius.circular(20)), + child: Column(children: [ + const SizedBox( + height: 20, + ), + ListTile( + title: Text( + widget.isHor + ? widget.place['horname'] + : widget.place['name'], + style: const TextStyle( + fontWeight: FontWeight.bold, fontSize: 18), + ), + subtitle: Row( + mainAxisAlignment: MainAxisAlignment.start, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + const Icon( + Icons.location_on, + color: Colors.blue, + size: 17, + weight: 10, + ), + Text( + widget.isHor + ? widget.place['horlocation'] + : widget.place['location'], + style: const TextStyle( + color: Colors.blue, fontWeight: FontWeight.bold), + ) + ], + ), + trailing: Text( + widget.place['price'], + style: const TextStyle( + fontWeight: FontWeight.bold, fontSize: 20), + ), + ), + const SizedBox( + height: 10, + ), + Padding( + padding: const EdgeInsets.only(left: 10, right: 10), + child: Text( + widget.place['details'], + style: const TextStyle( + fontSize: 16, + color: Colors.black54, + fontWeight: FontWeight.bold), + maxLines: 6, + overflow: TextOverflow.ellipsis, + ), + ), + const SizedBox( + height: 10, + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + const Text( + 'Preview', + style: + TextStyle(fontWeight: FontWeight.bold, fontSize: 22), + ), + const Expanded( + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Icon( + Icons.star, + color: Colors.yellow, + ) + ], + )), + Text( + widget.place['rating'], + style: const TextStyle( + color: Colors.black, + fontSize: 17, + fontWeight: FontWeight.w500), + ) + ], + ), + const SizedBox( + height: 10, + ), + SizedBox( + height: 110, + child: ListView.builder( + scrollDirection: Axis.horizontal, + itemCount: places.length, + itemBuilder: (context, index) { + Map plc = places[index]; + return Padding( + padding: const EdgeInsets.only( + left: 5, + right: 15, + ), + child: Container( + width: 100, + height: 100, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(10), + image: DecorationImage( + fit: BoxFit.cover, + image: AssetImage(plc['preimg']))), + ), + ); + }, + ), + ), + const SizedBox( + height: 20, + ), + SizedBox( + width: 300, + height: 35, + child: ElevatedButton( + style: ElevatedButton.styleFrom( + backgroundColor: Colors.blue, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(10))), + child: const Text( + 'Book Now', + style: TextStyle(fontSize: 20, color: Colors.white), + ), + onPressed: () {}, + ), + ), + ]), + ), + ) + ], + ), + )); + } +} diff --git a/Task1/lib/horizontal_widgets.dart b/Task1/lib/horizontal_widgets.dart new file mode 100644 index 0000000..8939962 --- /dev/null +++ b/Task1/lib/horizontal_widgets.dart @@ -0,0 +1,84 @@ +import 'package:flutter/material.dart'; +import 'package:tourism_ui/detail_page.dart'; +import 'package:tourism_ui/places_page.dart'; + +class HorizontalCard extends StatefulWidget { + const HorizontalCard({super.key}); + + @override + State createState() => _HorizontalCardState(); +} + +class _HorizontalCardState extends State { + @override + Widget build(BuildContext context) { + return Container( + height: 200, + child: ListView.builder( + scrollDirection: Axis.horizontal, + itemCount: places.length, + itemBuilder: (context, index) { + Map place = places[index]; + return Padding( + padding: EdgeInsets.symmetric(horizontal: 10), + child: GestureDetector( + onTap: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => DetailPage( + place: place, + isHor: true, + ))), + child: Stack( + children: [ + Container( + height: 200, + width: 250, + padding: const EdgeInsets.only( + top: 135, + ), + child: ListTile( + title: Text(place['horname'], + style: TextStyle( + color: Colors.white, + fontSize: 13, + fontWeight: FontWeight.bold)), + subtitle: Row( + mainAxisAlignment: MainAxisAlignment.start, + children: [ + Icon( + Icons.location_on, + size: 18.0, + color: Colors.white, + ), + Text( + place['horlocation'], + style: TextStyle( + fontSize: 13, + color: Colors.white, + fontWeight: FontWeight.bold), + ) + ], + ), + trailing: Text(place['horprice'], + style: TextStyle( + fontSize: 13, + color: Colors.white, + fontWeight: FontWeight.bold)), + ), + decoration: BoxDecoration( + image: DecorationImage( + fit: BoxFit.cover, + image: AssetImage(place['horimg'])), + color: Colors.amber, + borderRadius: BorderRadius.circular(15.0)), + ), + ], + ), + ), + ); + }, + ), + ); + } +} diff --git a/Task1/lib/main.dart b/Task1/lib/main.dart new file mode 100644 index 0000000..d5ca2f8 --- /dev/null +++ b/Task1/lib/main.dart @@ -0,0 +1,24 @@ +import 'package:flutter/material.dart'; + +import 'Main_Screen.dart'; + +void main() { + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({super.key}); + @override + Widget build(BuildContext context) { + return MaterialApp( + debugShowCheckedModeBanner: false, + title: 'Flutter Demo', + theme: ThemeData( + colorScheme: ColorScheme.fromSeed( + seedColor: const Color.fromARGB(255, 10, 245, 49)), + useMaterial3: true, + ), + home: const HomeScreen(), + ); + } +} diff --git a/Task1/lib/places_page.dart b/Task1/lib/places_page.dart new file mode 100644 index 0000000..f500020 --- /dev/null +++ b/Task1/lib/places_page.dart @@ -0,0 +1,109 @@ +List places = [ + { + "name": "TAJ MAHAL", + "horname": 'Shimla', + "horlocation": 'Shimla City', + "horimg": "assets/images/shimla.jpeg", + "img": "assets/images/tajmahal.jpg", + "preimg": "assets/images/Hill_station.jpeg", + "rating": "4.9", + "place": "Mountains", + "icon": "assets/images/Mountain_icon.png", + "disc": + "Jay abjhhdhs dhfuh akoifi skksofw haihywdw jay avrhda gdhiajdjdhfd ", + "price": r"$10/Person", + "horprice": "\$150\n/Person", + "location": "Agra, India", + "details": "It is a historical Place in the neighbourhood of Delhi, India." + "That historically served as the main residence of the Mughal emperors." + "Emperor Shah Jahan commissioned construction of the Red Fort on 12th May 1638." + "when he decided to shift his capital from Agra to Delhi. Originally red and white." + "Its design is credited to architect Ustad Ahmad Lahori, who also constructed the Taj Mahal." + "The fort represents the peak in Mughal architecture under Shah Jahan and combines Persianate palace architecture with Indian traditions.", + }, + { + "name": "Red Fort", + "horname": 'Historical places Tour', + "horlocation": 'Delhi, India', + "horimg": "assets/images/historical_places.jpeg", + "img": "assets/images/Red_fort.jpg", + "preimg": "assets/images/Red_fort.jpg", + "rating": "4.7", + "place": "Waterfall", + "icon": "assets/images/waterfall.png", + "disc": "One of the oldest places of india. ", + "price": r"$20/Person", + "horprice": "\$80\n/Person", + "location": "Old Delhi, India", + "details": "The Red For or lal-Qila is a historic fort in Delhi neighbourhood of Delhi, India." + "That historically served as the main residence of the Mughal emperors." + "Emperor Shah Jahan commissioned construction of the Red Fort on 12th May 1638." + "when he decided to shift his capital from Agra to Delhi. Originally red and white." + "Its design is credited to architect Ustad Ahmad Lahori, who also constructed the Taj Mahal." + "The fort represents the peak in Mughal architecture under Shah Jahan and combines Persianate palace architecture with Indian traditions.", + }, + { + "name": "Lotus Temple", + "horname": 'Disney land', + "horlocation": 'Florida, USA', + "horimg": "assets/images/Disney_land.webp", + "img": "assets/images/lotus-temple.jpeg", + "preimg": "assets/images/newdelhi.jpg", + "rating": "3.2", + "place": "River", + "icon": "assets/images/river.png", + "disc": "Lotus Temple Is a Shape of Lotus.", + "price": r"$90/Person", + "horprice": "\$80\n/Person", + "location": "New Delhi, India", + "details": "The Lotus Temple, located in New Delhi, India, is a Baháʼí House of Worship that was dedicated in December 1986." + " Notable for its lotus-like shape, it has become a prominent attraction in the city." + " Like all Bahá’í Houses of Worship, the Lotus Temple is open to all, regardless of religion or any other qualification." + "The building is composed of 27 free-standing marble-clad arranged in clusters of three to form nine sides." + "With nine doors opening onto a central hall with a height of slightly over 34 meters[1] and a capacity of 1,300 people." + "[2] The Lotus Temple has won numerous architectural awards[3][4] and has been featured in many newspaper and magazine articles.[5]", + }, + { + "name": "Eiffel Tower", + "horname": 'Rinjani Mountain', + "horlocation": 'Lombok, Indonesia', + "horimg": "assets/images/KAGAGAHAN_RIJANI.jpg", + "img": "assets/images/Eiffel_tower.jpeg", + "preimg": "assets/images/temple.jpg", + "rating": "4.9", + "place": "Desert", + "icon": "assets/images/desert.png", + "disc": "Eiffel Tower ^Lombok Ind.", + "price": r"$100/Person", + "horprice": "\$65\n/Person", + "location": "Paris, France", + "details": "Locally nicknamed La dame de fer (French for Iron Lady), it was constructed from 1887 to 1889 as the centerpiece of the 1889 World's Fair." + "Although initially criticised by some of France leading artists and intellectuals for its design." + "it has since become a global cultural icon of France and one of the most recognisable structures in the world." + "The tower received 5,889,000 visitors in 2022, up by 197 per cent from 2021, when numbers dropped due to the COVID virus." + "The Eiffel Tower is the most visited monument with an entrance fee in the world:[5] 6.91 million people ascended it in 2015." + "It was designated a monument historique in 1964, and was named part of a UNESCO World Heritage Site (Paris, Banks of the Seine) in 1991.[6]", + }, + { + "name": "The Great wall Of China", + "horname": 'Las-vegas', + "horlocation": 'Nevada,USA', + "horimg": "assets/images/las_vegas.jpeg", + "img": "assets/images/china_wall.webp", + "preimg": "assets/images/las.jpeg", + "rating": "4.0", + "place": "Town", + "icon": "assets/images/city.png", + "disc": "China's powerfull wall 6000km long. ", + "price": r"$200/Person", + "horprice": "\$25\n/Person", + "location": "Hebei Province, China", + "details": "The city bills itself as the Entertainment Capital of the World, and is famous for its luxurious and extremely large casino-hotels." + "With over 2.9 million visitors as of 2019, Las Vegas is the sixth-most visited city in the U.S." + "After New York City, Miami, Los Angeles, Orlando, and San Francisco.[8] It is a top-three destination in the U.S. for business conventions" + "and a global leader in the hospitality industry, claiming more AAA Five Diamond hotels than any other city in the world." + "[9][10][11] Las Vegas annually ranks as one of the world's most visited tourist destinations.[12][13]" + "The city's tolerance for numerous forms of adult entertainment earned it the nickname " + "and has made Las Vegas a popular setting for literature, films, television programs, and music videos.", + }, +]; diff --git a/Task1/lib/touriest_place.dart b/Task1/lib/touriest_place.dart new file mode 100644 index 0000000..5ddc0c6 --- /dev/null +++ b/Task1/lib/touriest_place.dart @@ -0,0 +1,43 @@ +import 'package:flutter/material.dart'; +import 'package:tourism_ui/places_page.dart'; + +class TourPlaces extends StatefulWidget { + const TourPlaces({super.key}); + + @override + State createState() => _TourPlacesState(); +} + +class _TourPlacesState extends State { + @override + Widget build(BuildContext context) { + return Container( + height: 50, + child: ListView.builder( + scrollDirection: Axis.horizontal, + itemCount: places.length, + itemBuilder: (context, index) { + Map place = places[index]; + return Padding( + padding: const EdgeInsets.only(left: 5, right: 5), + child: Chip( + elevation: 0.4, + label: Text( + place['place'], + style: const TextStyle( + color: Colors.black, + fontWeight: FontWeight.bold, + fontSize: 13), + ), + backgroundColor: Colors.grey.shade300, + avatar: Image.asset(place['icon']), + shape: RoundedRectangleBorder( + side: BorderSide.none, + borderRadius: BorderRadius.circular(12)), + ), + ); + }, + ), + ); + } +} diff --git a/Task1/lib/vertical_widgets.dart b/Task1/lib/vertical_widgets.dart new file mode 100644 index 0000000..698f59c --- /dev/null +++ b/Task1/lib/vertical_widgets.dart @@ -0,0 +1,100 @@ +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:tourism_ui/detail_page.dart'; +import 'package:tourism_ui/places_page.dart'; + +class VerticalCard extends StatefulWidget { + const VerticalCard({super.key}); + + @override + State createState() => _VerticalCardState(); +} + +class _VerticalCardState extends State { + @override + Widget build(BuildContext context) { + return SizedBox( + height: 120 * places.length.toDouble(), + child: ListView.builder( + itemCount: places.length, + itemBuilder: (context, index) { + Map place = places[index]; + return Padding( + padding: const EdgeInsets.all(8.0), + child: GestureDetector( + onTap: () => Navigator.push(context, + MaterialPageRoute(builder: (_) => DetailPage(place: place))), + child: Card( + elevation: 2.0, + child: Container( + height: 120, + child: Row( + mainAxisAlignment: MainAxisAlignment.start, + children: [ + Image.asset( + place['img'], + width: 100, + height: 100, + fit: BoxFit.cover, + ), + Padding( + padding: EdgeInsets.only(left: 20.0), + child: Container( + width: 200, + child: Column( + mainAxisAlignment: + MainAxisAlignment.spaceEvenly, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + place['name'], + style: TextStyle( + fontSize: 16, + fontWeight: FontWeight.bold), + ), + Row( + mainAxisAlignment: MainAxisAlignment.start, + crossAxisAlignment: + CrossAxisAlignment.center, + children: [ + Icon( + Icons.location_on, + color: Colors.blue, + size: 17, + weight: 10, + ), + Text( + place['location'], + style: TextStyle( + color: Colors.blue, + fontWeight: FontWeight.bold), + ) + ], + ), + Text( + place['details'], + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12, + fontWeight: FontWeight.w400), + ), + Text( + place['price'], + style: TextStyle( + fontWeight: FontWeight.w600, + fontSize: 15), + ), + ], + ), + ), + ) + ], + ))), + ), + ); + }, + ), + ); + } +} diff --git a/Task1/linux/.gitignore b/Task1/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/Task1/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/Task1/linux/CMakeLists.txt b/Task1/linux/CMakeLists.txt new file mode 100644 index 0000000..1c8f640 --- /dev/null +++ b/Task1/linux/CMakeLists.txt @@ -0,0 +1,139 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.10) +project(runner LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "task_1") +# The unique GTK application identifier for this application. See: +# https://wiki.gnome.org/HowDoI/ChooseApplicationID +set(APPLICATION_ID "com.example.task_1") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(SET CMP0063 NEW) + +# Load bundled libraries from the lib/ directory relative to the binary. +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Define build configuration options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Define the application target. To change its name, change BINARY_NAME above, +# not the value here, or `flutter run` will no longer work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add dependency libraries. Add any application-specific dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) + +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) + install(FILES "${bundled_library}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endforeach(bundled_library) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/Task1/linux/flutter/CMakeLists.txt b/Task1/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..d5bd016 --- /dev/null +++ b/Task1/linux/flutter/CMakeLists.txt @@ -0,0 +1,88 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/Task1/linux/flutter/generated_plugin_registrant.cc b/Task1/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..e71a16d --- /dev/null +++ b/Task1/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,11 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + + +void fl_register_plugins(FlPluginRegistry* registry) { +} diff --git a/Task1/linux/flutter/generated_plugin_registrant.h b/Task1/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/Task1/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/Task1/linux/flutter/generated_plugins.cmake b/Task1/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..2e1de87 --- /dev/null +++ b/Task1/linux/flutter/generated_plugins.cmake @@ -0,0 +1,23 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/Task1/linux/main.cc b/Task1/linux/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/Task1/linux/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/Task1/linux/my_application.cc b/Task1/linux/my_application.cc new file mode 100644 index 0000000..73cc9a7 --- /dev/null +++ b/Task1/linux/my_application.cc @@ -0,0 +1,104 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "task_1"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "task_1"); + } + + gtk_window_set_default_size(window, 1280, 720); + gtk_widget_show(GTK_WIDGET(window)); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, + "flags", G_APPLICATION_NON_UNIQUE, + nullptr)); +} diff --git a/Task1/linux/my_application.h b/Task1/linux/my_application.h new file mode 100644 index 0000000..72271d5 --- /dev/null +++ b/Task1/linux/my_application.h @@ -0,0 +1,18 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/Task1/macos/.DS_Store b/Task1/macos/.DS_Store new file mode 100644 index 0000000..51de774 Binary files /dev/null and b/Task1/macos/.DS_Store differ diff --git a/Task1/macos/.gitignore b/Task1/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/Task1/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/Task1/macos/Flutter/Flutter-Debug.xcconfig b/Task1/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/Task1/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/Task1/macos/Flutter/Flutter-Release.xcconfig b/Task1/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..c2efd0b --- /dev/null +++ b/Task1/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1 @@ +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/Task1/macos/Flutter/GeneratedPluginRegistrant.swift b/Task1/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..cccf817 --- /dev/null +++ b/Task1/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,10 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { +} diff --git a/Task1/macos/Runner.xcodeproj/project.pbxproj b/Task1/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..962f2df --- /dev/null +++ b/Task1/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,695 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* task_1.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "task_1.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* task_1.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* task_1.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1430; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.task1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/task_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/task_1"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + 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_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + 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_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + 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_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + 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_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + 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_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + 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_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/Task1/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Task1/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Task1/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Task1/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/Task1/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..079e51a --- /dev/null +++ b/Task1/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/macos/Runner.xcworkspace/contents.xcworkspacedata b/Task1/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/Task1/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Task1/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Task1/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Task1/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Task1/macos/Runner/AppDelegate.swift b/Task1/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..d53ef64 --- /dev/null +++ b/Task1/macos/Runner/AppDelegate.swift @@ -0,0 +1,9 @@ +import Cocoa +import FlutterMacOS + +@NSApplicationMain +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } +} diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..82b6f9d Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..13b35eb Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..0a3f5fa Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bdb5722 Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..f083318 Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..326c0e7 Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..2f1632c Binary files /dev/null and b/Task1/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/Task1/macos/Runner/Base.lproj/MainMenu.xib b/Task1/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..80e867a --- /dev/null +++ b/Task1/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Task1/macos/Runner/Configs/AppInfo.xcconfig b/Task1/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..1bce996 --- /dev/null +++ b/Task1/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = task_1 + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.example.task1 + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved. diff --git a/Task1/macos/Runner/Configs/Debug.xcconfig b/Task1/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/Task1/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/Task1/macos/Runner/Configs/Release.xcconfig b/Task1/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/Task1/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/Task1/macos/Runner/Configs/Warnings.xcconfig b/Task1/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/Task1/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/Task1/macos/Runner/DebugProfile.entitlements b/Task1/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/Task1/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/Task1/macos/Runner/Info.plist b/Task1/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/Task1/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/Task1/macos/Runner/MainFlutterWindow.swift b/Task1/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/Task1/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/Task1/macos/Runner/Release.entitlements b/Task1/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/Task1/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/Task1/macos/RunnerTests/RunnerTests.swift b/Task1/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..5418c9f --- /dev/null +++ b/Task1/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import FlutterMacOS +import Cocoa +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/Task1/pubspec.lock b/Task1/pubspec.lock new file mode 100644 index 0000000..fa64d5e --- /dev/null +++ b/Task1/pubspec.lock @@ -0,0 +1,188 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 + url: "https://pub.dev" + source: hosted + version: "1.17.2" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be + url: "https://pub.dev" + source: hosted + version: "1.0.5" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4" + url: "https://pub.dev" + source: hosted + version: "2.0.2" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + web: + dependency: transitive + description: + name: web + sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 + url: "https://pub.dev" + source: hosted + version: "0.1.4-beta" +sdks: + dart: ">=3.1.0 <4.0.0" diff --git a/Task1/pubspec.yaml b/Task1/pubspec.yaml new file mode 100644 index 0000000..7932761 --- /dev/null +++ b/Task1/pubspec.yaml @@ -0,0 +1,90 @@ +name: tourism_ui +description: A new Flutter project. +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# 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 is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: '>=3.1.0 <4.0.0' + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +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: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + +# 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 packages. +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/ + # - 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 diff --git a/Task1/task_1.iml b/Task1/task_1.iml new file mode 100644 index 0000000..f66303d --- /dev/null +++ b/Task1/task_1.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/Task1/test/widget_test.dart b/Task1/test/widget_test.dart new file mode 100644 index 0000000..966a8ab --- /dev/null +++ b/Task1/test/widget_test.dart @@ -0,0 +1,29 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:tourism_ui/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/Task1/web/favicon.png b/Task1/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/Task1/web/favicon.png differ diff --git a/Task1/web/icons/Icon-192.png b/Task1/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/Task1/web/icons/Icon-192.png differ diff --git a/Task1/web/icons/Icon-512.png b/Task1/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/Task1/web/icons/Icon-512.png differ diff --git a/Task1/web/icons/Icon-maskable-192.png b/Task1/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/Task1/web/icons/Icon-maskable-192.png differ diff --git a/Task1/web/icons/Icon-maskable-512.png b/Task1/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/Task1/web/icons/Icon-maskable-512.png differ diff --git a/Task1/web/index.html b/Task1/web/index.html new file mode 100644 index 0000000..03d2474 --- /dev/null +++ b/Task1/web/index.html @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + task_1 + + + + + + + + + + diff --git a/Task1/web/manifest.json b/Task1/web/manifest.json new file mode 100644 index 0000000..0af6e16 --- /dev/null +++ b/Task1/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "task_1", + "short_name": "task_1", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/Task1/windows/.gitignore b/Task1/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/Task1/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/Task1/windows/CMakeLists.txt b/Task1/windows/CMakeLists.txt new file mode 100644 index 0000000..c21f144 --- /dev/null +++ b/Task1/windows/CMakeLists.txt @@ -0,0 +1,102 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.14) +project(task_1 LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "task_1") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(VERSION 3.14...3.25) + +# Define build configuration option. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() +# Define settings for the Profile build mode. +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/Task1/windows/flutter/CMakeLists.txt b/Task1/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..930d207 --- /dev/null +++ b/Task1/windows/flutter/CMakeLists.txt @@ -0,0 +1,104 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + windows-x64 $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/Task1/windows/flutter/generated_plugin_registrant.cc b/Task1/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..8b6d468 --- /dev/null +++ b/Task1/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,11 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + + +void RegisterPlugins(flutter::PluginRegistry* registry) { +} diff --git a/Task1/windows/flutter/generated_plugin_registrant.h b/Task1/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/Task1/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/Task1/windows/flutter/generated_plugins.cmake b/Task1/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..b93c4c3 --- /dev/null +++ b/Task1/windows/flutter/generated_plugins.cmake @@ -0,0 +1,23 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/Task1/windows/runner/CMakeLists.txt b/Task1/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..394917c --- /dev/null +++ b/Task1/windows/runner/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the build version. +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") + +# Disable Windows macros that collide with C++ standard library functions. +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") + +# Add dependency libraries and include directories. Add any application-specific +# dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/Task1/windows/runner/Runner.rc b/Task1/windows/runner/Runner.rc new file mode 100644 index 0000000..2b8bfca --- /dev/null +++ b/Task1/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) +#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD +#else +#define VERSION_AS_NUMBER 1,0,0,0 +#endif + +#if defined(FLUTTER_VERSION) +#define VERSION_AS_STRING FLUTTER_VERSION +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "task_1" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "task_1" "\0" + VALUE "LegalCopyright", "Copyright (C) 2023 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "task_1.exe" "\0" + VALUE "ProductName", "task_1" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/Task1/windows/runner/flutter_window.cpp b/Task1/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..955ee30 --- /dev/null +++ b/Task1/windows/runner/flutter_window.cpp @@ -0,0 +1,71 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + + flutter_controller_->engine()->SetNextFrameCallback([&]() { + this->Show(); + }); + + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + flutter_controller_->ForceRedraw(); + + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/Task1/windows/runner/flutter_window.h b/Task1/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/Task1/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/Task1/windows/runner/main.cpp b/Task1/windows/runner/main.cpp new file mode 100644 index 0000000..29074c7 --- /dev/null +++ b/Task1/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.Create(L"task_1", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/Task1/windows/runner/resource.h b/Task1/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/Task1/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/Task1/windows/runner/resources/app_icon.ico b/Task1/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000..c04e20c Binary files /dev/null and b/Task1/windows/runner/resources/app_icon.ico differ diff --git a/Task1/windows/runner/runner.exe.manifest b/Task1/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..a42ea76 --- /dev/null +++ b/Task1/windows/runner/runner.exe.manifest @@ -0,0 +1,20 @@ + + + + + PerMonitorV2 + + + + + + + + + + + + + + + diff --git a/Task1/windows/runner/utils.cpp b/Task1/windows/runner/utils.cpp new file mode 100644 index 0000000..b2b0873 --- /dev/null +++ b/Task1/windows/runner/utils.cpp @@ -0,0 +1,65 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr) + -1; // remove the trailing null character + int input_length = (int)wcslen(utf16_string); + std::string utf8_string; + if (target_length <= 0 || target_length > utf8_string.max_size()) { + return utf8_string; + } + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + input_length, utf8_string.data(), target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/Task1/windows/runner/utils.h b/Task1/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/Task1/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/Task1/windows/runner/win32_window.cpp b/Task1/windows/runner/win32_window.cpp new file mode 100644 index 0000000..60608d0 --- /dev/null +++ b/Task1/windows/runner/win32_window.cpp @@ -0,0 +1,288 @@ +#include "win32_window.h" + +#include +#include + +#include "resource.h" + +namespace { + +/// Window attribute that enables dark mode window decorations. +/// +/// Redefined in case the developer's machine has a Windows SDK older than +/// version 10.0.22000.0. +/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute +#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE +#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 +#endif + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +/// Registry key for app theme preference. +/// +/// A value of 0 indicates apps should use dark mode. A non-zero or missing +/// value indicates apps should use light mode. +constexpr const wchar_t kGetPreferredBrightnessRegKey[] = + L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + } + FreeLibrary(user32_module); +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registrar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::Create(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + UpdateTheme(window); + + return OnCreate(); +} + +bool Win32Window::Show() { + return ShowWindow(window_handle_, SW_SHOWNORMAL); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + + case WM_DWMCOLORIZATIONCOLORCHANGED: + UpdateTheme(hwnd); + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} + +void Win32Window::UpdateTheme(HWND const window) { + DWORD light_mode; + DWORD light_mode_size = sizeof(light_mode); + LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, + kGetPreferredBrightnessRegValue, + RRF_RT_REG_DWORD, nullptr, &light_mode, + &light_mode_size); + + if (result == ERROR_SUCCESS) { + BOOL enable_dark_mode = light_mode == 0; + DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, + &enable_dark_mode, sizeof(enable_dark_mode)); + } +} diff --git a/Task1/windows/runner/win32_window.h b/Task1/windows/runner/win32_window.h new file mode 100644 index 0000000..e901dde --- /dev/null +++ b/Task1/windows/runner/win32_window.h @@ -0,0 +1,102 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates a win32 window with |title| that is positioned and sized using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size this function will scale the inputted width and height as + // as appropriate for the default monitor. The window is invisible until + // |Show| is called. Returns true if the window was created successfully. + bool Create(const std::wstring& title, const Point& origin, const Size& size); + + // Show the current window. Returns true if the window was successfully shown. + bool Show(); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + // Update the window frame's theme to match the system theme. + static void UpdateTheme(HWND const window); + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_