diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0a079b6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/bin
+/obj
\ No newline at end of file
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..15dbb83
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..91c9cd4
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace MobileAPP
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/AppShell.xaml b/AppShell.xaml
new file mode 100644
index 0000000..37bf210
--- /dev/null
+++ b/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs
new file mode 100644
index 0000000..6a45114
--- /dev/null
+++ b/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace MobileAPP
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MainPage.xaml b/MainPage.xaml
new file mode 100644
index 0000000..b4f3438
--- /dev/null
+++ b/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MainPage.xaml.cs b/MainPage.xaml.cs
new file mode 100644
index 0000000..fd7e398
--- /dev/null
+++ b/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace MobileAPP
+{
+ public partial class MainPage : ContentPage
+ {
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+ }
+
+}
diff --git a/MauiProgram.cs b/MauiProgram.cs
new file mode 100644
index 0000000..6dbfa94
--- /dev/null
+++ b/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace MobileAPP
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/MobileAPP.csproj b/MobileAPP.csproj
new file mode 100644
index 0000000..3566ccb
--- /dev/null
+++ b/MobileAPP.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ MobileAPP
+ true
+ true
+ enable
+ enable
+
+
+ MobileAPP
+
+
+ com.companyname.mobileapp
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MobileAPP.csproj.user b/MobileAPP.csproj.user
new file mode 100644
index 0000000..891593c
--- /dev/null
+++ b/MobileAPP.csproj.user
@@ -0,0 +1,31 @@
+
+
+
+ False
+ net8.0-windows10.0.19041.0
+ Windows Machine
+
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/Platforms/Android/AndroidManifest.xml b/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Platforms/Android/MainActivity.cs b/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..0b3ab50
--- /dev/null
+++ b/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace MobileAPP
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/Platforms/Android/MainApplication.cs b/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..8ad93c7
--- /dev/null
+++ b/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace MobileAPP
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/Android/Resources/values/colors.xml b/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Platforms/MacCatalyst/AppDelegate.cs b/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..dc1809d
--- /dev/null
+++ b/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MobileAPP
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/MacCatalyst/Entitlements.plist b/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/Platforms/MacCatalyst/Info.plist b/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Platforms/MacCatalyst/Program.cs b/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..3a75e44
--- /dev/null
+++ b/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MobileAPP
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Platforms/Tizen/Main.cs b/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..e88d3f8
--- /dev/null
+++ b/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace MobileAPP
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/Platforms/Tizen/tizen-manifest.xml b/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..0d1b962
--- /dev/null
+++ b/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Platforms/Windows/App.xaml b/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..a8f90ac
--- /dev/null
+++ b/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Platforms/Windows/App.xaml.cs b/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..098796a
--- /dev/null
+++ b/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace MobileAPP.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+
+}
diff --git a/Platforms/Windows/Package.appxmanifest b/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..8efb799
--- /dev/null
+++ b/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Platforms/Windows/app.manifest b/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..e0689c5
--- /dev/null
+++ b/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Platforms/iOS/AppDelegate.cs b/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..dc1809d
--- /dev/null
+++ b/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MobileAPP
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/iOS/Info.plist b/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Platforms/iOS/Program.cs b/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..3a75e44
--- /dev/null
+++ b/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MobileAPP
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Resources/AppIcon/appicon.svg b/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Resources/AppIcon/appiconfg.svg b/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Resources/Fonts/OpenSans-Regular.ttf b/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..9ab655d
Binary files /dev/null and b/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Resources/Fonts/OpenSans-Semibold.ttf b/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..2b7468e
Binary files /dev/null and b/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Resources/Images/dotnet_bot.png b/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/Resources/Images/dotnet_bot.png differ
diff --git a/Resources/Raw/AboutAssets.txt b/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Resources/Splash/splash.svg b/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Resources/Styles/Colors.xaml b/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Resources/Styles/Styles.xaml b/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..e0d36bb
--- /dev/null
+++ b/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AboutAssets.txt b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml
new file mode 100644
index 0000000..e2e13db
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ MobileAPP
+ User Name
+ appiconStoreLogo.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..a5ab313
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..d3e5c22
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Configuration.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 0000000..0b3c8e9
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 0000000..c87ed43
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..085f415
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Debug.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 0000000..38d93db
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.dll
new file mode 100644
index 0000000..75e0fbf
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Logging.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Options.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Options.dll
new file mode 100644
index 0000000..69c35a5
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Options.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Primitives.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..c24f2a0
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Extensions.Primitives.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.Interop.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.Interop.dll
new file mode 100644
index 0000000..6785646
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.Interop.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.dll
new file mode 100644
index 0000000..9200a65
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Canvas.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InteractiveExperiences.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InteractiveExperiences.Projection.dll
new file mode 100644
index 0000000..418e6e4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InteractiveExperiences.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.dll
new file mode 100644
index 0000000..92f343b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.pri b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.pri
new file mode 100644
index 0000000..450a114
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Compatibility.pri differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Xaml.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Xaml.dll
new file mode 100644
index 0000000..4386d1d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.Xaml.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.dll
new file mode 100644
index 0000000..1ddbc9b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.pri b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.pri
new file mode 100644
index 0000000..39dc5f8
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Controls.pri differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Essentials.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Essentials.dll
new file mode 100644
index 0000000..3db6523
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Essentials.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll
new file mode 100644
index 0000000..6098264
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.dll
new file mode 100644
index 0000000..d486722
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.Graphics.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.dll
new file mode 100644
index 0000000..a329a9b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.pri b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.pri
new file mode 100644
index 0000000..5060b1f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Maui.pri differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WinUI.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WinUI.dll
new file mode 100644
index 0000000..8d94245
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WinUI.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppLifecycle.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppLifecycle.Projection.dll
new file mode 100644
index 0000000..6e00f4d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppLifecycle.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Builder.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Builder.Projection.dll
new file mode 100644
index 0000000..78a4fa2
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Builder.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Projection.dll
new file mode 100644
index 0000000..0c0a553
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.AppNotifications.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll
new file mode 100644
index 0000000..c139082
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.Projection.dll
new file mode 100644
index 0000000..1c6eb2f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll
new file mode 100644
index 0000000..6b15c41
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.PushNotifications.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.PushNotifications.Projection.dll
new file mode 100644
index 0000000..60c74ab
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.PushNotifications.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.SDK.NET.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.SDK.NET.dll
new file mode 100644
index 0000000..44d892c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.SDK.NET.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Security.AccessControl.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Security.AccessControl.Projection.dll
new file mode 100644
index 0000000..12f0497
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Security.AccessControl.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Power.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Power.Projection.dll
new file mode 100644
index 0000000..4d7fdef
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Power.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Projection.dll
new file mode 100644
index 0000000..a8e5f9c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.System.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.Projection.dll
new file mode 100644
index 0000000..4b91ada
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll
new file mode 100644
index 0000000..4c52feb
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.dll
new file mode 100644
index 0000000..a842247
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Bootstrap.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Release.Net.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Release.Net.dll
new file mode 100644
index 0000000..6612000
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Release.Net.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.deps.json b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.deps.json
new file mode 100644
index 0000000..602b3aa
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.deps.json
@@ -0,0 +1,608 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0/win10-x64",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {},
+ ".NETCoreApp,Version=v8.0/win10-x64": {
+ "MobileAPP/1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Debug": "8.0.0",
+ "Microsoft.Maui.Controls": "8.0.3",
+ "Microsoft.Maui.Controls.Compatibility": "8.0.3",
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref": "10.0.19041.31"
+ },
+ "runtime": {
+ "MobileAPP.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.31": {
+ "runtime": {
+ "Microsoft.Windows.SDK.NET.dll": {
+ "assemblyVersion": "10.0.19041.24",
+ "fileVersion": "10.0.19041.31"
+ },
+ "WinRT.Runtime.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.4.44211"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Graphics.Win2D/1.0.5.1": {
+ "dependencies": {
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Graphics.Canvas.Interop.dll": {
+ "assemblyVersion": "1.0.26.0",
+ "fileVersion": "1.0.26.0"
+ }
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {
+ "fileVersion": "1.0.5.0"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Controls.Build.Tasks": "8.0.3",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3",
+ "Microsoft.Maui.Resizetizer": "8.0.3"
+ }
+ },
+ "Microsoft.Maui.Controls.Build.Tasks/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3"
+ }
+ },
+ "Microsoft.Maui.Controls.Compatibility/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Maui.Controls": "8.0.3",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls.Core/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Maui.Core": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ },
+ "resources": {
+ "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ar"
+ },
+ "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ca"
+ },
+ "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "da"
+ },
+ "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "el"
+ },
+ "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "fi"
+ },
+ "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "he"
+ },
+ "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hi"
+ },
+ "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hr"
+ },
+ "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hu"
+ },
+ "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "id"
+ },
+ "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ms"
+ },
+ "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "nb"
+ },
+ "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "nl"
+ },
+ "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pt"
+ },
+ "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ro"
+ },
+ "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "sk"
+ },
+ "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "sv"
+ },
+ "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "th"
+ },
+ "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "uk"
+ },
+ "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "vi"
+ },
+ "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-HK"
+ },
+ "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls.Xaml/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Core": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Core/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.Maui.Essentials": "8.0.3",
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.3",
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Essentials/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Graphics/8.0.3": {
+ "dependencies": {
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.3": {
+ "dependencies": {
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Resizetizer/8.0.3": {},
+ "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {},
+ "Microsoft.WindowsAppSDK/1.3.230724000": {
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
+ },
+ "runtime": {
+ "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.22623.1051"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "3.0.0.2307"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Release.Net.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ }
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
+ "fileVersion": "1.3.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "MobileAPP/1.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.31": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
+ "path": "microsoft.extensions.configuration/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
+ "path": "microsoft.extensions.configuration.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
+ "path": "microsoft.extensions.dependencyinjection/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
+ "path": "microsoft.extensions.logging/8.0.0",
+ "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
+ "path": "microsoft.extensions.logging.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
+ "path": "microsoft.extensions.logging.debug/8.0.0",
+ "hashPath": "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
+ "path": "microsoft.extensions.options/8.0.0",
+ "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Graphics.Win2D/1.0.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9DVEVvyQWWz8kqhsFBAx9Zv4KRIAcmxuT7kFpK1Fgh6czSiMB+CQW0DlhZXT44Mtv41FRXG47lhEv+7a2YyiLA==",
+ "path": "microsoft.graphics.win2d/1.0.5.1",
+ "hashPath": "microsoft.graphics.win2d.1.0.5.1.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-u4758dDYaci/A+SYZxxOw1GOYIOt2erydMTAbhzIOUslki1VLuF7fdABlaow/AobbctOHHi48qdGZGVi4M7ALg==",
+ "path": "microsoft.maui.controls/8.0.3",
+ "hashPath": "microsoft.maui.controls.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Build.Tasks/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MneJP5CnRkEelcitnbKoXw7E7SHo2GxkWZK+BX/MvDW3ATMMtuv6zkkBmQiiCcObjEnObpNZkwdiJf1L3dslIA==",
+ "path": "microsoft.maui.controls.build.tasks/8.0.3",
+ "hashPath": "microsoft.maui.controls.build.tasks.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Compatibility/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7qMC0eREbrj9hVVVXy6b15MNoOcXrXbXqAJ8E+5ahAGH6HwYFPkCPXwfL9dhaXWhzLaxrVD0vHH2qVg1kwFl8A==",
+ "path": "microsoft.maui.controls.compatibility/8.0.3",
+ "hashPath": "microsoft.maui.controls.compatibility.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Core/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-53cAExyv1Lw+Dax85GRe6233OlPUZRbhoNbk7qN0so1novS7zRdtj3BGtsVJiWeA/20oU4lRqkkLphNLmp2pAA==",
+ "path": "microsoft.maui.controls.core/8.0.3",
+ "hashPath": "microsoft.maui.controls.core.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Xaml/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ka8DToOqVk+7Wht674DOU9JAl4zfILmtKmFKtmMsF8YZhbazKxgx4kvRB7HUPR0pBsnhrUs3zsX5zeFYjnYYZQ==",
+ "path": "microsoft.maui.controls.xaml/8.0.3",
+ "hashPath": "microsoft.maui.controls.xaml.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Core/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4KP8EM/sI1aCLHMB6lZP3NE6vtq0ShlwZwqCCpQzWaDjKHa5K2PPagtOjzpntYFTQw3cE+sJEOk1xd4JRTELtw==",
+ "path": "microsoft.maui.core/8.0.3",
+ "hashPath": "microsoft.maui.core.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Essentials/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VHI2a4QHYoc31xMkFDNuhMWmhxe9zYnHlPQXvj6e23w0GeNjSCiw+X1H3cb0SMuiSN6tK8HJrsyphxS3J50MHQ==",
+ "path": "microsoft.maui.essentials/8.0.3",
+ "hashPath": "microsoft.maui.essentials.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Graphics/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RWXI/VKfxRljnzME5v2TgiT5N/Q/phpaCqFnz3V0NSAGey5GAPwzuH3W5ryU0fVgds9QPgukDeuGRn7hTD/MWw==",
+ "path": "microsoft.maui.graphics/8.0.3",
+ "hashPath": "microsoft.maui.graphics.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/wf8PRqwPecWkTob62Gkc5KBCu9kVmHoy1UAinEcSeHu0KYVaCJ3zXBkS0OSBkgGm7JEon4Ruvg6i+p/GJfjFw==",
+ "path": "microsoft.maui.graphics.win2d.winui.desktop/8.0.3",
+ "hashPath": "microsoft.maui.graphics.win2d.winui.desktop.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Resizetizer/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SBaeM/1AF8ajCbQfFM15aN1IX+GQUw/V9NuqZV3is+Z202dfzz+bIZmBGtvEGcV4ik4YdjtQe2+vtJq0GLYTPw==",
+ "path": "microsoft.maui.resizetizer/8.0.3",
+ "hashPath": "microsoft.maui.resizetizer.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA==",
+ "path": "microsoft.windows.sdk.buildtools/10.0.22621.756",
+ "hashPath": "microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512"
+ },
+ "Microsoft.WindowsAppSDK/1.3.230724000": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cCw26h8Uh8IjDMOUzHaR7/IKxEVJxuqEOgBlmLj0Pu1wDezZb9J0Wz53Vop10FQUOZaTfnwDcHavyPTxgkwbKQ==",
+ "path": "microsoft.windowsappsdk/1.3.230724000",
+ "hashPath": "microsoft.windowsappsdk.1.3.230724000.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.dll
new file mode 100644
index 0000000..cfc1f81
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.exe b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.exe
new file mode 100644
index 0000000..4545298
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.exe differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.runtimeconfig.json b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.runtimeconfig.json
new file mode 100644
index 0000000..89e676c
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/MobileAPP.runtimeconfig.json
@@ -0,0 +1,13 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
+ "System.Runtime.Loader.UseRidGraph": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Regular.ttf b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Regular.ttf
new file mode 100644
index 0000000..9ab655d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Regular.ttf differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Semibold.ttf b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..2b7468e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/OpenSans-Semibold.ttf differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/WinRT.Runtime.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/WinRT.Runtime.dll
new file mode 100644
index 0000000..cd3b760
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/WinRT.Runtime.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appicon.ico b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appicon.ico
new file mode 100644
index 0000000..942343d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appicon.ico differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-100.png
new file mode 100644
index 0000000..2162bc4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-125.png
new file mode 100644
index 0000000..af70b44
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-150.png
new file mode 100644
index 0000000..fb8de7a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-200.png
new file mode 100644
index 0000000..b9fdbfe
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-400.png
new file mode 100644
index 0000000..4bcd6e1
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLargeTile.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-16.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-16.png
new file mode 100644
index 0000000..7c71911
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-16.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-24.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-24.png
new file mode 100644
index 0000000..30cee91
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-24.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-256.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-256.png
new file mode 100644
index 0000000..0b0d630
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-256.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-32.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-32.png
new file mode 100644
index 0000000..65f4be7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-32.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-48.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-48.png
new file mode 100644
index 0000000..eb17ffc
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-lightunplated_targetsize-48.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-16.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-16.png
new file mode 100644
index 0000000..7c71911
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-16.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-24.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-24.png
new file mode 100644
index 0000000..30cee91
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-24.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-256.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-256.png
new file mode 100644
index 0000000..0b0d630
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-256.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-32.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-32.png
new file mode 100644
index 0000000..65f4be7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-32.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-48.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-48.png
new file mode 100644
index 0000000..eb17ffc
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.altform-unplated_targetsize-48.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-100.png
new file mode 100644
index 0000000..1cbe175
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-125.png
new file mode 100644
index 0000000..e7d8cc4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-150.png
new file mode 100644
index 0000000..ebfc659
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-200.png
new file mode 100644
index 0000000..dbed25f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-400.png
new file mode 100644
index 0000000..39a6569
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-16.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-16.png
new file mode 100644
index 0000000..7c71911
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-16.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-24.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-24.png
new file mode 100644
index 0000000..30cee91
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-24.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-256.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-256.png
new file mode 100644
index 0000000..0b0d630
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-256.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-32.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-32.png
new file mode 100644
index 0000000..65f4be7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-32.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-48.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-48.png
new file mode 100644
index 0000000..eb17ffc
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconLogo.targetsize-48.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-100.png
new file mode 100644
index 0000000..390a585
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-125.png
new file mode 100644
index 0000000..a4036d6
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-150.png
new file mode 100644
index 0000000..af1ed9e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-200.png
new file mode 100644
index 0000000..3d1a228
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-400.png
new file mode 100644
index 0000000..60c21a8
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconMediumTile.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-100.png
new file mode 100644
index 0000000..200c80e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-125.png
new file mode 100644
index 0000000..240c8aa
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-150.png
new file mode 100644
index 0000000..63b5854
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-200.png
new file mode 100644
index 0000000..e17e6af
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-400.png
new file mode 100644
index 0000000..989c326
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconSmallTile.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-100.png
new file mode 100644
index 0000000..f9292d0
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-125.png
new file mode 100644
index 0000000..7b45f73
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-150.png
new file mode 100644
index 0000000..08ea4b7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-200.png
new file mode 100644
index 0000000..aecf78e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-400.png
new file mode 100644
index 0000000..bd72d32
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconStoreLogo.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-100.png
new file mode 100644
index 0000000..97df4ab
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-125.png
new file mode 100644
index 0000000..e1c5de8
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-150.png
new file mode 100644
index 0000000..6866659
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-200.png
new file mode 100644
index 0000000..2c1c8f8
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-400.png
new file mode 100644
index 0000000..39eda68
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/appiconWideTile.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ar/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ar/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..2198731
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ar/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ca/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ca/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..b37382b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ca/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/cs/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/cs/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..33e158c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/cs/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/da/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/da/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c686a77
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/da/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/de/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/de/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..91989d7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/de/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-100.png
new file mode 100644
index 0000000..3bfb9aa
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-125.png
new file mode 100644
index 0000000..4f40019
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-150.png
new file mode 100644
index 0000000..38551c4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-200.png
new file mode 100644
index 0000000..4286e4c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-400.png
new file mode 100644
index 0000000..8027606
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/dotnet_bot.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/el/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/el/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..0618c28
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/el/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/es/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/es/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..bc13175
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/es/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..55e105d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..d0f0525
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/fr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/he/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/he/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c82bdd4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/he/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c381b42
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3e7432c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hu/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hu/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..cb9e61e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/hu/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/id/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/id/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..062f050
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/id/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/it/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/it/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..93da64a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/it/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ja/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ja/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..e7c8133
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ja/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ko/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ko/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..edf95ea
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ko/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ms/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ms/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c3323eb
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ms/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nb/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nb/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..03c9055
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nb/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nl/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nl/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..5d10e4d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/nl/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pl/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pl/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..266cff9
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pl/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3a6610b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..a6fc7fa
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/pt/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/resources.pri b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/resources.pri
new file mode 100644
index 0000000..bb65de7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/resources.pri differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ro/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ro/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..996fcc4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ro/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ru/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ru/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3b77660
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/ru/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sk/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sk/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..79cb5d6
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sk/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-100.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-100.png
new file mode 100644
index 0000000..2c1c8f8
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-100.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-125.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-125.png
new file mode 100644
index 0000000..e539e22
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-125.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-150.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-150.png
new file mode 100644
index 0000000..d9e8371
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-150.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-200.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-200.png
new file mode 100644
index 0000000..39eda68
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-200.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-400.png b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-400.png
new file mode 100644
index 0000000..8cac56f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/splashSplashScreen.scale-400.png differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sv/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sv/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c3552ba
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/sv/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/th/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/th/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..938149a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/th/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/tr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/tr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3b70c0a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/tr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/uk/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/uk/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..eb257dc
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/uk/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..f76cd99
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe
new file mode 100644
index 0000000..5d8bca2
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe
@@ -0,0 +1,623 @@
+
+
+
+ CAB318-1
+ Студент
+ Windows
+ 10.0
+ Windows 10.0
+ Debug|AnyCPU
+ x64
+ com.companyname.mobileapp
+ CN=User Name
+ D:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\
+ CopyToDevice
+
+
+ false
+ false
+ C:\Program Files %28x86%29\Windows Kits\10\
+ D:\IP407\MobileAPP\MobileAPP\bin\Debug\net8.0-windows10.0.19041.0\win10-x64\AppX
+ 457E6D92CBE1667570FB0502DEB3D15F408E540DB509B25F19C9689D23F1D075
+ com.companyname.mobileapp_1.0.0.1_x64__9zz4h110yvjzm
+ com.companyname.mobileapp_9zz4h110yvjzm!App
+ com.companyname.mobileapp
+ CN=User Name
+ 1.0.0.1
+
+
+
+ AppxManifest.xml
+ true
+ 2025-03-05T05:39:52.775
+
+
+
+
+ resources.pri
+ 2025-03-05T05:39:52.630
+
+
+ MobileAPP.runtimeconfig.json
+ 2025-03-05T05:39:52.417
+
+
+ MobileAPP.dll
+ 2025-03-05T05:39:51.494
+
+
+ MobileAPP.exe
+ 2025-03-05T05:39:51.505
+
+
+ AboutAssets.txt
+ 2025-02-28T05:51:02.386
+
+
+ splashSplashScreen.scale-100.png
+ 2025-02-28T05:51:16.903
+
+
+ splashSplashScreen.scale-125.png
+ 2025-02-28T05:51:16.915
+
+
+ splashSplashScreen.scale-150.png
+ 2025-02-28T05:51:16.930
+
+
+ splashSplashScreen.scale-200.png
+ 2025-02-28T05:51:16.954
+
+
+ splashSplashScreen.scale-400.png
+ 2025-02-28T05:51:17.045
+
+
+ OpenSans-Regular.ttf
+ 2025-02-28T05:51:02.379
+
+
+ OpenSans-Semibold.ttf
+ 2025-02-28T05:51:02.380
+
+
+ appicon.ico
+ 2025-02-28T05:51:17.076
+
+
+ appiconLargeTile.scale-100.png
+ 2025-02-28T05:51:17.400
+
+
+ appiconLargeTile.scale-125.png
+ 2025-02-28T05:51:17.419
+
+
+ appiconLargeTile.scale-150.png
+ 2025-02-28T05:51:17.434
+
+
+ appiconLargeTile.scale-200.png
+ 2025-02-28T05:51:17.459
+
+
+ appiconLargeTile.scale-400.png
+ 2025-02-28T05:51:17.582
+
+
+ appiconLogo.altform-lightunplated_targetsize-16.png
+ 2025-02-28T05:51:17.158
+
+
+ appiconLogo.altform-lightunplated_targetsize-24.png
+ 2025-02-28T05:51:17.162
+
+
+ appiconLogo.altform-lightunplated_targetsize-256.png
+ 2025-02-28T05:51:17.180
+
+
+ appiconLogo.altform-lightunplated_targetsize-32.png
+ 2025-02-28T05:51:17.166
+
+
+ appiconLogo.altform-lightunplated_targetsize-48.png
+ 2025-02-28T05:51:17.170
+
+
+ appiconLogo.altform-unplated_targetsize-16.png
+ 2025-02-28T05:51:17.132
+
+
+ appiconLogo.altform-unplated_targetsize-24.png
+ 2025-02-28T05:51:17.136
+
+
+ appiconLogo.altform-unplated_targetsize-256.png
+ 2025-02-28T05:51:17.154
+
+
+ appiconLogo.altform-unplated_targetsize-32.png
+ 2025-02-28T05:51:17.140
+
+
+ appiconLogo.altform-unplated_targetsize-48.png
+ 2025-02-28T05:51:17.144
+
+
+ appiconLogo.scale-100.png
+ 2025-02-28T05:51:17.084
+
+
+ appiconLogo.scale-125.png
+ 2025-02-28T05:51:17.088
+
+
+ appiconLogo.scale-150.png
+ 2025-02-28T05:51:17.092
+
+
+ appiconLogo.scale-200.png
+ 2025-02-28T05:51:17.096
+
+
+ appiconLogo.scale-400.png
+ 2025-02-28T05:51:17.103
+
+
+ appiconLogo.targetsize-16.png
+ 2025-02-28T05:51:17.106
+
+
+ appiconLogo.targetsize-24.png
+ 2025-02-28T05:51:17.110
+
+
+ appiconLogo.targetsize-256.png
+ 2025-02-28T05:51:17.129
+
+
+ appiconLogo.targetsize-32.png
+ 2025-02-28T05:51:17.115
+
+
+ appiconLogo.targetsize-48.png
+ 2025-02-28T05:51:17.119
+
+
+ appiconMediumTile.scale-100.png
+ 2025-02-28T05:51:17.243
+
+
+ appiconMediumTile.scale-125.png
+ 2025-02-28T05:51:17.250
+
+
+ appiconMediumTile.scale-150.png
+ 2025-02-28T05:51:17.258
+
+
+ appiconMediumTile.scale-200.png
+ 2025-02-28T05:51:17.269
+
+
+ appiconMediumTile.scale-400.png
+ 2025-02-28T05:51:17.292
+
+
+ appiconSmallTile.scale-100.png
+ 2025-02-28T05:51:17.210
+
+
+ appiconSmallTile.scale-125.png
+ 2025-02-28T05:51:17.215
+
+
+ appiconSmallTile.scale-150.png
+ 2025-02-28T05:51:17.219
+
+
+ appiconSmallTile.scale-200.png
+ 2025-02-28T05:51:17.225
+
+
+ appiconSmallTile.scale-400.png
+ 2025-02-28T05:51:17.236
+
+
+ appiconStoreLogo.scale-100.png
+ 2025-02-28T05:51:17.184
+
+
+ appiconStoreLogo.scale-125.png
+ 2025-02-28T05:51:17.188
+
+
+ appiconStoreLogo.scale-150.png
+ 2025-02-28T05:51:17.192
+
+
+ appiconStoreLogo.scale-200.png
+ 2025-02-28T05:51:17.197
+
+
+ appiconStoreLogo.scale-400.png
+ 2025-02-28T05:51:17.205
+
+
+ appiconWideTile.scale-100.png
+ 2025-02-28T05:51:17.300
+
+
+ appiconWideTile.scale-125.png
+ 2025-02-28T05:51:17.309
+
+
+ appiconWideTile.scale-150.png
+ 2025-02-28T05:51:17.321
+
+
+ appiconWideTile.scale-200.png
+ 2025-02-28T05:51:17.339
+
+
+ appiconWideTile.scale-400.png
+ 2025-02-28T05:51:17.387
+
+
+ dotnet_bot.scale-100.png
+ 2025-02-28T05:51:17.077
+
+
+ dotnet_bot.scale-125.png
+ 2025-02-28T05:51:17.085
+
+
+ dotnet_bot.scale-150.png
+ 2025-02-28T05:51:17.096
+
+
+ dotnet_bot.scale-200.png
+ 2025-02-28T05:51:17.111
+
+
+ dotnet_bot.scale-400.png
+ 2025-02-28T05:51:17.167
+
+
+ MobileAPP.deps.json
+ 2025-03-05T05:39:52.323
+
+
+ Microsoft.Windows.SDK.NET.dll
+ 2023-10-16T19:41:08.000
+
+
+ WinRT.Runtime.dll
+ 2023-10-16T19:41:06.000
+
+
+ Microsoft.Extensions.Configuration.dll
+ 2023-10-31T14:59:20.000
+
+
+ Microsoft.Extensions.Configuration.Abstractions.dll
+ 2023-10-31T14:59:08.000
+
+
+ Microsoft.Extensions.DependencyInjection.dll
+ 2023-10-31T14:59:00.000
+
+
+ Microsoft.Extensions.DependencyInjection.Abstractions.dll
+ 2023-10-31T14:58:56.000
+
+
+ Microsoft.Extensions.Logging.dll
+ 2023-10-31T14:59:24.000
+
+
+ Microsoft.Extensions.Logging.Abstractions.dll
+ 2023-10-31T14:59:12.000
+
+
+ Microsoft.Extensions.Logging.Debug.dll
+ 2023-10-31T14:59:30.000
+
+
+ Microsoft.Extensions.Options.dll
+ 2023-10-31T14:59:06.000
+
+
+ Microsoft.Extensions.Primitives.dll
+ 2023-10-31T14:58:52.000
+
+
+ Microsoft.Graphics.Canvas.Interop.dll
+ 2023-05-31T20:07:52.000
+
+
+ Microsoft.Maui.Controls.Compatibility.dll
+ 2023-11-07T20:48:02.000
+
+
+ Microsoft.Maui.Controls.dll
+ 2023-11-07T20:45:14.000
+
+
+ Microsoft.Maui.Controls.Xaml.dll
+ 2023-11-07T20:45:20.000
+
+
+ Microsoft.Maui.dll
+ 2023-11-07T20:45:10.000
+
+
+ Microsoft.Maui.Essentials.dll
+ 2023-11-07T20:47:12.000
+
+
+ Microsoft.Maui.Graphics.dll
+ 2023-11-07T20:44:36.000
+
+
+ Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll
+ 2023-11-07T20:47:42.000
+
+
+ Microsoft.InteractiveExperiences.Projection.dll
+ 2023-07-21T16:44:46.000
+
+
+ Microsoft.WinUI.dll
+ 2023-07-21T22:29:28.000
+
+
+ Microsoft.Windows.AppLifecycle.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.AppNotifications.Builder.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.AppNotifications.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.ApplicationModel.Resources.Projection.dll
+ 2023-04-28T12:59:12.000
+
+
+ Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.PushNotifications.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.Security.AccessControl.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.System.Power.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.System.Projection.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.Windows.Widgets.Projection.dll
+ 2023-04-20T18:26:28.000
+
+
+ Microsoft.WindowsAppRuntime.Bootstrap.Net.dll
+ 2023-07-21T22:29:26.000
+
+
+ Microsoft.WindowsAppRuntime.Release.Net.dll
+ 2023-07-24T19:10:10.000
+
+
+ ar\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:44:30.000
+
+
+ ca\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:44:50.000
+
+
+ cs\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:38.000
+
+
+ da\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:44:50.000
+
+
+ de\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:44:48.000
+
+
+ el\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:14.000
+
+
+ es\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ fi\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:12.000
+
+
+ fr\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ he\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ hi\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:20.000
+
+
+ hr\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:38.000
+
+
+ hu\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ id\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ it\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ ja\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ ko\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:38.000
+
+
+ ms\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ nb\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:40.000
+
+
+ nl\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ pl\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:46:00.000
+
+
+ pt-BR\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ pt\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ ro\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:40.000
+
+
+ ru\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ sk\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:14.000
+
+
+ sv\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:18.000
+
+
+ th\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:44:50.000
+
+
+ tr\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ uk\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:14.000
+
+
+ vi\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ zh-HK\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:14.000
+
+
+ zh-Hans\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:16.000
+
+
+ zh-Hant\Microsoft.Maui.Controls.resources.dll
+ 2023-11-07T20:45:40.000
+
+
+ Microsoft.Graphics.Canvas.dll
+ 2023-05-31T20:12:36.000
+
+
+ Microsoft.WindowsAppRuntime.Bootstrap.dll
+ 2023-04-28T12:58:40.000
+
+
+ Microsoft.Maui.Controls.Compatibility.pri
+ 2023-11-07T20:32:28.000
+
+
+ Microsoft.Maui.Controls.pri
+ 2023-11-07T20:31:52.000
+
+
+ Microsoft.Maui.pri
+ 2023-11-07T20:31:12.000
+
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ x86
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ win32
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ x64
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x64\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ arm64
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-arm64\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-HK/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-HK/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..21a267b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-HK/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hans/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hans/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..0074661
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hans/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hant/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hant/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..6ca81e2
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppX/zh-Hant/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppxManifest.xml b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppxManifest.xml
new file mode 100644
index 0000000..e2e13db
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/AppxManifest.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ MobileAPP
+ User Name
+ appiconStoreLogo.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..a5ab313
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..d3e5c22
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Configuration.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 0000000..0b3c8e9
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 0000000..c87ed43
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..085f415
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Debug.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 0000000..38d93db
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.dll
new file mode 100644
index 0000000..75e0fbf
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Logging.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Options.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Options.dll
new file mode 100644
index 0000000..69c35a5
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Options.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Primitives.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..c24f2a0
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Extensions.Primitives.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.Interop.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.Interop.dll
new file mode 100644
index 0000000..6785646
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.Interop.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.dll
new file mode 100644
index 0000000..9200a65
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Canvas.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.InteractiveExperiences.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.InteractiveExperiences.Projection.dll
new file mode 100644
index 0000000..418e6e4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.InteractiveExperiences.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Compatibility.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Compatibility.dll
new file mode 100644
index 0000000..92f343b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Compatibility.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Xaml.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Xaml.dll
new file mode 100644
index 0000000..4386d1d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.Xaml.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.dll
new file mode 100644
index 0000000..1ddbc9b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Controls.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Essentials.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Essentials.dll
new file mode 100644
index 0000000..3db6523
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Essentials.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll
new file mode 100644
index 0000000..6098264
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.dll
new file mode 100644
index 0000000..d486722
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.Graphics.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.dll
new file mode 100644
index 0000000..a329a9b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Maui.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WinUI.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WinUI.dll
new file mode 100644
index 0000000..8d94245
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WinUI.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppLifecycle.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppLifecycle.Projection.dll
new file mode 100644
index 0000000..6e00f4d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppLifecycle.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Builder.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Builder.Projection.dll
new file mode 100644
index 0000000..78a4fa2
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Builder.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Projection.dll
new file mode 100644
index 0000000..0c0a553
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.AppNotifications.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll
new file mode 100644
index 0000000..c139082
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.Projection.dll
new file mode 100644
index 0000000..1c6eb2f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll
new file mode 100644
index 0000000..6b15c41
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.PushNotifications.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.PushNotifications.Projection.dll
new file mode 100644
index 0000000..60c74ab
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.PushNotifications.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.SDK.NET.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.SDK.NET.dll
new file mode 100644
index 0000000..44d892c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.SDK.NET.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Security.AccessControl.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Security.AccessControl.Projection.dll
new file mode 100644
index 0000000..12f0497
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Security.AccessControl.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Power.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Power.Projection.dll
new file mode 100644
index 0000000..4d7fdef
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Power.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Projection.dll
new file mode 100644
index 0000000..a8e5f9c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.System.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.Projection.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.Projection.dll
new file mode 100644
index 0000000..4b91ada
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.Projection.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll
new file mode 100644
index 0000000..4c52feb
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.dll
new file mode 100644
index 0000000..a842247
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Release.Net.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Release.Net.dll
new file mode 100644
index 0000000..6612000
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Release.Net.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.build.appxrecipe b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.build.appxrecipe
new file mode 100644
index 0000000..efe6b92
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.build.appxrecipe
@@ -0,0 +1,474 @@
+
+
+
+ CAB318-1
+ Студент
+ Windows
+ 10.0
+ Windows 10.0
+ Debug|AnyCPU
+ x64
+ com.companyname.mobileapp
+ CN=User Name
+ D:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-windows10.0.19041.0\win10-x64\
+ CopyToDevice
+
+ false
+ false
+ C:\Program Files %28x86%29\Windows Kits\10\
+ D:\IP407\MobileAPP\MobileAPP\bin\Debug\net8.0-windows10.0.19041.0\win10-x64\AppX
+
+
+
+ AppxManifest.xml
+ true
+
+
+
+
+ resources.pri
+
+
+ MobileAPP.runtimeconfig.json
+
+
+ MobileAPP.dll
+
+
+ MobileAPP.exe
+
+
+ AboutAssets.txt
+
+
+ splashSplashScreen.scale-100.png
+
+
+ splashSplashScreen.scale-125.png
+
+
+ splashSplashScreen.scale-150.png
+
+
+ splashSplashScreen.scale-200.png
+
+
+ splashSplashScreen.scale-400.png
+
+
+ OpenSans-Regular.ttf
+
+
+ OpenSans-Semibold.ttf
+
+
+ appicon.ico
+
+
+ appiconLargeTile.scale-100.png
+
+
+ appiconLargeTile.scale-125.png
+
+
+ appiconLargeTile.scale-150.png
+
+
+ appiconLargeTile.scale-200.png
+
+
+ appiconLargeTile.scale-400.png
+
+
+ appiconLogo.altform-lightunplated_targetsize-16.png
+
+
+ appiconLogo.altform-lightunplated_targetsize-24.png
+
+
+ appiconLogo.altform-lightunplated_targetsize-256.png
+
+
+ appiconLogo.altform-lightunplated_targetsize-32.png
+
+
+ appiconLogo.altform-lightunplated_targetsize-48.png
+
+
+ appiconLogo.altform-unplated_targetsize-16.png
+
+
+ appiconLogo.altform-unplated_targetsize-24.png
+
+
+ appiconLogo.altform-unplated_targetsize-256.png
+
+
+ appiconLogo.altform-unplated_targetsize-32.png
+
+
+ appiconLogo.altform-unplated_targetsize-48.png
+
+
+ appiconLogo.scale-100.png
+
+
+ appiconLogo.scale-125.png
+
+
+ appiconLogo.scale-150.png
+
+
+ appiconLogo.scale-200.png
+
+
+ appiconLogo.scale-400.png
+
+
+ appiconLogo.targetsize-16.png
+
+
+ appiconLogo.targetsize-24.png
+
+
+ appiconLogo.targetsize-256.png
+
+
+ appiconLogo.targetsize-32.png
+
+
+ appiconLogo.targetsize-48.png
+
+
+ appiconMediumTile.scale-100.png
+
+
+ appiconMediumTile.scale-125.png
+
+
+ appiconMediumTile.scale-150.png
+
+
+ appiconMediumTile.scale-200.png
+
+
+ appiconMediumTile.scale-400.png
+
+
+ appiconSmallTile.scale-100.png
+
+
+ appiconSmallTile.scale-125.png
+
+
+ appiconSmallTile.scale-150.png
+
+
+ appiconSmallTile.scale-200.png
+
+
+ appiconSmallTile.scale-400.png
+
+
+ appiconStoreLogo.scale-100.png
+
+
+ appiconStoreLogo.scale-125.png
+
+
+ appiconStoreLogo.scale-150.png
+
+
+ appiconStoreLogo.scale-200.png
+
+
+ appiconStoreLogo.scale-400.png
+
+
+ appiconWideTile.scale-100.png
+
+
+ appiconWideTile.scale-125.png
+
+
+ appiconWideTile.scale-150.png
+
+
+ appiconWideTile.scale-200.png
+
+
+ appiconWideTile.scale-400.png
+
+
+ dotnet_bot.scale-100.png
+
+
+ dotnet_bot.scale-125.png
+
+
+ dotnet_bot.scale-150.png
+
+
+ dotnet_bot.scale-200.png
+
+
+ dotnet_bot.scale-400.png
+
+
+ MobileAPP.deps.json
+
+
+ Microsoft.Windows.SDK.NET.dll
+
+
+ WinRT.Runtime.dll
+
+
+ Microsoft.Extensions.Configuration.dll
+
+
+ Microsoft.Extensions.Configuration.Abstractions.dll
+
+
+ Microsoft.Extensions.DependencyInjection.dll
+
+
+ Microsoft.Extensions.DependencyInjection.Abstractions.dll
+
+
+ Microsoft.Extensions.Logging.dll
+
+
+ Microsoft.Extensions.Logging.Abstractions.dll
+
+
+ Microsoft.Extensions.Logging.Debug.dll
+
+
+ Microsoft.Extensions.Options.dll
+
+
+ Microsoft.Extensions.Primitives.dll
+
+
+ Microsoft.Graphics.Canvas.Interop.dll
+
+
+ Microsoft.Maui.Controls.Compatibility.dll
+
+
+ Microsoft.Maui.Controls.dll
+
+
+ Microsoft.Maui.Controls.Xaml.dll
+
+
+ Microsoft.Maui.dll
+
+
+ Microsoft.Maui.Essentials.dll
+
+
+ Microsoft.Maui.Graphics.dll
+
+
+ Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll
+
+
+ Microsoft.InteractiveExperiences.Projection.dll
+
+
+ Microsoft.WinUI.dll
+
+
+ Microsoft.Windows.AppLifecycle.Projection.dll
+
+
+ Microsoft.Windows.AppNotifications.Builder.Projection.dll
+
+
+ Microsoft.Windows.AppNotifications.Projection.dll
+
+
+ Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll
+
+
+ Microsoft.Windows.ApplicationModel.Resources.Projection.dll
+
+
+ Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll
+
+
+ Microsoft.Windows.PushNotifications.Projection.dll
+
+
+ Microsoft.Windows.Security.AccessControl.Projection.dll
+
+
+ Microsoft.Windows.System.Power.Projection.dll
+
+
+ Microsoft.Windows.System.Projection.dll
+
+
+ Microsoft.Windows.Widgets.Projection.dll
+
+
+ Microsoft.WindowsAppRuntime.Bootstrap.Net.dll
+
+
+ Microsoft.WindowsAppRuntime.Release.Net.dll
+
+
+ ar\Microsoft.Maui.Controls.resources.dll
+
+
+ ca\Microsoft.Maui.Controls.resources.dll
+
+
+ cs\Microsoft.Maui.Controls.resources.dll
+
+
+ da\Microsoft.Maui.Controls.resources.dll
+
+
+ de\Microsoft.Maui.Controls.resources.dll
+
+
+ el\Microsoft.Maui.Controls.resources.dll
+
+
+ es\Microsoft.Maui.Controls.resources.dll
+
+
+ fi\Microsoft.Maui.Controls.resources.dll
+
+
+ fr\Microsoft.Maui.Controls.resources.dll
+
+
+ he\Microsoft.Maui.Controls.resources.dll
+
+
+ hi\Microsoft.Maui.Controls.resources.dll
+
+
+ hr\Microsoft.Maui.Controls.resources.dll
+
+
+ hu\Microsoft.Maui.Controls.resources.dll
+
+
+ id\Microsoft.Maui.Controls.resources.dll
+
+
+ it\Microsoft.Maui.Controls.resources.dll
+
+
+ ja\Microsoft.Maui.Controls.resources.dll
+
+
+ ko\Microsoft.Maui.Controls.resources.dll
+
+
+ ms\Microsoft.Maui.Controls.resources.dll
+
+
+ nb\Microsoft.Maui.Controls.resources.dll
+
+
+ nl\Microsoft.Maui.Controls.resources.dll
+
+
+ pl\Microsoft.Maui.Controls.resources.dll
+
+
+ pt-BR\Microsoft.Maui.Controls.resources.dll
+
+
+ pt\Microsoft.Maui.Controls.resources.dll
+
+
+ ro\Microsoft.Maui.Controls.resources.dll
+
+
+ ru\Microsoft.Maui.Controls.resources.dll
+
+
+ sk\Microsoft.Maui.Controls.resources.dll
+
+
+ sv\Microsoft.Maui.Controls.resources.dll
+
+
+ th\Microsoft.Maui.Controls.resources.dll
+
+
+ tr\Microsoft.Maui.Controls.resources.dll
+
+
+ uk\Microsoft.Maui.Controls.resources.dll
+
+
+ vi\Microsoft.Maui.Controls.resources.dll
+
+
+ zh-HK\Microsoft.Maui.Controls.resources.dll
+
+
+ zh-Hans\Microsoft.Maui.Controls.resources.dll
+
+
+ zh-Hant\Microsoft.Maui.Controls.resources.dll
+
+
+ Microsoft.Graphics.Canvas.dll
+
+
+ Microsoft.WindowsAppRuntime.Bootstrap.dll
+
+
+ Microsoft.Maui.Controls.Compatibility.pri
+
+
+ Microsoft.Maui.Controls.pri
+
+
+ Microsoft.Maui.pri
+
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ x86
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ win32
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ x64
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-x64\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+ Microsoft.WindowsAppRuntime.1.3
+ 3000.934.1904.0
+ arm64
+ Name = Microsoft.WindowsAppRuntime.1.3, MinVersion = 3000.934.1904.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27
+ C:\Users\Student\.nuget\packages\microsoft.windowsappsdk\1.3.230724000\buildTransitive\..\tools\MSIX\win10-arm64\Microsoft.WindowsAppRuntime.1.3.msix
+
+
+
+
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.deps.json b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.deps.json
new file mode 100644
index 0000000..602b3aa
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.deps.json
@@ -0,0 +1,608 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0/win10-x64",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {},
+ ".NETCoreApp,Version=v8.0/win10-x64": {
+ "MobileAPP/1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Debug": "8.0.0",
+ "Microsoft.Maui.Controls": "8.0.3",
+ "Microsoft.Maui.Controls.Compatibility": "8.0.3",
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref": "10.0.19041.31"
+ },
+ "runtime": {
+ "MobileAPP.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.31": {
+ "runtime": {
+ "Microsoft.Windows.SDK.NET.dll": {
+ "assemblyVersion": "10.0.19041.24",
+ "fileVersion": "10.0.19041.31"
+ },
+ "WinRT.Runtime.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.4.44211"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Graphics.Win2D/1.0.5.1": {
+ "dependencies": {
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Graphics.Canvas.Interop.dll": {
+ "assemblyVersion": "1.0.26.0",
+ "fileVersion": "1.0.26.0"
+ }
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {
+ "fileVersion": "1.0.5.0"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Controls.Build.Tasks": "8.0.3",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3",
+ "Microsoft.Maui.Resizetizer": "8.0.3"
+ }
+ },
+ "Microsoft.Maui.Controls.Build.Tasks/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3"
+ }
+ },
+ "Microsoft.Maui.Controls.Compatibility/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Maui.Controls": "8.0.3",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Controls.Xaml": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Compatibility.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls.Core/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Maui.Core": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ },
+ "resources": {
+ "lib/net8.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ar"
+ },
+ "lib/net8.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ca"
+ },
+ "lib/net8.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net8.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "da"
+ },
+ "lib/net8.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net8.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "el"
+ },
+ "lib/net8.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net8.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "fi"
+ },
+ "lib/net8.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net8.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "he"
+ },
+ "lib/net8.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hi"
+ },
+ "lib/net8.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hr"
+ },
+ "lib/net8.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "hu"
+ },
+ "lib/net8.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "id"
+ },
+ "lib/net8.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net8.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net8.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net8.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ms"
+ },
+ "lib/net8.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "nb"
+ },
+ "lib/net8.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "nl"
+ },
+ "lib/net8.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net8.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net8.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "pt"
+ },
+ "lib/net8.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ro"
+ },
+ "lib/net8.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net8.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "sk"
+ },
+ "lib/net8.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "sv"
+ },
+ "lib/net8.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "th"
+ },
+ "lib/net8.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net8.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "uk"
+ },
+ "lib/net8.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "vi"
+ },
+ "lib/net8.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-HK"
+ },
+ "lib/net8.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net8.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Maui.Controls.Xaml/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Maui.Controls.Core": "8.0.3",
+ "Microsoft.Maui.Core": "8.0.3"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Core/8.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.Maui.Essentials": "8.0.3",
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "8.0.3",
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Essentials/8.0.3": {
+ "dependencies": {
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Graphics/8.0.3": {
+ "dependencies": {
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.3": {
+ "dependencies": {
+ "Microsoft.Graphics.Win2D": "1.0.5.1",
+ "Microsoft.Maui.Graphics": "8.0.3",
+ "Microsoft.WindowsAppSDK": "1.3.230724000"
+ },
+ "runtime": {
+ "lib/net8.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "8.0.1.2"
+ }
+ }
+ },
+ "Microsoft.Maui.Resizetizer/8.0.3": {},
+ "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {},
+ "Microsoft.WindowsAppSDK/1.3.230724000": {
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
+ },
+ "runtime": {
+ "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.22623.1051"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "3.0.0.2307"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ },
+ "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Release.Net.dll": {
+ "assemblyVersion": "1.3.0.0",
+ "fileVersion": "1.3.0.0"
+ }
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
+ "fileVersion": "1.3.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "MobileAPP/1.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.Windows.SDK.NET.Ref/10.0.19041.31": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
+ "path": "microsoft.extensions.configuration/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
+ "path": "microsoft.extensions.configuration.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
+ "path": "microsoft.extensions.dependencyinjection/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
+ "path": "microsoft.extensions.logging/8.0.0",
+ "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
+ "path": "microsoft.extensions.logging.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
+ "path": "microsoft.extensions.logging.debug/8.0.0",
+ "hashPath": "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
+ "path": "microsoft.extensions.options/8.0.0",
+ "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Graphics.Win2D/1.0.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9DVEVvyQWWz8kqhsFBAx9Zv4KRIAcmxuT7kFpK1Fgh6czSiMB+CQW0DlhZXT44Mtv41FRXG47lhEv+7a2YyiLA==",
+ "path": "microsoft.graphics.win2d/1.0.5.1",
+ "hashPath": "microsoft.graphics.win2d.1.0.5.1.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-u4758dDYaci/A+SYZxxOw1GOYIOt2erydMTAbhzIOUslki1VLuF7fdABlaow/AobbctOHHi48qdGZGVi4M7ALg==",
+ "path": "microsoft.maui.controls/8.0.3",
+ "hashPath": "microsoft.maui.controls.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Build.Tasks/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MneJP5CnRkEelcitnbKoXw7E7SHo2GxkWZK+BX/MvDW3ATMMtuv6zkkBmQiiCcObjEnObpNZkwdiJf1L3dslIA==",
+ "path": "microsoft.maui.controls.build.tasks/8.0.3",
+ "hashPath": "microsoft.maui.controls.build.tasks.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Compatibility/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7qMC0eREbrj9hVVVXy6b15MNoOcXrXbXqAJ8E+5ahAGH6HwYFPkCPXwfL9dhaXWhzLaxrVD0vHH2qVg1kwFl8A==",
+ "path": "microsoft.maui.controls.compatibility/8.0.3",
+ "hashPath": "microsoft.maui.controls.compatibility.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Core/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-53cAExyv1Lw+Dax85GRe6233OlPUZRbhoNbk7qN0so1novS7zRdtj3BGtsVJiWeA/20oU4lRqkkLphNLmp2pAA==",
+ "path": "microsoft.maui.controls.core/8.0.3",
+ "hashPath": "microsoft.maui.controls.core.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Controls.Xaml/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ka8DToOqVk+7Wht674DOU9JAl4zfILmtKmFKtmMsF8YZhbazKxgx4kvRB7HUPR0pBsnhrUs3zsX5zeFYjnYYZQ==",
+ "path": "microsoft.maui.controls.xaml/8.0.3",
+ "hashPath": "microsoft.maui.controls.xaml.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Core/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4KP8EM/sI1aCLHMB6lZP3NE6vtq0ShlwZwqCCpQzWaDjKHa5K2PPagtOjzpntYFTQw3cE+sJEOk1xd4JRTELtw==",
+ "path": "microsoft.maui.core/8.0.3",
+ "hashPath": "microsoft.maui.core.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Essentials/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VHI2a4QHYoc31xMkFDNuhMWmhxe9zYnHlPQXvj6e23w0GeNjSCiw+X1H3cb0SMuiSN6tK8HJrsyphxS3J50MHQ==",
+ "path": "microsoft.maui.essentials/8.0.3",
+ "hashPath": "microsoft.maui.essentials.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Graphics/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RWXI/VKfxRljnzME5v2TgiT5N/Q/phpaCqFnz3V0NSAGey5GAPwzuH3W5ryU0fVgds9QPgukDeuGRn7hTD/MWw==",
+ "path": "microsoft.maui.graphics/8.0.3",
+ "hashPath": "microsoft.maui.graphics.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/wf8PRqwPecWkTob62Gkc5KBCu9kVmHoy1UAinEcSeHu0KYVaCJ3zXBkS0OSBkgGm7JEon4Ruvg6i+p/GJfjFw==",
+ "path": "microsoft.maui.graphics.win2d.winui.desktop/8.0.3",
+ "hashPath": "microsoft.maui.graphics.win2d.winui.desktop.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Maui.Resizetizer/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SBaeM/1AF8ajCbQfFM15aN1IX+GQUw/V9NuqZV3is+Z202dfzz+bIZmBGtvEGcV4ik4YdjtQe2+vtJq0GLYTPw==",
+ "path": "microsoft.maui.resizetizer/8.0.3",
+ "hashPath": "microsoft.maui.resizetizer.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA==",
+ "path": "microsoft.windows.sdk.buildtools/10.0.22621.756",
+ "hashPath": "microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512"
+ },
+ "Microsoft.WindowsAppSDK/1.3.230724000": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cCw26h8Uh8IjDMOUzHaR7/IKxEVJxuqEOgBlmLj0Pu1wDezZb9J0Wz53Vop10FQUOZaTfnwDcHavyPTxgkwbKQ==",
+ "path": "microsoft.windowsappsdk/1.3.230724000",
+ "hashPath": "microsoft.windowsappsdk.1.3.230724000.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.dll
new file mode 100644
index 0000000..cfc1f81
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.exe b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.exe
new file mode 100644
index 0000000..4545298
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.exe differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.pdb b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.pdb
new file mode 100644
index 0000000..ea62d34
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.pdb differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.runtimeconfig.json b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.runtimeconfig.json
new file mode 100644
index 0000000..89e676c
--- /dev/null
+++ b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/MobileAPP.runtimeconfig.json
@@ -0,0 +1,13 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
+ "System.Runtime.Loader.UseRidGraph": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.xbf b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.xbf
new file mode 100644
index 0000000..2a9805f
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/Platforms/Windows/App.xbf differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/WinRT.Runtime.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/WinRT.Runtime.dll
new file mode 100644
index 0000000..cd3b760
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/WinRT.Runtime.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ar/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ar/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..2198731
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ar/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ca/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ca/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..b37382b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ca/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/cs/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/cs/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..33e158c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/cs/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/da/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/da/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c686a77
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/da/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/de/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/de/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..91989d7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/de/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/el/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/el/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..0618c28
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/el/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/es/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/es/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..bc13175
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/es/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..55e105d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..d0f0525
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/fr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/he/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/he/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c82bdd4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/he/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c381b42
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3e7432c
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hu/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hu/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..cb9e61e
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/hu/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/id/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/id/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..062f050
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/id/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/it/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/it/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..93da64a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/it/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ja/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ja/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..e7c8133
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ja/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ko/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ko/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..edf95ea
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ko/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ms/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ms/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c3323eb
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ms/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nb/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nb/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..03c9055
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nb/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nl/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nl/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..5d10e4d
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/nl/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pl/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pl/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..266cff9
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pl/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3a6610b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..a6fc7fa
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/pt/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/resources.pri b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/resources.pri
new file mode 100644
index 0000000..bb65de7
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/resources.pri differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ro/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ro/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..996fcc4
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ro/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ru/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ru/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3b77660
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/ru/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sk/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sk/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..79cb5d6
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sk/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sv/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sv/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..c3552ba
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/sv/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/th/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/th/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..938149a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/th/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/tr/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/tr/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..3b70c0a
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/tr/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/uk/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/uk/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..eb257dc
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/uk/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/vi/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/vi/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..f76cd99
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/vi/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-HK/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-HK/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..21a267b
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-HK/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hans/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hans/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..0074661
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hans/Microsoft.Maui.Controls.resources.dll differ
diff --git a/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hant/Microsoft.Maui.Controls.resources.dll b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hant/Microsoft.Maui.Controls.resources.dll
new file mode 100644
index 0000000..6ca81e2
Binary files /dev/null and b/bin/Debug/net8.0-windows10.0.19041.0/win10-x64/zh-Hant/Microsoft.Maui.Controls.resources.dll differ
diff --git a/obj/Debug/net8.0-android/MobileAPP.GlobalUsings.g.cs b/obj/Debug/net8.0-android/MobileAPP.GlobalUsings.g.cs
new file mode 100644
index 0000000..a599ed6
--- /dev/null
+++ b/obj/Debug/net8.0-android/MobileAPP.GlobalUsings.g.cs
@@ -0,0 +1,26 @@
+//
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Maui;
+global using global::Microsoft.Maui.Accessibility;
+global using global::Microsoft.Maui.ApplicationModel;
+global using global::Microsoft.Maui.ApplicationModel.Communication;
+global using global::Microsoft.Maui.ApplicationModel.DataTransfer;
+global using global::Microsoft.Maui.Authentication;
+global using global::Microsoft.Maui.Controls;
+global using global::Microsoft.Maui.Controls.Hosting;
+global using global::Microsoft.Maui.Controls.Xaml;
+global using global::Microsoft.Maui.Devices;
+global using global::Microsoft.Maui.Devices.Sensors;
+global using global::Microsoft.Maui.Dispatching;
+global using global::Microsoft.Maui.Graphics;
+global using global::Microsoft.Maui.Hosting;
+global using global::Microsoft.Maui.Media;
+global using global::Microsoft.Maui.Networking;
+global using global::Microsoft.Maui.Storage;
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net8.0-android/MobileAPP.assets.cache b/obj/Debug/net8.0-android/MobileAPP.assets.cache
new file mode 100644
index 0000000..7c1f982
Binary files /dev/null and b/obj/Debug/net8.0-android/MobileAPP.assets.cache differ
diff --git a/obj/Debug/net8.0-android/MobileAPP.csproj.AssemblyReference.cache b/obj/Debug/net8.0-android/MobileAPP.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..321bf82
Binary files /dev/null and b/obj/Debug/net8.0-android/MobileAPP.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net8.0-android/case_map.txt b/obj/Debug/net8.0-android/case_map.txt
new file mode 100644
index 0000000..fc54e9e
--- /dev/null
+++ b/obj/Debug/net8.0-android/case_map.txt
@@ -0,0 +1,23 @@
+animation\enterfromleft;animation\enterfromleft
+animation\enterfromright;animation\enterfromright
+animation\exittoleft;animation\exittoleft
+animation\exittoright;animation\exittoright
+animation\nav_default_enter_anim;animation\nav_default_enter_anim
+animation\nav_default_exit_anim;animation\nav_default_exit_anim
+animation\nav_default_pop_enter_anim;animation\nav_default_pop_enter_anim
+animation\nav_default_pop_exit_anim;animation\nav_default_pop_exit_anim
+drawable\maui_splash;drawable\maui_splash
+drawable\maui_splash_image;drawable\maui_splash_image
+layout\drawer_layout;layout\drawer_layout
+layout\flyoutcontent;compatibility\Android\Resources\layout\flyoutcontent
+layout\fragment_backstack;layout\fragment_backstack
+layout\navigationlayout;layout\navigationlayout
+layout\shellcontent;compatibility\Android\Resources\layout\shellcontent
+layout\tabbar;android\Resources\layout\Tabbar
+layout\toolbar;android\Resources\layout\Toolbar
+values\attr;values\attr
+values\attrs;android\Resources\values\attrs
+values\colors;values\colors
+values\strings;values\strings
+values\styles;android\Resources\values\styles
+xml\microsoft_maui_essentials_fileprovider_file_paths;resources\xml\microsoft_maui_essentials_fileprovider_file_paths
diff --git a/obj/Debug/net8.0-android/designtime/build.props b/obj/Debug/net8.0-android/designtime/build.props
new file mode 100644
index 0000000..e76c56d
--- /dev/null
+++ b/obj/Debug/net8.0-android/designtime/build.props
@@ -0,0 +1,32 @@
+aotassemblies=false
+androidaddkeepalives=
+androidaotmode=interpreter
+androidembedprofilers=
+androidenableprofiledaot=
+androiddextool=d8
+androidlinktool=
+androidlinkresources=
+androidpackageformat=apk
+embedassembliesintoapk=false
+androidlinkmode=none
+androidlinkskip=
+androidsdkbuildtoolsversion=32.0.0
+androidsdkpath=d:\android\android-sdk\
+androidndkpath=
+javasdkpath=c:\program files (x86)\android\openjdk\jdk-17.0.8.101-hotspot\
+androidsequencepointsmode=none
+androidnetsdkversion=34.0.43
+monosymbolarchive=false
+androiduselatestplatformsdk=false
+targetframeworkversion=v8.0
+androidcreatepackageperabi=
+androidgeneratejnimarshalmethods=false
+os=windows_nt
+androidincludedebugsymbols=true
+androidpackagenamingpolicy=lowercasecrc64
+_nugetassetstimestamp=638763294744403084
+typemapkind=strings-asm
+androidsupportedabis=armeabi-v7a;arm64-v8a;x86;x86_64
+androidmanifestplaceholders=
+projectfullpath=d:\ip407\mobileapp\mobileapp\mobileapp.csproj
+androidusedesignerassembly=true
diff --git a/obj/Debug/net8.0-android/designtime/libraryimports.cache b/obj/Debug/net8.0-android/designtime/libraryimports.cache
new file mode 100644
index 0000000..693fe5a
--- /dev/null
+++ b/obj/Debug/net8.0-android/designtime/libraryimports.cache
@@ -0,0 +1 @@
+obj\Debug\net8.0-android\lp\100\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\101\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\102\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\103\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\104\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\105\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\106\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\107\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\108\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\109\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\110\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\111\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\112\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\113\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\114\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\115\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\116\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\117\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\118\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\119\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\120\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\121\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\122\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\123\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\124\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\125\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\126\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\127\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\128\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\129\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\130\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\131\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\132\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\133\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\134\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\135\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\136\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\137\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\138\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\139\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\140\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\141\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\142\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\143\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\144\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\145\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\146\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\147\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\148\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\149\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\150\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\155\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\90\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\91\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\92\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\93\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\94\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\95\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\96\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\97\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\98\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\99\jl\AndroidManifest.xmlobj\Debug\net8.0-android\lp\100\jl\classes.jarobj\Debug\net8.0-android\lp\101\jl\classes.jarobj\Debug\net8.0-android\lp\102\jl\classes.jarobj\Debug\net8.0-android\lp\103\jl\classes.jarobj\Debug\net8.0-android\lp\104\jl\classes.jarobj\Debug\net8.0-android\lp\105\jl\classes.jarobj\Debug\net8.0-android\lp\106\jl\classes.jarobj\Debug\net8.0-android\lp\107\jl\classes.jarobj\Debug\net8.0-android\lp\108\jl\classes.jarobj\Debug\net8.0-android\lp\109\jl\classes.jarobj\Debug\net8.0-android\lp\110\jl\classes.jarobj\Debug\net8.0-android\lp\111\jl\classes.jarobj\Debug\net8.0-android\lp\112\jl\classes.jarobj\Debug\net8.0-android\lp\113\jl\classes.jarobj\Debug\net8.0-android\lp\114\jl\classes.jarobj\Debug\net8.0-android\lp\115\jl\classes.jarobj\Debug\net8.0-android\lp\116\jl\classes.jarobj\Debug\net8.0-android\lp\117\jl\classes.jarobj\Debug\net8.0-android\lp\118\jl\classes.jarobj\Debug\net8.0-android\lp\119\jl\classes.jarobj\Debug\net8.0-android\lp\120\jl\classes.jarobj\Debug\net8.0-android\lp\120\jl\libs\repackaged.jarobj\Debug\net8.0-android\lp\121\jl\classes.jarobj\Debug\net8.0-android\lp\122\jl\classes.jarobj\Debug\net8.0-android\lp\123\jl\classes.jarobj\Debug\net8.0-android\lp\124\jl\classes.jarobj\Debug\net8.0-android\lp\125\jl\classes.jarobj\Debug\net8.0-android\lp\126\jl\classes.jarobj\Debug\net8.0-android\lp\127\jl\classes.jarobj\Debug\net8.0-android\lp\128\jl\classes.jarobj\Debug\net8.0-android\lp\129\jl\classes.jarobj\Debug\net8.0-android\lp\130\jl\classes.jarobj\Debug\net8.0-android\lp\131\jl\classes.jarobj\Debug\net8.0-android\lp\132\jl\classes.jarobj\Debug\net8.0-android\lp\133\jl\classes.jarobj\Debug\net8.0-android\lp\134\jl\classes.jarobj\Debug\net8.0-android\lp\135\jl\classes.jarobj\Debug\net8.0-android\lp\136\jl\classes.jarobj\Debug\net8.0-android\lp\137\jl\classes.jarobj\Debug\net8.0-android\lp\138\jl\classes.jarobj\Debug\net8.0-android\lp\139\jl\classes.jarobj\Debug\net8.0-android\lp\140\jl\classes.jarobj\Debug\net8.0-android\lp\141\jl\classes.jarobj\Debug\net8.0-android\lp\142\jl\classes.jarobj\Debug\net8.0-android\lp\143\jl\classes.jarobj\Debug\net8.0-android\lp\144\jl\classes.jarobj\Debug\net8.0-android\lp\145\jl\classes.jarobj\Debug\net8.0-android\lp\146\jl\classes.jarobj\Debug\net8.0-android\lp\147\jl\classes.jarobj\Debug\net8.0-android\lp\148\jl\classes.jarobj\Debug\net8.0-android\lp\149\jl\classes.jarobj\Debug\net8.0-android\lp\150\jl\classes.jarobj\Debug\net8.0-android\lp\151\jl\libs\ED64959F88B22E6D.jarobj\Debug\net8.0-android\lp\152\jl\libs\2E7FD15AFA9B216B.jarobj\Debug\net8.0-android\lp\155\jl\classes.jarobj\Debug\net8.0-android\lp\158\jl\libs\F975D0960055A5E3.jarobj\Debug\net8.0-android\lp\159\jl\libs\B71CFF5D5A0B3AEB.jarobj\Debug\net8.0-android\lp\90\jl\classes.jarobj\Debug\net8.0-android\lp\91\jl\classes.jarobj\Debug\net8.0-android\lp\92\jl\classes.jarobj\Debug\net8.0-android\lp\93\jl\classes.jarobj\Debug\net8.0-android\lp\94\jl\classes.jarobj\Debug\net8.0-android\lp\95\jl\classes.jarobj\Debug\net8.0-android\lp\96\jl\classes.jarobj\Debug\net8.0-android\lp\97\jl\classes.jarobj\Debug\net8.0-android\lp\98\jl\classes.jarobj\Debug\net8.0-android\lp\99\jl\classes.jar
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache b/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache
new file mode 100644
index 0000000..5dafa32
--- /dev/null
+++ b/obj/Debug/net8.0-android/designtime/libraryprojectimports.cache
@@ -0,0 +1 @@
+D:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\90\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\91\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\92\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\93\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\94\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\95\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\96\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\97\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\98\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\99\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\100\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\101\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\102\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\103\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\104\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\105\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\106\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\107\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\108\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\109\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\110\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\111\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\112\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\113\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\114\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\115\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\116\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\117\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\118\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\119\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\120\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\120\jl\libs\repackaged.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\121\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\122\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\123\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\124\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\125\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\126\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\127\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\128\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\129\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\130\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\131\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\132\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\133\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\134\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\135\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\136\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\137\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\138\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\139\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\140\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\141\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\142\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\143\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\144\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\145\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\146\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\147\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\148\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\149\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\150\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\151\jl\libs\ED64959F88B22E6D.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\152\jl\libs\2E7FD15AFA9B216B.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\155\jl\classes.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\158\jl\libs\F975D0960055A5E3.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\159\jl\libs\B71CFF5D5A0B3AEB.jarD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\90\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\91\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\92\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\93\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\94\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\95\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\96\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\97\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\98\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\99\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\100\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\101\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\102\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\103\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\104\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\105\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\106\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\107\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\108\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\109\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\110\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\111\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\112\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\113\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\114\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\115\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\116\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\117\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\118\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\119\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\120\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\121\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\122\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\123\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\124\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\125\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\126\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\127\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\128\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\129\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\130\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\131\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\132\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\133\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\134\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\135\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\136\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\137\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\138\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\139\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\140\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\141\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\142\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\143\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\144\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\145\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\146\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\147\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\148\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\149\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\150\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\153\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\154\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\155\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\156\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\157\jl\resD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\90.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\91.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\92.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\93.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\94.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\95.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\96.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\97.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\98.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\99.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\100.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\101.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\102.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\103.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\104.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\105.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\106.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\107.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\108.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\109.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\110.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\111.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\112.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\113.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\114.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\115.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\116.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\117.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\118.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\119.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\120.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\121.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\122.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\123.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\124.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\125.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\126.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\127.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\128.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\129.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\130.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\131.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\132.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\133.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\134.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\135.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\136.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\137.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\138.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\139.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\140.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\141.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\142.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\143.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\144.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\145.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\146.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\147.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\148.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\149.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\150.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\153.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\154.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\155.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\156.stampD:\IP407\MobileAPP\MobileAPP\obj\Debug\net8.0-android\lp\157.stamp
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/100.stamp b/obj/Debug/net8.0-android/lp/100.stamp
new file mode 100644
index 0000000..0497907
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/100.stamp
@@ -0,0 +1 @@
+78E23953B2E72E7F
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml
new file mode 100644
index 0000000..65ceb76
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/100/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/100/jl/R.txt b/obj/Debug/net8.0-android/lp/100/jl/R.txt
new file mode 100644
index 0000000..f1228a5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/100/jl/R.txt
@@ -0,0 +1,131 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f080001
+int dimen compat_button_inset_vertical_material 0x7f080002
+int dimen compat_button_padding_horizontal_material 0x7f080003
+int dimen compat_button_padding_vertical_material 0x7f080004
+int dimen compat_control_corner_material 0x7f080005
+int dimen compat_notification_large_icon_max_height 0x7f080006
+int dimen compat_notification_large_icon_max_width 0x7f080007
+int dimen notification_action_icon_size 0x7f080008
+int dimen notification_action_text_size 0x7f080009
+int dimen notification_big_circle_margin 0x7f08000a
+int dimen notification_content_margin_start 0x7f08000b
+int dimen notification_large_icon_height 0x7f08000c
+int dimen notification_large_icon_width 0x7f08000d
+int dimen notification_main_column_padding_top 0x7f08000e
+int dimen notification_media_narrow_margin 0x7f08000f
+int dimen notification_right_icon_size 0x7f080010
+int dimen notification_right_side_padding_top 0x7f080011
+int dimen notification_small_icon_background_padding 0x7f080012
+int dimen notification_small_icon_size_as_large 0x7f080013
+int dimen notification_subtext_size 0x7f080014
+int dimen notification_top_pad 0x7f080015
+int dimen notification_top_pad_large_text 0x7f080016
+int drawable notification_action_background 0x7f090001
+int drawable notification_bg 0x7f090002
+int drawable notification_bg_low 0x7f090003
+int drawable notification_bg_low_normal 0x7f090004
+int drawable notification_bg_low_pressed 0x7f090005
+int drawable notification_bg_normal 0x7f090006
+int drawable notification_bg_normal_pressed 0x7f090007
+int drawable notification_icon_background 0x7f090008
+int drawable notification_template_icon_bg 0x7f090009
+int drawable notification_template_icon_low_bg 0x7f09000a
+int drawable notification_tile_bg 0x7f09000b
+int drawable notify_panel_notification_icon_bg 0x7f09000c
+int id action_container 0x7f0c0001
+int id action_divider 0x7f0c0002
+int id action_image 0x7f0c0003
+int id action_text 0x7f0c0004
+int id actions 0x7f0c0005
+int id async 0x7f0c0006
+int id blocking 0x7f0c0007
+int id chronometer 0x7f0c0008
+int id forever 0x7f0c0009
+int id icon 0x7f0c000a
+int id icon_group 0x7f0c000b
+int id info 0x7f0c000c
+int id italic 0x7f0c000d
+int id line1 0x7f0c000e
+int id line3 0x7f0c000f
+int id normal 0x7f0c0010
+int id notification_background 0x7f0c0011
+int id notification_main_column 0x7f0c0012
+int id notification_main_column_container 0x7f0c0013
+int id right_icon 0x7f0c0014
+int id right_side 0x7f0c0015
+int id tag_transition_group 0x7f0c0016
+int id tag_unhandled_key_event_manager 0x7f0c0017
+int id tag_unhandled_key_listeners 0x7f0c0018
+int id text 0x7f0c0019
+int id text2 0x7f0c001a
+int id time 0x7f0c001b
+int id title 0x7f0c001c
+int integer status_bar_notification_info_maxnum 0x7f0d0001
+int layout notification_action 0x7f0f0001
+int layout notification_action_tombstone 0x7f0f0002
+int layout notification_template_custom_big 0x7f0f0003
+int layout notification_template_icon_group 0x7f0f0004
+int layout notification_template_part_chronometer 0x7f0f0005
+int layout notification_template_part_time 0x7f0f0006
+int string status_bar_notification_info_overflow 0x7f150001
+int style TextAppearance_Compat_Notification 0x7f160001
+int style TextAppearance_Compat_Notification_Info 0x7f160002
+int style TextAppearance_Compat_Notification_Line2 0x7f160003
+int style TextAppearance_Compat_Notification_Time 0x7f160004
+int style TextAppearance_Compat_Notification_Title 0x7f160005
+int style Widget_Compat_NotificationActionContainer 0x7f160006
+int style Widget_Compat_NotificationActionText 0x7f160007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/100/jl/classes.jar b/obj/Debug/net8.0-android/lp/100/jl/classes.jar
new file mode 100644
index 0000000..6ccda32
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/100/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/101.stamp b/obj/Debug/net8.0-android/lp/101.stamp
new file mode 100644
index 0000000..211d1b7
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101.stamp
@@ -0,0 +1 @@
+22230B73D906B544
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml
new file mode 100644
index 0000000..d9ff51d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/101/jl/R.txt b/obj/Debug/net8.0-android/lp/101/jl/R.txt
new file mode 100644
index 0000000..fc9af07
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101/jl/R.txt
@@ -0,0 +1 @@
+int id view_tree_saved_state_registry_owner 0x0
diff --git a/obj/Debug/net8.0-android/lp/101/jl/classes.jar b/obj/Debug/net8.0-android/lp/101/jl/classes.jar
new file mode 100644
index 0000000..b73828b
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/101/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/101/jl/proguard.txt b/obj/Debug/net8.0-android/lp/101/jl/proguard.txt
new file mode 100644
index 0000000..61105c0
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101/jl/proguard.txt
@@ -0,0 +1,17 @@
+# Copyright (C) 2019 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+-keepclassmembers,allowobfuscation class * implements androidx.savedstate.SavedStateRegistry$AutoRecreated {
+ ();
+}
diff --git a/obj/Debug/net8.0-android/lp/101/jl/public.txt b/obj/Debug/net8.0-android/lp/101/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/101/jl/res.zip b/obj/Debug/net8.0-android/lp/101/jl/res.zip
new file mode 100644
index 0000000..6cc47cd
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/101/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml
new file mode 100644
index 0000000..b0dddbd
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/101/jl/res/values/values.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/102.stamp b/obj/Debug/net8.0-android/lp/102.stamp
new file mode 100644
index 0000000..25e5d6f
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/102.stamp
@@ -0,0 +1 @@
+E25D53FF83D2E93F
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml
new file mode 100644
index 0000000..3bb3036
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/102/jl/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/102/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/102/jl/R.txt b/obj/Debug/net8.0-android/lp/102/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/102/jl/classes.jar b/obj/Debug/net8.0-android/lp/102/jl/classes.jar
new file mode 100644
index 0000000..83fbb56
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/102/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/102/jl/public.txt b/obj/Debug/net8.0-android/lp/102/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/102/jl/res.zip b/obj/Debug/net8.0-android/lp/102/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/102/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/102/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/103.stamp b/obj/Debug/net8.0-android/lp/103.stamp
new file mode 100644
index 0000000..a88b913
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/103.stamp
@@ -0,0 +1 @@
+04FF5580150F8ECB
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml
new file mode 100644
index 0000000..b59cb6a
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/103/jl/AndroidManifest.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..1dd4b2c
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=32
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/103/jl/R.txt b/obj/Debug/net8.0-android/lp/103/jl/R.txt
new file mode 100644
index 0000000..03dcd8b
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/103/jl/R.txt
@@ -0,0 +1,2 @@
+int id is_pooling_container_tag 0x0
+int id pooling_container_listener_holder_tag 0x0
diff --git a/obj/Debug/net8.0-android/lp/103/jl/classes.jar b/obj/Debug/net8.0-android/lp/103/jl/classes.jar
new file mode 100644
index 0000000..dcde0b9
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/103/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/103/jl/public.txt b/obj/Debug/net8.0-android/lp/103/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/103/jl/res.zip b/obj/Debug/net8.0-android/lp/103/jl/res.zip
new file mode 100644
index 0000000..b26e437
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/103/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml
new file mode 100644
index 0000000..62e9f44
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/103/jl/res/values/values.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/104.stamp b/obj/Debug/net8.0-android/lp/104.stamp
new file mode 100644
index 0000000..d120a0e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104.stamp
@@ -0,0 +1 @@
+5FF27023FD0703B5
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml
new file mode 100644
index 0000000..d9ea956
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/104/jl/R.txt b/obj/Debug/net8.0-android/lp/104/jl/R.txt
new file mode 100644
index 0000000..00ee528
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/R.txt
@@ -0,0 +1,30 @@
+int attr fastScrollEnabled 0x0
+int attr fastScrollHorizontalThumbDrawable 0x0
+int attr fastScrollHorizontalTrackDrawable 0x0
+int attr fastScrollVerticalThumbDrawable 0x0
+int attr fastScrollVerticalTrackDrawable 0x0
+int attr layoutManager 0x0
+int attr recyclerViewStyle 0x0
+int attr reverseLayout 0x0
+int attr spanCount 0x0
+int attr stackFromEnd 0x0
+int dimen fastscroll_default_thickness 0x0
+int dimen fastscroll_margin 0x0
+int dimen fastscroll_minimum_range 0x0
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x0
+int dimen item_touch_helper_swipe_escape_max_velocity 0x0
+int dimen item_touch_helper_swipe_escape_velocity 0x0
+int id item_touch_helper_previous_elevation 0x0
+int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable RecyclerView_android_clipToPadding 0
+int styleable RecyclerView_android_descendantFocusability 1
+int styleable RecyclerView_android_orientation 2
+int styleable RecyclerView_fastScrollEnabled 3
+int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
+int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
+int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
+int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
+int styleable RecyclerView_layoutManager 8
+int styleable RecyclerView_reverseLayout 9
+int styleable RecyclerView_spanCount 10
+int styleable RecyclerView_stackFromEnd 11
diff --git a/obj/Debug/net8.0-android/lp/104/jl/annotations.zip b/obj/Debug/net8.0-android/lp/104/jl/annotations.zip
new file mode 100644
index 0000000..5c549bc
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/104/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt
new file mode 100644
index 0000000..b28edbe
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/baseline-prof.txt
@@ -0,0 +1,548 @@
+HSPLandroidx/recyclerview/R$styleable;->()V
+HSPLandroidx/recyclerview/widget/AdapterHelper$UpdateOp;->(IIILjava/lang/Object;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->(Landroidx/recyclerview/widget/AdapterHelper$Callback;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->(Landroidx/recyclerview/widget/AdapterHelper$Callback;Z)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->applyAdd(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->consumePostponedUpdates()V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->consumeUpdatesInOnePass()V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(I)I
+HSPLandroidx/recyclerview/widget/AdapterHelper;->findPositionOffset(II)I
+HSPLandroidx/recyclerview/widget/AdapterHelper;->hasPendingUpdates()Z
+HSPLandroidx/recyclerview/widget/AdapterHelper;->obtainUpdateOp(IIILjava/lang/Object;)Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;
+HSPLandroidx/recyclerview/widget/AdapterHelper;->onItemRangeInserted(II)Z
+HSPLandroidx/recyclerview/widget/AdapterHelper;->postponeAndUpdateViewHolders(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->preProcess()V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOp(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->recycleUpdateOpsAndClearList(Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/AdapterHelper;->reset()V
+HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;->(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
+HSPLandroidx/recyclerview/widget/AdapterListUpdateCallback;->onInserted(II)V
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->()V
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->(Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->build()Landroidx/recyclerview/widget/AsyncDifferConfig;
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig$Builder;->setBackgroundThreadExecutor(Ljava/util/concurrent/Executor;)Landroidx/recyclerview/widget/AsyncDifferConfig$Builder;
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig;->(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Landroidx/recyclerview/widget/DiffUtil$ItemCallback;)V
+HSPLandroidx/recyclerview/widget/AsyncDifferConfig;->getMainThreadExecutor()Ljava/util/concurrent/Executor;
+HSPLandroidx/recyclerview/widget/AsyncListDiffer$MainThreadExecutor;->()V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->()V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->(Landroidx/recyclerview/widget/ListUpdateCallback;Landroidx/recyclerview/widget/AsyncDifferConfig;)V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->addListListener(Landroidx/recyclerview/widget/AsyncListDiffer$ListListener;)V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->getCurrentList()Ljava/util/List;
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->onCurrentListChanged(Ljava/util/List;Ljava/lang/Runnable;)V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/AsyncListDiffer;->submitList(Ljava/util/List;Ljava/lang/Runnable;)V
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->()V
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->clear(I)V
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->countOnesBefore(I)I
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->get(I)Z
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->insert(IZ)V
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->remove(I)Z
+HSPLandroidx/recyclerview/widget/ChildHelper$Bucket;->reset()V
+HSPLandroidx/recyclerview/widget/ChildHelper;->(Landroidx/recyclerview/widget/ChildHelper$Callback;)V
+HSPLandroidx/recyclerview/widget/ChildHelper;->addView(Landroid/view/View;IZ)V
+HSPLandroidx/recyclerview/widget/ChildHelper;->findHiddenNonRemovedView(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/ChildHelper;->getChildAt(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/ChildHelper;->getChildCount()I
+HSPLandroidx/recyclerview/widget/ChildHelper;->getOffset(I)I
+HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildAt(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/ChildHelper;->getUnfilteredChildCount()I
+HSPLandroidx/recyclerview/widget/ChildHelper;->isHidden(Landroid/view/View;)Z
+HSPLandroidx/recyclerview/widget/ChildHelper;->removeAllViewsUnfiltered()V
+HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewAt(I)V
+HSPLandroidx/recyclerview/widget/ChildHelper;->removeViewIfHidden(Landroid/view/View;)Z
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;->(Landroidx/recyclerview/widget/DefaultItemAnimator;Ljava/util/ArrayList;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator$3;->run()V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->(Landroidx/recyclerview/widget/DefaultItemAnimator;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroid/view/View;Landroid/view/ViewPropertyAnimator;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationEnd(Landroid/animation/Animator;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator$5;->onAnimationStart(Landroid/animation/Animator;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->()V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAdd(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->animateAddImpl(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->dispatchFinishedWhenDone()V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endAnimations()V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->endChangeAnimation(Ljava/util/List;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->isRunning()Z
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->resetAnimation(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/DefaultItemAnimator;->runPendingAnimations()V
+HSPLandroidx/recyclerview/widget/DiffUtil$ItemCallback;->()V
+HSPLandroidx/recyclerview/widget/GapWorker$1;->()V
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->()V
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->addPosition(II)V
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->clearPrefetchPositions()V
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->collectPrefetchPositionsFromView(Landroidx/recyclerview/widget/RecyclerView;Z)V
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->lastPrefetchIncludedPosition(I)Z
+HSPLandroidx/recyclerview/widget/GapWorker$LayoutPrefetchRegistryImpl;->setPrefetchVector(II)V
+HSPLandroidx/recyclerview/widget/GapWorker$Task;->()V
+HSPLandroidx/recyclerview/widget/GapWorker$Task;->clear()V
+HSPLandroidx/recyclerview/widget/GapWorker;->()V
+HSPLandroidx/recyclerview/widget/GapWorker;->()V
+HSPLandroidx/recyclerview/widget/GapWorker;->add(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/GapWorker;->buildTaskList()V
+HSPLandroidx/recyclerview/widget/GapWorker;->flushTaskWithDeadline(Landroidx/recyclerview/widget/GapWorker$Task;J)V
+HSPLandroidx/recyclerview/widget/GapWorker;->flushTasksWithDeadline(J)V
+HSPLandroidx/recyclerview/widget/GapWorker;->isPrefetchPositionAttached(Landroidx/recyclerview/widget/RecyclerView;I)Z
+HSPLandroidx/recyclerview/widget/GapWorker;->postFromTraversal(Landroidx/recyclerview/widget/RecyclerView;II)V
+HSPLandroidx/recyclerview/widget/GapWorker;->prefetch(J)V
+HSPLandroidx/recyclerview/widget/GapWorker;->prefetchPositionWithDeadline(Landroidx/recyclerview/widget/RecyclerView;IJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/GapWorker;->run()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->assignCoordinateFromPadding()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;->reset()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;->()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;->resetInternal()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->hasMore(Landroidx/recyclerview/widget/RecyclerView$State;)Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager$LayoutState;->next(Landroidx/recyclerview/widget/RecyclerView$Recycler;)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->(Landroid/content/Context;Landroid/util/AttributeSet;II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->calculateExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;[I)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollHorizontally()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->canScrollVertically()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectAdjacentPrefetchPositions(IILandroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->collectPrefetchPositionsForLayoutState(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$LayoutManager$LayoutPrefetchRegistry;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->computeVerticalScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->createLayoutState()Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->ensureLayoutState()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fill(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToEnd(ZZ)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleChildClosestToStart(ZZ)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findFirstVisibleItemPosition()I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findLastVisibleItemPosition()I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->findOneVisibleChild(IIZZ)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutEndGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->fixLayoutStartGap(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Z)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToEnd()Landroid/view/View;
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->getExtraLayoutSpace(Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isAutoMeasureEnabled()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->isLayoutRTL()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutChunk(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutChunkResult;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->layoutForPredictiveAnimations(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onAnchorReady(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;I)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleByLayoutState(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/LinearLayoutManager$LayoutState;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->recycleViewsFromStart(Landroidx/recyclerview/widget/RecyclerView$Recycler;II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveIsInfinite()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->resolveShouldLayoutReverse()V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->scrollVerticallyBy(ILandroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setOrientation(I)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setReverseLayout(Z)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->setStackFromEnd(Z)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->supportsPredictiveItemAnimations()Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromChildren(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorFromPendingData(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)Z
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateAnchorInfoForLayout(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutState(IIZLandroidx/recyclerview/widget/RecyclerView$State;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillEnd(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(II)V
+HSPLandroidx/recyclerview/widget/LinearLayoutManager;->updateLayoutStateToFillStart(Landroidx/recyclerview/widget/LinearLayoutManager$AnchorInfo;)V
+HSPLandroidx/recyclerview/widget/ListAdapter$1;->(Landroidx/recyclerview/widget/ListAdapter;)V
+HSPLandroidx/recyclerview/widget/ListAdapter$1;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/ListAdapter;->(Landroidx/recyclerview/widget/AsyncDifferConfig;)V
+HSPLandroidx/recyclerview/widget/ListAdapter;->getItem(I)Ljava/lang/Object;
+HSPLandroidx/recyclerview/widget/ListAdapter;->getItemCount()I
+HSPLandroidx/recyclerview/widget/ListAdapter;->onCurrentListChanged(Ljava/util/List;Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/ListAdapter;->submitList(Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/OpReorderer;->(Landroidx/recyclerview/widget/OpReorderer$Callback;)V
+HSPLandroidx/recyclerview/widget/OpReorderer;->getLastMoveOutOfOrder(Ljava/util/List;)I
+HSPLandroidx/recyclerview/widget/OpReorderer;->reorderOps(Ljava/util/List;)V
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedEnd(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurement(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedMeasurementInOther(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getDecoratedStart(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndAfterPadding()I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getEndPadding()I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getMode()I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getStartAfterPadding()I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTotalSpace()I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->getTransformedEndWithDecoration(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/OrientationHelper$2;->offsetChildren(I)V
+HSPLandroidx/recyclerview/widget/OrientationHelper;->(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
+HSPLandroidx/recyclerview/widget/OrientationHelper;->(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Landroidx/recyclerview/widget/OrientationHelper$1;)V
+HSPLandroidx/recyclerview/widget/OrientationHelper;->createOrientationHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;I)Landroidx/recyclerview/widget/OrientationHelper;
+HSPLandroidx/recyclerview/widget/OrientationHelper;->createVerticalHelper(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)Landroidx/recyclerview/widget/OrientationHelper;
+HSPLandroidx/recyclerview/widget/OrientationHelper;->onLayoutComplete()V
+HSPLandroidx/recyclerview/widget/RecyclerView$1;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$2;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$2;->run()V
+HSPLandroidx/recyclerview/widget/RecyclerView$3;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$4;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$4;->processAppeared(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->addView(Landroid/view/View;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildAt(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->getChildCount()I
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->indexOfChild(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeAllViews()V
+HSPLandroidx/recyclerview/widget/RecyclerView$5;->removeViewAt(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$6;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$6;->dispatchUpdate(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$6;->offsetPositionsForAdd(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$6;->onDispatchSecondPass(Landroidx/recyclerview/widget/AdapterHelper$UpdateOp;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter$StateRestorationPolicy;->(Ljava/lang/String;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->bindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->createViewHolder(Landroid/view/ViewGroup;I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->getItemViewType(I)I
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->hasStableIds()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->notifyItemRangeInserted(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onAttachedToRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onBindViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;ILjava/util/List;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->onViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Adapter;->registerAdapterDataObserver(Landroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObservable;->notifyItemRangeInserted(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$AdapterDataObserver;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$EdgeEffectFactory;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;->setFrom(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;I)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->dispatchAnimationsFinished()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->getAddDuration()J
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->obtainHolderInfo()Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->recordPostLayoutInformation(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimator;->setListener(Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemAnimatorListener;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ItemAnimatorRestoreListener;->onAnimationFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$1;->(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildAt(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildEnd(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getChildStart(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentEnd()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$2;->getParentStart()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addView(Landroid/view/View;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->addViewInt(Landroid/view/View;IZ)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->checkLayoutParams(Landroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->chooseSize(III)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->detachAndScrapAttachedViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->generateLayoutParams(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/recyclerview/widget/RecyclerView$LayoutParams;
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getBottomDecorationHeight(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildAt(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildCount()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getChildMeasureSpec(IIIIZ)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getColumnCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedBottom(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredHeight(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedMeasuredWidth(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getDecoratedTop(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getFocusedChild()Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeight()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getHeightMode()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getLayoutDirection()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingBottom()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingLeft()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingRight()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPaddingTop()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getPosition(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getProperties(Landroid/content/Context;Landroid/util/AttributeSet;II)Landroidx/recyclerview/widget/RecyclerView$LayoutManager$Properties;
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getRowCountForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getSelectionModeForAccessibility(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTopDecorationHeight(Landroid/view/View;)I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getTransformedBoundingBox(Landroid/view/View;ZLandroid/graphics/Rect;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidth()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->getWidthMode()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isItemPrefetchEnabled()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->isLayoutHierarchical(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->layoutDecoratedWithMargins(Landroid/view/View;IIII)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->measureChildWithMargins(Landroid/view/View;II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->offsetChildrenVertical(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onAttachedToWindow(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityEvent(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/accessibility/AccessibilityEvent;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfo(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onInitializeAccessibilityNodeInfoForItem(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onItemsAdded(Landroidx/recyclerview/widget/RecyclerView;II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onLayoutCompleted(Landroidx/recyclerview/widget/RecyclerView$State;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onMeasure(Landroidx/recyclerview/widget/RecyclerView$Recycler;Landroidx/recyclerview/widget/RecyclerView$State;II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onScrollStateChanged(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleAllViews(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleScrapInt(Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeAndRecycleViewAt(ILandroidx/recyclerview/widget/RecyclerView$Recycler;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->removeViewAt(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->requestLayout()V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setExactMeasureSpecsFrom(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setMeasureSpecs(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->setRecyclerView(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->shouldMeasureChild(Landroid/view/View;IILandroidx/recyclerview/widget/RecyclerView$LayoutParams;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->stopSmoothScroller()V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->getViewLayoutPosition()I
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemChanged()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$LayoutParams;->isItemRemoved()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$OnScrollListener;->onScrollStateChanged(Landroidx/recyclerview/widget/RecyclerView;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->attach()V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->clear()V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInBindTime(IJ)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->factorInCreateTime(IJ)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getRecycledView(I)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->getScrapDataForType(I)Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool$ScrapData;
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->putRecycledView(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->runningAverage(JJ)J
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willBindInTime(IJJ)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$RecycledViewPool;->willCreateInTime(IJJ)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->addViewHolderToRecycledViewPool(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->attachAccessibilityDelegateOnBind(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clear()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearOldPositions()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->clearScrap()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->dispatchViewRecycled(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getRecycledViewPool()Landroidx/recyclerview/widget/RecyclerView$RecycledViewPool;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapCount()I
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapList()Ljava/util/List;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getScrapOrHiddenOrCachedHolderForPosition(IZ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(I)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->getViewForPosition(IZ)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markItemDecorInsetsDirty()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->markKnownViewsInvalid()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->offsetPositionRecordsForInsert(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->onAdapterChanged(Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$Adapter;Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleAndClearCachedViews()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleCachedViewAt(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleView(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->recycleViewHolderInternal(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryBindViewHolderByDeadline(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;IIJ)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->tryGetViewHolderForPositionByDeadline(IZJ)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->updateViewCacheSize()V
+HSPLandroidx/recyclerview/widget/RecyclerView$Recycler;->validateViewHolderForOffsetPosition(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->onItemRangeInserted(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$RecyclerViewDataObserver;->triggerUpdateProcessor()V
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->assertLayoutStep(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->getItemCount()I
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->hasTargetScrollPosition()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->isPreLayout()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$State;->willRunPredictiveAnimations()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->fling(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->internalPostOnAnimation()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->postOnAnimation()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->run()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewFlinger;->stop()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->clearPayload()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->doesTransientStatePreventRecycling()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getItemViewType()I
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getLayoutPosition()I
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->getUnmodifiedPayloads()Ljava/util/List;
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->hasAnyOfTheFlags(I)Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isAttachedToTransitionOverlay()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isBound()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isInvalid()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRecyclable()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isRemoved()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isScrap()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isTmpDetached()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->isUpdated()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->needsUpdate()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->resetInternal()V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setFlags(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->setIsRecyclable(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldBeKeptAsChild()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->shouldIgnore()Z
+HSPLandroidx/recyclerview/widget/RecyclerView$ViewHolder;->wasReturnedFromScrap()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->(Landroid/content/Context;Landroid/util/AttributeSet;I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->absorbGlows(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->access$200(Landroidx/recyclerview/widget/RecyclerView;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->addOnScrollListener(Landroidx/recyclerview/widget/RecyclerView$OnScrollListener;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->assertNotInLayoutOrScroll(Ljava/lang/String;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->clearNestedRecyclerViewIfNotNested(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->clearOldPositions()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollExtent()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollOffset()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeHorizontalScrollRange()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollExtent()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollOffset()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->computeVerticalScrollRange()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->considerReleasingGlowsOnScroll(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->consumePendingUpdateOperations()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->createLayoutManager(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->defaultOnMeasure(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->didChildRangeChange(II)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildAttached(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchChildDetached(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchContentChangedIfNecessary()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayout()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep1()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep2()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchLayoutStep3()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedFling(FFZ)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreFling(FF)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedPreScroll(II[I[II)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchNestedScroll(IIII[II[I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrollStateChanged(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchOnScrolled(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchPendingImportantForAccessibilityChanges()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->dispatchToOnItemTouchListeners(Landroid/view/MotionEvent;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->draw(Landroid/graphics/Canvas;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->fillRemainingScrollValues(Landroidx/recyclerview/widget/RecyclerView$State;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->findInterceptingOnItemTouchListener(Landroid/view/MotionEvent;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->findMinMaxChildLayoutPositions([I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->findNestedRecyclerView(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView;
+HSPLandroidx/recyclerview/widget/RecyclerView;->fling(II)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getAccessibilityClassName()Ljava/lang/CharSequence;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getChangedHolderKey(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)J
+HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolder(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getChildViewHolderInt(Landroid/view/View;)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getFullClassName(Landroid/content/Context;Ljava/lang/String;)Ljava/lang/String;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getItemDecorInsetsForChild(Landroid/view/View;)Landroid/graphics/Rect;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getLayoutManager()Landroidx/recyclerview/widget/RecyclerView$LayoutManager;
+HSPLandroidx/recyclerview/widget/RecyclerView;->getNanoTime()J
+HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollState()I
+HSPLandroidx/recyclerview/widget/RecyclerView;->getScrollingChildHelper()Landroidx/core/view/NestedScrollingChildHelper;
+HSPLandroidx/recyclerview/widget/RecyclerView;->hasPendingAdapterUpdates()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->initAdapterManager()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->initAutofill()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->initChildrenHelper()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->invalidateGlows()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->isAccessibilityEnabled()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->isAttachedToWindow()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->isComputingLayout()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->markItemDecorInsetsDirty()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->markKnownViewsInvalid()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->offsetChildrenVertical(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->offsetPositionRecordsForInsert(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onAttachedToWindow()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onChildAttachedToWindow(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onChildDetachedFromWindow(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onDraw(Landroid/graphics/Canvas;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onEnterLayoutOrScroll()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onExitLayoutOrScroll(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onInterceptTouchEvent(Landroid/view/MotionEvent;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->onLayout(ZIIII)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onMeasure(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onScrollStateChanged(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onScrolled(II)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onSizeChanged(IIII)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->onTouchEvent(Landroid/view/MotionEvent;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->postAnimationRunner()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->predictiveItemAnimationsEnabled()Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->processAdapterUpdatesAndSetAnimationFlags()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->processDataSetCompletelyChanged(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->pullGlows(FFFF)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->recoverFocusFromState()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->releaseGlows()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->removeAndRecycleViews()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->removeAnimatingView(Landroid/view/View;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->repositionShadowingViews()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->requestLayout()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->resetFocusInfo()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->resetScroll()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->saveFocusInfo()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->saveOldPositions()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->scrollByInternal(IILandroid/view/MotionEvent;I)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->scrollStep(II[I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->sendAccessibilityEventUnchecked(Landroid/view/accessibility/AccessibilityEvent;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setAccessibilityDelegateCompat(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapter(Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setAdapterInternal(Landroidx/recyclerview/widget/RecyclerView$Adapter;ZZ)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutFrozen(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setLayoutManager(Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setNestedScrollingEnabled(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->setScrollState(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->shouldDeferAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->startInterceptRequestLayout()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->startNestedScroll(II)Z
+HSPLandroidx/recyclerview/widget/RecyclerView;->stopInterceptRequestLayout(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->stopNestedScroll(I)V
+HSPLandroidx/recyclerview/widget/RecyclerView;->stopScroll()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->stopScrollersInternal()V
+HSPLandroidx/recyclerview/widget/RecyclerView;->suppressLayout(Z)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->(Landroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAccessibilityNodeProvider(Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->getAndRemoveOriginalDelegateForItem(Landroid/view/View;)Landroidx/core/view/AccessibilityDelegateCompat;
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->saveOriginalDelegate(Landroid/view/View;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->(Landroidx/recyclerview/widget/RecyclerView;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->getItemDelegate()Landroidx/core/view/AccessibilityDelegateCompat;
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->onInitializeAccessibilityNodeInfo(Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
+HSPLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate;->shouldIgnore()Z
+HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollExtent(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I
+HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollOffset(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;ZZ)I
+HSPLandroidx/recyclerview/widget/ScrollbarHelper;->computeScrollRange(Landroidx/recyclerview/widget/RecyclerView$State;Landroidx/recyclerview/widget/OrientationHelper;Landroid/view/View;Landroid/view/View;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;Z)I
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->()V
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->animateAppearance(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)Z
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->dispatchAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddFinished(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/SimpleItemAnimator;->onAddStarting(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->()V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->addFlags(I)V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->boundsMatch()Z
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->compare(II)I
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->resetFlags()V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck$BoundFlags;->setBounds(IIII)V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck;->(Landroidx/recyclerview/widget/ViewBoundsCheck$Callback;)V
+HSPLandroidx/recyclerview/widget/ViewBoundsCheck;->findOneViewWithinBoundFlags(IIII)Landroid/view/View;
+HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->()V
+HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->()V
+HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->obtain()Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord;
+HSPLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->recycle(Landroidx/recyclerview/widget/ViewInfoStore$InfoRecord;)V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->()V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->addToPostLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;Landroidx/recyclerview/widget/RecyclerView$ItemAnimator$ItemHolderInfo;)V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->clear()V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->getFromOldChangeHolders(J)Landroidx/recyclerview/widget/RecyclerView$ViewHolder;
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->process(Landroidx/recyclerview/widget/ViewInfoStore$ProcessCallback;)V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeFromDisappearedInLayout(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+HSPLandroidx/recyclerview/widget/ViewInfoStore;->removeViewHolder(Landroidx/recyclerview/widget/RecyclerView$ViewHolder;)V
+PLandroidx/recyclerview/widget/GapWorker;->remove(Landroidx/recyclerview/widget/RecyclerView;)V
+PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState$1;->()V
+PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;->()V
+PLandroidx/recyclerview/widget/LinearLayoutManager$SavedState;->()V
+PLandroidx/recyclerview/widget/LinearLayoutManager;->getChildClosestToStart()Landroid/view/View;
+PLandroidx/recyclerview/widget/LinearLayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+PLandroidx/recyclerview/widget/LinearLayoutManager;->onSaveInstanceState()Landroid/os/Parcelable;
+PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->dispatchDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;)V
+PLandroidx/recyclerview/widget/RecyclerView$LayoutManager;->onDetachedFromWindow(Landroidx/recyclerview/widget/RecyclerView;Landroidx/recyclerview/widget/RecyclerView$Recycler;)V
+PLandroidx/recyclerview/widget/RecyclerView$SavedState$1;->()V
+PLandroidx/recyclerview/widget/RecyclerView$SavedState;->()V
+PLandroidx/recyclerview/widget/RecyclerView$SavedState;->(Landroid/os/Parcelable;)V
+PLandroidx/recyclerview/widget/RecyclerView;->dispatchSaveInstanceState(Landroid/util/SparseArray;)V
+PLandroidx/recyclerview/widget/RecyclerView;->onDetachedFromWindow()V
+PLandroidx/recyclerview/widget/RecyclerView;->onSaveInstanceState()Landroid/os/Parcelable;
+PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->onInitializeAccessibilityEvent(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
+PLandroidx/recyclerview/widget/RecyclerViewAccessibilityDelegate$ItemDelegate;->sendAccessibilityEventUnchecked(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
+PLandroidx/recyclerview/widget/ViewInfoStore$InfoRecord;->drainCache()V
+PLandroidx/recyclerview/widget/ViewInfoStore;->onDetach()V
diff --git a/obj/Debug/net8.0-android/lp/104/jl/classes.jar b/obj/Debug/net8.0-android/lp/104/jl/classes.jar
new file mode 100644
index 0000000..d692e4c
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/104/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/104/jl/proguard.txt b/obj/Debug/net8.0-android/lp/104/jl/proguard.txt
new file mode 100644
index 0000000..c258298
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/proguard.txt
@@ -0,0 +1,25 @@
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# When layoutManager xml attribute is used, RecyclerView inflates
+#LayoutManagers' constructors using reflection.
+-keep public class * extends androidx.recyclerview.widget.RecyclerView$LayoutManager {
+ public (android.content.Context, android.util.AttributeSet, int, int);
+ public ();
+}
+
+-keepclassmembers class androidx.recyclerview.widget.RecyclerView {
+ public void suppressLayout(boolean);
+ public boolean isLayoutSuppressed();
+}
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/104/jl/public.txt b/obj/Debug/net8.0-android/lp/104/jl/public.txt
new file mode 100644
index 0000000..475bfc4
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/public.txt
@@ -0,0 +1,9 @@
+attr fastScrollEnabled
+attr fastScrollHorizontalThumbDrawable
+attr fastScrollHorizontalTrackDrawable
+attr fastScrollVerticalThumbDrawable
+attr fastScrollVerticalTrackDrawable
+attr layoutManager
+attr reverseLayout
+attr spanCount
+attr stackFromEnd
diff --git a/obj/Debug/net8.0-android/lp/104/jl/res.zip b/obj/Debug/net8.0-android/lp/104/jl/res.zip
new file mode 100644
index 0000000..9d9b89d
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/104/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml
new file mode 100644
index 0000000..72849ef
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/104/jl/res/values/values.xml
@@ -0,0 +1,32 @@
+
+
+
+ 8dp
+ 0dp
+ 50dp
+ 20dp
+ 800dp
+ 120dp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/105.stamp b/obj/Debug/net8.0-android/lp/105.stamp
new file mode 100644
index 0000000..3de3745
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105.stamp
@@ -0,0 +1 @@
+E49989E04848909F
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml
new file mode 100644
index 0000000..45c0d57
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/105/jl/R.txt b/obj/Debug/net8.0-android/lp/105/jl/R.txt
new file mode 100644
index 0000000..fd745fc
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/R.txt
@@ -0,0 +1 @@
+int id view_tree_view_model_store_owner 0x0
diff --git a/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt
new file mode 100644
index 0000000..3475936
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/baseline-prof.txt
@@ -0,0 +1,15 @@
+# Baseline profiles for Lifecycle ViewModel
+
+HSPLandroidx/lifecycle/ViewModel;->()V
+HSPLandroidx/lifecycle/ViewModelLazy;->(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V
+HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel;
+HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object;
+HSPLandroidx/lifecycle/ViewModelProvider;->(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V
+HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
+HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
+HSPLandroidx/lifecycle/ViewModelStore;->()V
+HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel;
+HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V
+PLandroidx/lifecycle/ViewModel;->clear()V
+PLandroidx/lifecycle/ViewModel;->onCleared()V
+PLandroidx/lifecycle/ViewModelStore;->clear()V
diff --git a/obj/Debug/net8.0-android/lp/105/jl/classes.jar b/obj/Debug/net8.0-android/lp/105/jl/classes.jar
new file mode 100644
index 0000000..21e1755
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/105/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/105/jl/proguard.txt b/obj/Debug/net8.0-android/lp/105/jl/proguard.txt
new file mode 100644
index 0000000..0e79ffe
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/proguard.txt
@@ -0,0 +1,7 @@
+-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
+ ();
+}
+
+-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
+ (android.app.Application);
+}
diff --git a/obj/Debug/net8.0-android/lp/105/jl/public.txt b/obj/Debug/net8.0-android/lp/105/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/105/jl/res.zip b/obj/Debug/net8.0-android/lp/105/jl/res.zip
new file mode 100644
index 0000000..1a95d0c
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/105/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml
new file mode 100644
index 0000000..46ed616
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/105/jl/res/values/values.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/106.stamp b/obj/Debug/net8.0-android/lp/106.stamp
new file mode 100644
index 0000000..48b0508
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/106.stamp
@@ -0,0 +1 @@
+D9451A8FC41F64B0
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml
new file mode 100644
index 0000000..21681cc
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/106/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/106/jl/R.txt b/obj/Debug/net8.0-android/lp/106/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt
new file mode 100644
index 0000000..ab4ae84
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/106/jl/baseline-prof.txt
@@ -0,0 +1,40 @@
+# Baseline profiles for lifecycle-livedata-core
+
+HSPLandroidx/lifecycle/LiveData$1;->(Landroidx/lifecycle/LiveData;)V
+HSPLandroidx/lifecycle/LiveData$1;->run()V
+HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z
+HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z
+HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V
+HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V
+HSPLandroidx/lifecycle/LiveData;->()V
+HSPLandroidx/lifecycle/LiveData;->()V
+HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V
+HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V
+HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
+HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
+HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object;
+HSPLandroidx/lifecycle/LiveData;->getVersion()I
+HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z
+HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData;->onActive()V
+HSPLandroidx/lifecycle/LiveData;->onInactive()V
+HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V
+HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V
+HSPLandroidx/lifecycle/MediatorLiveData$Source;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V
+HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V
+HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V
+HSPLandroidx/lifecycle/MediatorLiveData;->()V
+HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
+HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V
+HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V
+HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V
+HSPLandroidx/lifecycle/MutableLiveData;->()V
+HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V
+PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V
diff --git a/obj/Debug/net8.0-android/lp/106/jl/classes.jar b/obj/Debug/net8.0-android/lp/106/jl/classes.jar
new file mode 100644
index 0000000..4f1af9b
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/106/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/106/jl/public.txt b/obj/Debug/net8.0-android/lp/106/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/106/jl/res.zip b/obj/Debug/net8.0-android/lp/106/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/106/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/106/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/107.stamp b/obj/Debug/net8.0-android/lp/107.stamp
new file mode 100644
index 0000000..63e0828
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/107.stamp
@@ -0,0 +1 @@
+109841B2AB535CED
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml
new file mode 100644
index 0000000..ac8728b
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/107/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/107/jl/R.txt b/obj/Debug/net8.0-android/lp/107/jl/R.txt
new file mode 100644
index 0000000..8c5f8bc
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/107/jl/R.txt
@@ -0,0 +1,131 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f070001
+int dimen compat_button_inset_vertical_material 0x7f070002
+int dimen compat_button_padding_horizontal_material 0x7f070003
+int dimen compat_button_padding_vertical_material 0x7f070004
+int dimen compat_control_corner_material 0x7f070005
+int dimen compat_notification_large_icon_max_height 0x7f070006
+int dimen compat_notification_large_icon_max_width 0x7f070007
+int dimen notification_action_icon_size 0x7f070008
+int dimen notification_action_text_size 0x7f070009
+int dimen notification_big_circle_margin 0x7f07000a
+int dimen notification_content_margin_start 0x7f07000b
+int dimen notification_large_icon_height 0x7f07000c
+int dimen notification_large_icon_width 0x7f07000d
+int dimen notification_main_column_padding_top 0x7f07000e
+int dimen notification_media_narrow_margin 0x7f07000f
+int dimen notification_right_icon_size 0x7f070010
+int dimen notification_right_side_padding_top 0x7f070011
+int dimen notification_small_icon_background_padding 0x7f070012
+int dimen notification_small_icon_size_as_large 0x7f070013
+int dimen notification_subtext_size 0x7f070014
+int dimen notification_top_pad 0x7f070015
+int dimen notification_top_pad_large_text 0x7f070016
+int drawable notification_action_background 0x7f080001
+int drawable notification_bg 0x7f080002
+int drawable notification_bg_low 0x7f080003
+int drawable notification_bg_low_normal 0x7f080004
+int drawable notification_bg_low_pressed 0x7f080005
+int drawable notification_bg_normal 0x7f080006
+int drawable notification_bg_normal_pressed 0x7f080007
+int drawable notification_icon_background 0x7f080008
+int drawable notification_template_icon_bg 0x7f080009
+int drawable notification_template_icon_low_bg 0x7f08000a
+int drawable notification_tile_bg 0x7f08000b
+int drawable notify_panel_notification_icon_bg 0x7f08000c
+int id action_container 0x7f0b0001
+int id action_divider 0x7f0b0002
+int id action_image 0x7f0b0003
+int id action_text 0x7f0b0004
+int id actions 0x7f0b0005
+int id async 0x7f0b0006
+int id blocking 0x7f0b0007
+int id chronometer 0x7f0b0008
+int id forever 0x7f0b0009
+int id icon 0x7f0b000a
+int id icon_group 0x7f0b000b
+int id info 0x7f0b000c
+int id italic 0x7f0b000d
+int id line1 0x7f0b000e
+int id line3 0x7f0b000f
+int id normal 0x7f0b0010
+int id notification_background 0x7f0b0011
+int id notification_main_column 0x7f0b0012
+int id notification_main_column_container 0x7f0b0013
+int id right_icon 0x7f0b0014
+int id right_side 0x7f0b0015
+int id tag_transition_group 0x7f0b0016
+int id tag_unhandled_key_event_manager 0x7f0b0017
+int id tag_unhandled_key_listeners 0x7f0b0018
+int id text 0x7f0b0019
+int id text2 0x7f0b001a
+int id time 0x7f0b001b
+int id title 0x7f0b001c
+int integer status_bar_notification_info_maxnum 0x7f0c0001
+int layout notification_action 0x7f0e0001
+int layout notification_action_tombstone 0x7f0e0002
+int layout notification_template_custom_big 0x7f0e0003
+int layout notification_template_icon_group 0x7f0e0004
+int layout notification_template_part_chronometer 0x7f0e0005
+int layout notification_template_part_time 0x7f0e0006
+int string status_bar_notification_info_overflow 0x7f140001
+int style TextAppearance_Compat_Notification 0x7f150001
+int style TextAppearance_Compat_Notification_Info 0x7f150002
+int style TextAppearance_Compat_Notification_Line2 0x7f150003
+int style TextAppearance_Compat_Notification_Time 0x7f150004
+int style TextAppearance_Compat_Notification_Title 0x7f150005
+int style Widget_Compat_NotificationActionContainer 0x7f150006
+int style Widget_Compat_NotificationActionText 0x7f150007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/107/jl/classes.jar b/obj/Debug/net8.0-android/lp/107/jl/classes.jar
new file mode 100644
index 0000000..6ea5e55
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/107/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/108.stamp b/obj/Debug/net8.0-android/lp/108.stamp
new file mode 100644
index 0000000..b9fe437
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/108.stamp
@@ -0,0 +1 @@
+0BC41994815A9546
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml
new file mode 100644
index 0000000..3ad8bde
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/108/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/108/jl/R.txt b/obj/Debug/net8.0-android/lp/108/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/108/jl/classes.jar b/obj/Debug/net8.0-android/lp/108/jl/classes.jar
new file mode 100644
index 0000000..92d99be
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/108/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/108/jl/proguard.txt b/obj/Debug/net8.0-android/lp/108/jl/proguard.txt
new file mode 100644
index 0000000..3df87f3
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/108/jl/proguard.txt
@@ -0,0 +1,7 @@
+-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
+ (androidx.lifecycle.SavedStateHandle);
+}
+
+-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
+ (android.app.Application,androidx.lifecycle.SavedStateHandle);
+}
diff --git a/obj/Debug/net8.0-android/lp/108/jl/public.txt b/obj/Debug/net8.0-android/lp/108/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/108/jl/res.zip b/obj/Debug/net8.0-android/lp/108/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/108/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/108/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/109.stamp b/obj/Debug/net8.0-android/lp/109.stamp
new file mode 100644
index 0000000..db02537
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109.stamp
@@ -0,0 +1 @@
+833E0FC36DC26A71
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml
new file mode 100644
index 0000000..92e8b1e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/109/jl/R.txt b/obj/Debug/net8.0-android/lp/109/jl/R.txt
new file mode 100644
index 0000000..2968aaf
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109/jl/R.txt
@@ -0,0 +1,2 @@
+int id report_drawn 0x0
+int id view_tree_on_back_pressed_dispatcher_owner 0x0
diff --git a/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt
new file mode 100644
index 0000000..fd738a5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109/jl/baseline-prof.txt
@@ -0,0 +1,86 @@
+# Baseline profiles for androidx.activity
+
+HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/activity/ComponentActivity$6;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$7;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$7;->onContextAvailable(Landroid/content/Context;)V
+HSPLandroidx/activity/ComponentActivity;->()V
+HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
+HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
+HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
+HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
+HSPLandroidx/activity/OnBackPressedCallback;->(Z)V
+HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
+HSPLandroidx/activity/OnBackPressedCallback;->remove()V
+HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
+HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
+HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
+HSPLandroidx/activity/result/ActivityResultLauncher;->()V
+HSPLandroidx/activity/result/ActivityResultRegistry$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;ILandroidx/activity/result/contract/ActivityResultContract;)V
+HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V
+HSPLandroidx/activity/result/ActivityResultRegistry;->()V
+HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V
+HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I
+HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
+HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)I
+HSPLandroidx/activity/result/contract/ActivityResultContract;->()V
+HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V
+HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V
+Landroidx/activity/Cancellable;
+Landroidx/activity/ComponentActivity$1;
+Landroidx/activity/ComponentActivity$2;
+Landroidx/activity/ComponentActivity$3;
+Landroidx/activity/ComponentActivity$4;
+Landroidx/activity/ComponentActivity$5;
+Landroidx/activity/ComponentActivity$6;
+Landroidx/activity/ComponentActivity$7;
+Landroidx/activity/ComponentActivity$NonConfigurationInstances;
+Landroidx/activity/ComponentActivity;
+Landroidx/activity/OnBackPressedCallback;
+Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
+Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;
+Landroidx/activity/OnBackPressedDispatcher;
+Landroidx/activity/OnBackPressedDispatcherOwner;
+Landroidx/activity/contextaware/ContextAware;
+Landroidx/activity/contextaware/ContextAwareHelper;
+Landroidx/activity/contextaware/OnContextAvailableListener;
+Landroidx/activity/result/ActivityResult;
+Landroidx/activity/result/ActivityResultCallback;
+Landroidx/activity/result/ActivityResultCaller;
+Landroidx/activity/result/ActivityResultLauncher;
+Landroidx/activity/result/ActivityResultRegistry$3;
+Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract;
+Landroidx/activity/result/ActivityResultRegistry;
+Landroidx/activity/result/ActivityResultRegistryOwner;
+Landroidx/activity/result/contract/ActivityResultContract;
+Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;
+Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;
+PLandroidx/activity/ComponentActivity$1;->run()V
+PLandroidx/activity/ComponentActivity;->access$001(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity;->onBackPressed()V
+PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
+PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
+PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
+PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
+PLandroidx/activity/OnBackPressedDispatcher;->onBackPressed()V
+PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
+PLandroidx/activity/result/ActivityResultRegistry$3;->unregister()V
+PLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V
diff --git a/obj/Debug/net8.0-android/lp/109/jl/classes.jar b/obj/Debug/net8.0-android/lp/109/jl/classes.jar
new file mode 100644
index 0000000..4befd3d
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/109/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/109/jl/public.txt b/obj/Debug/net8.0-android/lp/109/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/109/jl/res.zip b/obj/Debug/net8.0-android/lp/109/jl/res.zip
new file mode 100644
index 0000000..76c04bc
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/109/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml
new file mode 100644
index 0000000..aeb54c1
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/109/jl/res/values/values.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/110.stamp b/obj/Debug/net8.0-android/lp/110.stamp
new file mode 100644
index 0000000..0c793cb
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110.stamp
@@ -0,0 +1 @@
+53E2709788A75ACB
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml
new file mode 100644
index 0000000..c189f70
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/110/jl/R.txt b/obj/Debug/net8.0-android/lp/110/jl/R.txt
new file mode 100644
index 0000000..2aa6043
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/R.txt
@@ -0,0 +1,17 @@
+int anim fragment_fast_out_extra_slow_in 0x0
+int animator fragment_close_enter 0x0
+int animator fragment_close_exit 0x0
+int animator fragment_fade_enter 0x0
+int animator fragment_fade_exit 0x0
+int animator fragment_open_enter 0x0
+int animator fragment_open_exit 0x0
+int id fragment_container_view_tag 0x0
+int id special_effects_controller_view_tag 0x0
+int id visible_removing_fragment_view_tag 0x0
+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
+int styleable Fragment_android_id 0
+int styleable Fragment_android_name 1
+int styleable Fragment_android_tag 2
+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
+int styleable FragmentContainerView_android_name 0
+int styleable FragmentContainerView_android_tag 1
diff --git a/obj/Debug/net8.0-android/lp/110/jl/annotations.zip b/obj/Debug/net8.0-android/lp/110/jl/annotations.zip
new file mode 100644
index 0000000..e26e000
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/110/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt
new file mode 100644
index 0000000..7aa2ee2
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/baseline-prof.txt
@@ -0,0 +1,477 @@
+# Baseline profiles for androidx.fragment
+
+HSPLandroidx/fragment/R$styleable;->()V
+HSPLandroidx/fragment/app/BackStackRecord;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/BackStackRecord;->bumpBackStackNesting(I)V
+HSPLandroidx/fragment/app/BackStackRecord;->commit()I
+HSPLandroidx/fragment/app/BackStackRecord;->commitInternal(Z)I
+HSPLandroidx/fragment/app/BackStackRecord;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
+HSPLandroidx/fragment/app/BackStackRecord;->executeOps()V
+HSPLandroidx/fragment/app/BackStackRecord;->expandOps(Ljava/util/ArrayList;Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/BackStackRecord;->generateOps(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
+HSPLandroidx/fragment/app/BackStackRecord;->runOnCommitRunnables()V
+HSPLandroidx/fragment/app/BackStackRecord;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/DefaultSpecialEffectsController;->(Landroid/view/ViewGroup;)V
+HSPLandroidx/fragment/app/Fragment$1;->(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/Fragment$4;->(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/Fragment$4;->onFindViewById(I)Landroid/view/View;
+HSPLandroidx/fragment/app/Fragment$4;->onHasView()Z
+HSPLandroidx/fragment/app/Fragment$5;->(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/Fragment$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/fragment/app/Fragment$AnimationInfo;->()V
+HSPLandroidx/fragment/app/Fragment;->()V
+HSPLandroidx/fragment/app/Fragment;->()V
+HSPLandroidx/fragment/app/Fragment;->createFragmentContainer()Landroidx/fragment/app/FragmentContainer;
+HSPLandroidx/fragment/app/Fragment;->ensureAnimationInfo()Landroidx/fragment/app/Fragment$AnimationInfo;
+HSPLandroidx/fragment/app/Fragment;->equals(Ljava/lang/Object;)Z
+HSPLandroidx/fragment/app/Fragment;->getActivity()Landroidx/fragment/app/FragmentActivity;
+HSPLandroidx/fragment/app/Fragment;->getChildFragmentManager()Landroidx/fragment/app/FragmentManager;
+HSPLandroidx/fragment/app/Fragment;->getContext()Landroid/content/Context;
+HSPLandroidx/fragment/app/Fragment;->getFocusedView()Landroid/view/View;
+HSPLandroidx/fragment/app/Fragment;->getId()I
+HSPLandroidx/fragment/app/Fragment;->getLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
+HSPLandroidx/fragment/app/Fragment;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/fragment/app/Fragment;->getMinimumMaxLifecycleState()I
+HSPLandroidx/fragment/app/Fragment;->getParentFragment()Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/Fragment;->getParentFragmentManager()Landroidx/fragment/app/FragmentManager;
+HSPLandroidx/fragment/app/Fragment;->getPostOnViewCreatedAlpha()F
+HSPLandroidx/fragment/app/Fragment;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+HSPLandroidx/fragment/app/Fragment;->getTag()Ljava/lang/String;
+HSPLandroidx/fragment/app/Fragment;->getView()Landroid/view/View;
+HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwner()Landroidx/lifecycle/LifecycleOwner;
+HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwnerLiveData()Landroidx/lifecycle/LiveData;
+HSPLandroidx/fragment/app/Fragment;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/fragment/app/Fragment;->initLifecycle()V
+HSPLandroidx/fragment/app/Fragment;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/Fragment;->isAdded()Z
+HSPLandroidx/fragment/app/Fragment;->isMenuVisible()Z
+HSPLandroidx/fragment/app/Fragment;->noteStateNotSaved()V
+HSPLandroidx/fragment/app/Fragment;->onActivityCreated(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/app/Activity;)V
+HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/content/Context;)V
+HSPLandroidx/fragment/app/Fragment;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/Fragment;->onCreate(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
+HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/app/Activity;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->onPrimaryNavigationFragmentChanged(Z)V
+HSPLandroidx/fragment/app/Fragment;->onResume()V
+HSPLandroidx/fragment/app/Fragment;->onStart()V
+HSPLandroidx/fragment/app/Fragment;->onViewCreated(Landroid/view/View;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->onViewStateRestored(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->performActivityCreated(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->performAttach()V
+HSPLandroidx/fragment/app/Fragment;->performCreate(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->performCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
+HSPLandroidx/fragment/app/Fragment;->performCreateView(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->performGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
+HSPLandroidx/fragment/app/Fragment;->performPrepareOptionsMenu(Landroid/view/Menu;)Z
+HSPLandroidx/fragment/app/Fragment;->performPrimaryNavigationFragmentChanged()V
+HSPLandroidx/fragment/app/Fragment;->performResume()V
+HSPLandroidx/fragment/app/Fragment;->performStart()V
+HSPLandroidx/fragment/app/Fragment;->performViewCreated()V
+HSPLandroidx/fragment/app/Fragment;->requireContext()Landroid/content/Context;
+HSPLandroidx/fragment/app/Fragment;->requireView()Landroid/view/View;
+HSPLandroidx/fragment/app/Fragment;->restoreChildFragmentState(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->restoreViewState()V
+HSPLandroidx/fragment/app/Fragment;->restoreViewState(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->setAnimations(IIII)V
+HSPLandroidx/fragment/app/Fragment;->setArguments(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/Fragment;->setFocusedView(Landroid/view/View;)V
+HSPLandroidx/fragment/app/Fragment;->setNextTransition(I)V
+HSPLandroidx/fragment/app/Fragment;->setPopDirection(Z)V
+HSPLandroidx/fragment/app/Fragment;->setPostOnViewCreatedAlpha(F)V
+HSPLandroidx/fragment/app/Fragment;->setSharedElementNames(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
+HSPLandroidx/fragment/app/Fragment;->toString()Ljava/lang/String;
+HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;->(Landroidx/fragment/app/FragmentActivity;)V
+HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;->onContextAvailable(Landroid/content/Context;)V
+HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;->(Landroidx/fragment/app/FragmentActivity;)V
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->(Landroidx/fragment/app/FragmentActivity;)V
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetLayoutInflater()Landroid/view/LayoutInflater;
+HSPLandroidx/fragment/app/FragmentActivity;->()V
+HSPLandroidx/fragment/app/FragmentActivity;->dispatchFragmentsOnCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/fragment/app/FragmentActivity;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
+HSPLandroidx/fragment/app/FragmentActivity;->init()V
+HSPLandroidx/fragment/app/FragmentActivity;->lambda$init$1$androidx-fragment-app-FragmentActivity(Landroid/content/Context;)V
+HSPLandroidx/fragment/app/FragmentActivity;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentActivity;->onCreate(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/FragmentActivity;->onCreatePanelMenu(ILandroid/view/Menu;)Z
+HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/fragment/app/FragmentActivity;->onPostResume()V
+HSPLandroidx/fragment/app/FragmentActivity;->onPrepareOptionsPanel(Landroid/view/View;Landroid/view/Menu;)Z
+HSPLandroidx/fragment/app/FragmentActivity;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
+HSPLandroidx/fragment/app/FragmentActivity;->onResume()V
+HSPLandroidx/fragment/app/FragmentActivity;->onResumeFragments()V
+HSPLandroidx/fragment/app/FragmentActivity;->onStart()V
+HSPLandroidx/fragment/app/FragmentActivity;->onStateNotSaved()V
+HSPLandroidx/fragment/app/FragmentContainer;->()V
+HSPLandroidx/fragment/app/FragmentContainer;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentContainerView;->(Landroid/content/Context;)V
+HSPLandroidx/fragment/app/FragmentContainerView;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
+HSPLandroidx/fragment/app/FragmentContainerView;->dispatchDraw(Landroid/graphics/Canvas;)V
+HSPLandroidx/fragment/app/FragmentContainerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z
+HSPLandroidx/fragment/app/FragmentController;->(Landroidx/fragment/app/FragmentHostCallback;)V
+HSPLandroidx/fragment/app/FragmentController;->attachHost(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentController;->createController(Landroidx/fragment/app/FragmentHostCallback;)Landroidx/fragment/app/FragmentController;
+HSPLandroidx/fragment/app/FragmentController;->dispatchActivityCreated()V
+HSPLandroidx/fragment/app/FragmentController;->dispatchCreate()V
+HSPLandroidx/fragment/app/FragmentController;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
+HSPLandroidx/fragment/app/FragmentController;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
+HSPLandroidx/fragment/app/FragmentController;->dispatchResume()V
+HSPLandroidx/fragment/app/FragmentController;->dispatchStart()V
+HSPLandroidx/fragment/app/FragmentController;->execPendingActions()Z
+HSPLandroidx/fragment/app/FragmentController;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
+HSPLandroidx/fragment/app/FragmentController;->noteStateNotSaved()V
+HSPLandroidx/fragment/app/FragmentController;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/fragment/app/FragmentFactory;->()V
+HSPLandroidx/fragment/app/FragmentFactory;->()V
+HSPLandroidx/fragment/app/FragmentFactory;->isFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Z
+HSPLandroidx/fragment/app/FragmentFactory;->loadClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
+HSPLandroidx/fragment/app/FragmentFactory;->loadFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
+HSPLandroidx/fragment/app/FragmentHostCallback;->(Landroid/app/Activity;Landroid/content/Context;Landroid/os/Handler;I)V
+HSPLandroidx/fragment/app/FragmentHostCallback;->(Landroidx/fragment/app/FragmentActivity;)V
+HSPLandroidx/fragment/app/FragmentHostCallback;->getActivity()Landroid/app/Activity;
+HSPLandroidx/fragment/app/FragmentHostCallback;->getContext()Landroid/content/Context;
+HSPLandroidx/fragment/app/FragmentHostCallback;->getHandler()Landroid/os/Handler;
+HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->(Landroidx/fragment/app/FragmentLayoutInflaterFactory;Landroidx/fragment/app/FragmentStateManager;)V
+HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewAttachedToWindow(Landroid/view/View;)V
+HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;->(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentActivityCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentAttached(Landroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreAttached(Landroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentResumed(Landroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStarted(Landroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewCreated(Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;Z)V
+HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
+HSPLandroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$1;->(Landroidx/fragment/app/FragmentManager;Z)V
+HSPLandroidx/fragment/app/FragmentManager$2;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$2;->instantiate(Ljava/lang/ClassLoader;Ljava/lang/String;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager$3;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$3;->createController(Landroid/view/ViewGroup;)Landroidx/fragment/app/SpecialEffectsController;
+HSPLandroidx/fragment/app/FragmentManager$4;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$6;->(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager$6;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager$7;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$8;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$9;->(Landroidx/fragment/app/FragmentManager;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;->()V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->()V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentActivityCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentResumed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStarted(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/FragmentManager;->()V
+HSPLandroidx/fragment/app/FragmentManager;->()V
+HSPLandroidx/fragment/app/FragmentManager;->addFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
+HSPLandroidx/fragment/app/FragmentManager;->addFragmentOnAttachListener(Landroidx/fragment/app/FragmentOnAttachListener;)V
+HSPLandroidx/fragment/app/FragmentManager;->attachController(Landroidx/fragment/app/FragmentHostCallback;Landroidx/fragment/app/FragmentContainer;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/FragmentManager;->checkForMenus()Z
+HSPLandroidx/fragment/app/FragmentManager;->checkStateLoss()V
+HSPLandroidx/fragment/app/FragmentManager;->cleanupExec()V
+HSPLandroidx/fragment/app/FragmentManager;->collectAllSpecialEffectsController()Ljava/util/Set;
+HSPLandroidx/fragment/app/FragmentManager;->collectChangedControllers(Ljava/util/ArrayList;II)Ljava/util/Set;
+HSPLandroidx/fragment/app/FragmentManager;->createOrGetFragmentStateManager(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
+HSPLandroidx/fragment/app/FragmentManager;->dispatchActivityCreated()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchAttach()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchCreate()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
+HSPLandroidx/fragment/app/FragmentManager;->dispatchOnAttachFragment(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchParentPrimaryNavigationFragmentChanged(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
+HSPLandroidx/fragment/app/FragmentManager;->dispatchPrimaryNavigationFragmentChanged()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchResume()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchStart()V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchStateChange(I)V
+HSPLandroidx/fragment/app/FragmentManager;->dispatchViewCreated()V
+HSPLandroidx/fragment/app/FragmentManager;->doPendingDeferredStart()V
+HSPLandroidx/fragment/app/FragmentManager;->enqueueAction(Landroidx/fragment/app/FragmentManager$OpGenerator;Z)V
+HSPLandroidx/fragment/app/FragmentManager;->ensureExecReady(Z)V
+HSPLandroidx/fragment/app/FragmentManager;->execPendingActions(Z)Z
+HSPLandroidx/fragment/app/FragmentManager;->executeOps(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
+HSPLandroidx/fragment/app/FragmentManager;->executeOpsTogether(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
+HSPLandroidx/fragment/app/FragmentManager;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager;->findFragmentById(I)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager;->generateOpsForPendingActions(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
+HSPLandroidx/fragment/app/FragmentManager;->getBackStackEntryCount()I
+HSPLandroidx/fragment/app/FragmentManager;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
+HSPLandroidx/fragment/app/FragmentManager;->getContainer()Landroidx/fragment/app/FragmentContainer;
+HSPLandroidx/fragment/app/FragmentManager;->getFragmentContainer(Landroidx/fragment/app/Fragment;)Landroid/view/ViewGroup;
+HSPLandroidx/fragment/app/FragmentManager;->getFragmentFactory()Landroidx/fragment/app/FragmentFactory;
+HSPLandroidx/fragment/app/FragmentManager;->getHost()Landroidx/fragment/app/FragmentHostCallback;
+HSPLandroidx/fragment/app/FragmentManager;->getLayoutInflaterFactory()Landroid/view/LayoutInflater$Factory2;
+HSPLandroidx/fragment/app/FragmentManager;->getLifecycleCallbacksDispatcher()Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
+HSPLandroidx/fragment/app/FragmentManager;->getParent()Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager;->getPrimaryNavigationFragment()Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager;->getSpecialEffectsControllerFactory()Landroidx/fragment/app/SpecialEffectsControllerFactory;
+HSPLandroidx/fragment/app/FragmentManager;->getStrictModePolicy()Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
+HSPLandroidx/fragment/app/FragmentManager;->getViewFragment(Landroid/view/View;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentManager;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/fragment/app/FragmentManager;->isLoggingEnabled(I)Z
+HSPLandroidx/fragment/app/FragmentManager;->isMenuAvailable(Landroidx/fragment/app/Fragment;)Z
+HSPLandroidx/fragment/app/FragmentManager;->isParentMenuVisible(Landroidx/fragment/app/Fragment;)Z
+HSPLandroidx/fragment/app/FragmentManager;->isPrimaryNavigation(Landroidx/fragment/app/Fragment;)Z
+HSPLandroidx/fragment/app/FragmentManager;->isStateAtLeast(I)Z
+HSPLandroidx/fragment/app/FragmentManager;->isStateSaved()Z
+HSPLandroidx/fragment/app/FragmentManager;->moveToState(IZ)V
+HSPLandroidx/fragment/app/FragmentManager;->noteStateNotSaved()V
+HSPLandroidx/fragment/app/FragmentManager;->performPendingDeferredStart(Landroidx/fragment/app/FragmentStateManager;)V
+HSPLandroidx/fragment/app/FragmentManager;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
+HSPLandroidx/fragment/app/FragmentManager;->removeRedundantOperationsAndExecute(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
+HSPLandroidx/fragment/app/FragmentManager;->scheduleCommit()V
+HSPLandroidx/fragment/app/FragmentManager;->setExitAnimationOrder(Landroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentManager;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentManager;->startPendingDeferredFragments()V
+HSPLandroidx/fragment/app/FragmentManager;->updateOnBackPressedCallbackEnabled()V
+HSPLandroidx/fragment/app/FragmentManagerImpl;->()V
+HSPLandroidx/fragment/app/FragmentManagerViewModel$1;->()V
+HSPLandroidx/fragment/app/FragmentManagerViewModel$1;->create(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->()V
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->(Z)V
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->getInstance(Landroidx/lifecycle/ViewModelStore;)Landroidx/fragment/app/FragmentManagerViewModel;
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/fragment/app/FragmentManagerViewModel;->setIsStateSaved(Z)V
+HSPLandroidx/fragment/app/FragmentStateManager$1;->(Landroidx/fragment/app/FragmentStateManager;Landroid/view/View;)V
+HSPLandroidx/fragment/app/FragmentStateManager$1;->onViewAttachedToWindow(Landroid/view/View;)V
+HSPLandroidx/fragment/app/FragmentStateManager$2;->()V
+HSPLandroidx/fragment/app/FragmentStateManager;->(Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;Landroidx/fragment/app/FragmentStore;Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentStateManager;->activityCreated()V
+HSPLandroidx/fragment/app/FragmentStateManager;->addViewToContainer()V
+HSPLandroidx/fragment/app/FragmentStateManager;->attach()V
+HSPLandroidx/fragment/app/FragmentStateManager;->computeExpectedState()I
+HSPLandroidx/fragment/app/FragmentStateManager;->create()V
+HSPLandroidx/fragment/app/FragmentStateManager;->createView()V
+HSPLandroidx/fragment/app/FragmentStateManager;->ensureInflatedView()V
+HSPLandroidx/fragment/app/FragmentStateManager;->getFragment()Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentStateManager;->moveToExpectedState()V
+HSPLandroidx/fragment/app/FragmentStateManager;->restoreState(Ljava/lang/ClassLoader;)V
+HSPLandroidx/fragment/app/FragmentStateManager;->resume()V
+HSPLandroidx/fragment/app/FragmentStateManager;->setFragmentManagerState(I)V
+HSPLandroidx/fragment/app/FragmentStateManager;->start()V
+HSPLandroidx/fragment/app/FragmentStore;->()V
+HSPLandroidx/fragment/app/FragmentStore;->addFragment(Landroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentStore;->burpActive()V
+HSPLandroidx/fragment/app/FragmentStore;->containsActiveFragment(Ljava/lang/String;)Z
+HSPLandroidx/fragment/app/FragmentStore;->dispatchStateChange(I)V
+HSPLandroidx/fragment/app/FragmentStore;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentStore;->findFragmentById(I)Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/FragmentStore;->findFragmentIndexInContainer(Landroidx/fragment/app/Fragment;)I
+HSPLandroidx/fragment/app/FragmentStore;->getActiveFragmentStateManagers()Ljava/util/List;
+HSPLandroidx/fragment/app/FragmentStore;->getActiveFragments()Ljava/util/List;
+HSPLandroidx/fragment/app/FragmentStore;->getFragmentStateManager(Ljava/lang/String;)Landroidx/fragment/app/FragmentStateManager;
+HSPLandroidx/fragment/app/FragmentStore;->getFragments()Ljava/util/List;
+HSPLandroidx/fragment/app/FragmentStore;->makeActive(Landroidx/fragment/app/FragmentStateManager;)V
+HSPLandroidx/fragment/app/FragmentStore;->moveToExpectedState()V
+HSPLandroidx/fragment/app/FragmentStore;->setNonConfig(Landroidx/fragment/app/FragmentManagerViewModel;)V
+HSPLandroidx/fragment/app/FragmentTransaction$Op;->(ILandroidx/fragment/app/Fragment;)V
+HSPLandroidx/fragment/app/FragmentTransaction$Op;->(ILandroidx/fragment/app/Fragment;Z)V
+HSPLandroidx/fragment/app/FragmentTransaction;->(Landroidx/fragment/app/FragmentFactory;Ljava/lang/ClassLoader;)V
+HSPLandroidx/fragment/app/FragmentTransaction;->addOp(Landroidx/fragment/app/FragmentTransaction$Op;)V
+HSPLandroidx/fragment/app/FragmentTransaction;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
+HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/FragmentTransaction;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/FragmentTransaction;->setReorderingAllowed(Z)Landroidx/fragment/app/FragmentTransaction;
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->(Landroidx/fragment/app/Fragment;Landroidx/lifecycle/ViewModelStore;)V
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->initialize()V
+HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->performRestore(Landroid/os/Bundle;)V
+HSPLandroidx/fragment/app/FragmentViewModelLazyKt;->createViewModelLazy(Landroidx/fragment/app/Fragment;Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)Lkotlin/Lazy;
+HSPLandroidx/fragment/app/SpecialEffectsController$1;->(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$1;->run()V
+HSPLandroidx/fragment/app/SpecialEffectsController$2;->(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$2;->run()V
+HSPLandroidx/fragment/app/SpecialEffectsController$3;->()V
+HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;Landroidx/core/os/CancellationSignal;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->complete()V
+HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->onStart()V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$1;->(Landroidx/fragment/app/SpecialEffectsController$Operation;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->()V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->(Ljava/lang/String;I)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->()V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->(Ljava/lang/String;I)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->applyState(Landroid/view/View;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->from(I)Landroidx/fragment/app/SpecialEffectsController$Operation$State;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$State;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/Fragment;Landroidx/core/os/CancellationSignal;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->addCompletionListener(Ljava/lang/Runnable;)V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->cancel()V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->complete()V
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFinalState()Landroidx/fragment/app/SpecialEffectsController$Operation$State;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFragment()Landroidx/fragment/app/Fragment;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getLifecycleImpact()Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->isCanceled()Z
+HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->mergeWith(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;)V
+HSPLandroidx/fragment/app/SpecialEffectsController;->(Landroid/view/ViewGroup;)V
+HSPLandroidx/fragment/app/SpecialEffectsController;->enqueue(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;)V
+HSPLandroidx/fragment/app/SpecialEffectsController;->enqueueAdd(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/FragmentStateManager;)V
+HSPLandroidx/fragment/app/SpecialEffectsController;->executePendingOperations()V
+HSPLandroidx/fragment/app/SpecialEffectsController;->findPendingOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
+HSPLandroidx/fragment/app/SpecialEffectsController;->findRunningOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
+HSPLandroidx/fragment/app/SpecialEffectsController;->forceCompleteAllOperations()V
+HSPLandroidx/fragment/app/SpecialEffectsController;->getAwaitingCompletionLifecycleImpact(Landroidx/fragment/app/FragmentStateManager;)Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
+HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/FragmentManager;)Landroidx/fragment/app/SpecialEffectsController;
+HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/SpecialEffectsControllerFactory;)Landroidx/fragment/app/SpecialEffectsController;
+HSPLandroidx/fragment/app/SpecialEffectsController;->markPostponedState()V
+HSPLandroidx/fragment/app/SpecialEffectsController;->updateFinalState()V
+HSPLandroidx/fragment/app/SpecialEffectsController;->updateOperationDirection(Z)V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->$values()[Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->()V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->(Ljava/lang/String;I)V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;->()V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->()V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->(Ljava/util/Set;Landroidx/fragment/app/strictmode/FragmentStrictMode$OnViolationListener;Ljava/util/Map;)V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->getFlags$fragment_release()Ljava/util/Set;
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->()V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->()V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->getNearestPolicy(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->logIfDebuggingEnabled(Landroidx/fragment/app/strictmode/Violation;)V
+HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->onFragmentTagUsage(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
+HSPLandroidx/fragment/app/strictmode/FragmentTagUsageViolation;->(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
+HSPLandroidx/fragment/app/strictmode/Violation;->(Landroidx/fragment/app/Fragment;Ljava/lang/String;)V
+Landroidx/fragment/R$id;
+Landroidx/fragment/R$styleable;
+Landroidx/fragment/app/BackStackRecord;
+Landroidx/fragment/app/DefaultSpecialEffectsController;
+Landroidx/fragment/app/Fragment$1;
+Landroidx/fragment/app/Fragment$4;
+Landroidx/fragment/app/Fragment$5;
+Landroidx/fragment/app/Fragment$AnimationInfo;
+Landroidx/fragment/app/Fragment;
+Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;
+Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;
+Landroidx/fragment/app/FragmentActivity$HostCallbacks;
+Landroidx/fragment/app/FragmentActivity;
+Landroidx/fragment/app/FragmentContainer;
+Landroidx/fragment/app/FragmentContainerView;
+Landroidx/fragment/app/FragmentController;
+Landroidx/fragment/app/FragmentFactory;
+Landroidx/fragment/app/FragmentHostCallback;
+Landroidx/fragment/app/FragmentLayoutInflaterFactory$1;
+Landroidx/fragment/app/FragmentLayoutInflaterFactory;
+Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;
+Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
+Landroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;
+Landroidx/fragment/app/FragmentManager$1;
+Landroidx/fragment/app/FragmentManager$2;
+Landroidx/fragment/app/FragmentManager$3;
+Landroidx/fragment/app/FragmentManager$4;
+Landroidx/fragment/app/FragmentManager$6;
+Landroidx/fragment/app/FragmentManager$7;
+Landroidx/fragment/app/FragmentManager$8;
+Landroidx/fragment/app/FragmentManager$9;
+Landroidx/fragment/app/FragmentManager$BackStackEntry;
+Landroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;
+Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;
+Landroidx/fragment/app/FragmentManager$OpGenerator;
+Landroidx/fragment/app/FragmentManager;
+Landroidx/fragment/app/FragmentManagerImpl;
+Landroidx/fragment/app/FragmentManagerViewModel$1;
+Landroidx/fragment/app/FragmentManagerViewModel;
+Landroidx/fragment/app/FragmentOnAttachListener;
+Landroidx/fragment/app/FragmentResultOwner;
+Landroidx/fragment/app/FragmentStateManager$1;
+Landroidx/fragment/app/FragmentStateManager$2;
+Landroidx/fragment/app/FragmentStateManager;
+Landroidx/fragment/app/FragmentStore;
+Landroidx/fragment/app/FragmentTransaction$Op;
+Landroidx/fragment/app/FragmentTransaction;
+Landroidx/fragment/app/FragmentViewLifecycleOwner;
+Landroidx/fragment/app/FragmentViewModelLazyKt;
+Landroidx/fragment/app/SpecialEffectsController$1;
+Landroidx/fragment/app/SpecialEffectsController$2;
+Landroidx/fragment/app/SpecialEffectsController$3;
+Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;
+Landroidx/fragment/app/SpecialEffectsController$Operation$1;
+Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
+Landroidx/fragment/app/SpecialEffectsController$Operation$State;
+Landroidx/fragment/app/SpecialEffectsController$Operation;
+Landroidx/fragment/app/SpecialEffectsController;
+Landroidx/fragment/app/SpecialEffectsControllerFactory;
+Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
+Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;
+Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
+Landroidx/fragment/app/strictmode/FragmentStrictMode;
+Landroidx/fragment/app/strictmode/FragmentTagUsageViolation;
+Landroidx/fragment/app/strictmode/Violation;
+PLandroidx/fragment/app/Fragment$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V
+PLandroidx/fragment/app/Fragment;->getHost()Ljava/lang/Object;
+PLandroidx/fragment/app/Fragment;->initState()V
+PLandroidx/fragment/app/Fragment;->onDestroy()V
+PLandroidx/fragment/app/Fragment;->onDestroyView()V
+PLandroidx/fragment/app/Fragment;->onDetach()V
+PLandroidx/fragment/app/Fragment;->onPause()V
+PLandroidx/fragment/app/Fragment;->onStop()V
+PLandroidx/fragment/app/Fragment;->performDestroy()V
+PLandroidx/fragment/app/Fragment;->performDestroyView()V
+PLandroidx/fragment/app/Fragment;->performDetach()V
+PLandroidx/fragment/app/Fragment;->performPause()V
+PLandroidx/fragment/app/Fragment;->performStop()V
+PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Landroidx/fragment/app/FragmentActivity;
+PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Ljava/lang/Object;
+PLandroidx/fragment/app/FragmentActivity;->markFragmentsCreated()V
+PLandroidx/fragment/app/FragmentActivity;->markState(Landroidx/fragment/app/FragmentManager;Landroidx/lifecycle/Lifecycle$State;)Z
+PLandroidx/fragment/app/FragmentActivity;->onDestroy()V
+PLandroidx/fragment/app/FragmentActivity;->onPause()V
+PLandroidx/fragment/app/FragmentActivity;->onStop()V
+PLandroidx/fragment/app/FragmentContainerView;->addDisappearingFragmentView(Landroid/view/View;)V
+PLandroidx/fragment/app/FragmentContainerView;->removeView(Landroid/view/View;)V
+PLandroidx/fragment/app/FragmentController;->dispatchDestroy()V
+PLandroidx/fragment/app/FragmentController;->dispatchPause()V
+PLandroidx/fragment/app/FragmentController;->dispatchStop()V
+PLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewDetachedFromWindow(Landroid/view/View;)V
+PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDestroyed(Landroidx/fragment/app/Fragment;Z)V
+PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDetached(Landroidx/fragment/app/Fragment;Z)V
+PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPaused(Landroidx/fragment/app/Fragment;Z)V
+PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStopped(Landroidx/fragment/app/Fragment;Z)V
+PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewDestroyed(Landroidx/fragment/app/Fragment;Z)V
+PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDetached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPaused(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStopped(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManager;->clearBackStackStateViewModels()V
+PLandroidx/fragment/app/FragmentManager;->dispatchDestroy()V
+PLandroidx/fragment/app/FragmentManager;->dispatchDestroyView()V
+PLandroidx/fragment/app/FragmentManager;->dispatchPause()V
+PLandroidx/fragment/app/FragmentManager;->dispatchStop()V
+PLandroidx/fragment/app/FragmentManager;->endAnimatingAwayFragments()V
+PLandroidx/fragment/app/FragmentManager;->getFragments()Ljava/util/List;
+PLandroidx/fragment/app/FragmentManager;->isDestroyed()Z
+PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigState(Landroidx/fragment/app/Fragment;)V
+PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigStateInternal(Ljava/lang/String;)V
+PLandroidx/fragment/app/FragmentManagerViewModel;->isCleared()Z
+PLandroidx/fragment/app/FragmentManagerViewModel;->onCleared()V
+PLandroidx/fragment/app/FragmentManagerViewModel;->shouldDestroy(Landroidx/fragment/app/Fragment;)Z
+PLandroidx/fragment/app/FragmentStateManager;->destroy()V
+PLandroidx/fragment/app/FragmentStateManager;->destroyFragmentView()V
+PLandroidx/fragment/app/FragmentStateManager;->detach()V
+PLandroidx/fragment/app/FragmentStateManager;->pause()V
+PLandroidx/fragment/app/FragmentStateManager;->saveViewState()V
+PLandroidx/fragment/app/FragmentStateManager;->stop()V
+PLandroidx/fragment/app/FragmentStore;->getNonConfig()Landroidx/fragment/app/FragmentManagerViewModel;
+PLandroidx/fragment/app/FragmentStore;->makeInactive(Landroidx/fragment/app/FragmentStateManager;)V
+PLandroidx/fragment/app/FragmentViewLifecycleOwner;->performSave(Landroid/os/Bundle;)V
+PLandroidx/fragment/app/FragmentViewLifecycleOwner;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V
+PLandroidx/fragment/app/SpecialEffectsController;->enqueueRemove(Landroidx/fragment/app/FragmentStateManager;)V
diff --git a/obj/Debug/net8.0-android/lp/110/jl/classes.jar b/obj/Debug/net8.0-android/lp/110/jl/classes.jar
new file mode 100644
index 0000000..290807b
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/110/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/110/jl/proguard.txt b/obj/Debug/net8.0-android/lp/110/jl/proguard.txt
new file mode 100644
index 0000000..02c0a31
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/proguard.txt
@@ -0,0 +1,29 @@
+# Copyright (C) 2020 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# The default FragmentFactory creates Fragment instances using reflection
+-if public class ** extends androidx.fragment.app.Fragment
+-keepclasseswithmembers,allowobfuscation public class <1> {
+ public ();
+}
+
+# FragmentTransition will reflectively lookup:
+# androidx.transition.FragmentTransitionSupport
+# We should ensure that we keep the constructor if the code using this is alive
+-if class androidx.fragment.app.FragmentTransition {
+ private static androidx.fragment.app.FragmentTransitionImpl resolveSupportImpl();
+}
+-keep class androidx.transition.FragmentTransitionSupport {
+ public ();
+}
diff --git a/obj/Debug/net8.0-android/lp/110/jl/public.txt b/obj/Debug/net8.0-android/lp/110/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res.zip b/obj/Debug/net8.0-android/lp/110/jl/res.zip
new file mode 100644
index 0000000..90621c0
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/110/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml b/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml
new file mode 100644
index 0000000..97b9de9
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml
@@ -0,0 +1,19 @@
+
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml b/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml
new file mode 100644
index 0000000..c3baa5d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/anim/fragment_fast_out_extra_slow_in.xml
@@ -0,0 +1,18 @@
+
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml
new file mode 100644
index 0000000..1408ac6
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_enter.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml
new file mode 100644
index 0000000..4c50d20
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_close_exit.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml
new file mode 100644
index 0000000..b948a22
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_enter.xml
@@ -0,0 +1,21 @@
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml
new file mode 100644
index 0000000..841049d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_fade_exit.xml
@@ -0,0 +1,21 @@
+
+
+
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml
new file mode 100644
index 0000000..01bd5c0
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_enter.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml
new file mode 100644
index 0000000..dc27998
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/animator/fragment_open_exit.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml
new file mode 100644
index 0000000..cc72ed5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/110/jl/res/values/values.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/111.stamp b/obj/Debug/net8.0-android/lp/111.stamp
new file mode 100644
index 0000000..beabdcc
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/111.stamp
@@ -0,0 +1 @@
+ADC14C1279024346
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml
new file mode 100644
index 0000000..31925b1
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/111/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/111/jl/R.txt b/obj/Debug/net8.0-android/lp/111/jl/R.txt
new file mode 100644
index 0000000..842e7fa
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/111/jl/R.txt
@@ -0,0 +1,203 @@
+int attr alpha 0x0
+int attr fastScrollEnabled 0x0
+int attr fastScrollHorizontalThumbDrawable 0x0
+int attr fastScrollHorizontalTrackDrawable 0x0
+int attr fastScrollVerticalThumbDrawable 0x0
+int attr fastScrollVerticalTrackDrawable 0x0
+int attr font 0x0
+int attr fontProviderAuthority 0x0
+int attr fontProviderCerts 0x0
+int attr fontProviderFetchStrategy 0x0
+int attr fontProviderFetchTimeout 0x0
+int attr fontProviderPackage 0x0
+int attr fontProviderQuery 0x0
+int attr fontStyle 0x0
+int attr fontVariationSettings 0x0
+int attr fontWeight 0x0
+int attr layoutManager 0x0
+int attr recyclerViewStyle 0x0
+int attr reverseLayout 0x0
+int attr spanCount 0x0
+int attr stackFromEnd 0x0
+int attr ttcIndex 0x0
+int color notification_action_color_filter 0x0
+int color notification_icon_bg_color 0x0
+int color ripple_material_light 0x0
+int color secondary_text_default_material_light 0x0
+int dimen compat_button_inset_horizontal_material 0x0
+int dimen compat_button_inset_vertical_material 0x0
+int dimen compat_button_padding_horizontal_material 0x0
+int dimen compat_button_padding_vertical_material 0x0
+int dimen compat_control_corner_material 0x0
+int dimen compat_notification_large_icon_max_height 0x0
+int dimen compat_notification_large_icon_max_width 0x0
+int dimen fastscroll_default_thickness 0x0
+int dimen fastscroll_margin 0x0
+int dimen fastscroll_minimum_range 0x0
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x0
+int dimen item_touch_helper_swipe_escape_max_velocity 0x0
+int dimen item_touch_helper_swipe_escape_velocity 0x0
+int dimen notification_action_icon_size 0x0
+int dimen notification_action_text_size 0x0
+int dimen notification_big_circle_margin 0x0
+int dimen notification_content_margin_start 0x0
+int dimen notification_large_icon_height 0x0
+int dimen notification_large_icon_width 0x0
+int dimen notification_main_column_padding_top 0x0
+int dimen notification_media_narrow_margin 0x0
+int dimen notification_right_icon_size 0x0
+int dimen notification_right_side_padding_top 0x0
+int dimen notification_small_icon_background_padding 0x0
+int dimen notification_small_icon_size_as_large 0x0
+int dimen notification_subtext_size 0x0
+int dimen notification_top_pad 0x0
+int dimen notification_top_pad_large_text 0x0
+int drawable notification_action_background 0x0
+int drawable notification_bg 0x0
+int drawable notification_bg_low 0x0
+int drawable notification_bg_low_normal 0x0
+int drawable notification_bg_low_pressed 0x0
+int drawable notification_bg_normal 0x0
+int drawable notification_bg_normal_pressed 0x0
+int drawable notification_icon_background 0x0
+int drawable notification_template_icon_bg 0x0
+int drawable notification_template_icon_low_bg 0x0
+int drawable notification_tile_bg 0x0
+int drawable notify_panel_notification_icon_bg 0x0
+int id accessibility_action_clickable_span 0x0
+int id accessibility_custom_action_0 0x0
+int id accessibility_custom_action_1 0x0
+int id accessibility_custom_action_10 0x0
+int id accessibility_custom_action_11 0x0
+int id accessibility_custom_action_12 0x0
+int id accessibility_custom_action_13 0x0
+int id accessibility_custom_action_14 0x0
+int id accessibility_custom_action_15 0x0
+int id accessibility_custom_action_16 0x0
+int id accessibility_custom_action_17 0x0
+int id accessibility_custom_action_18 0x0
+int id accessibility_custom_action_19 0x0
+int id accessibility_custom_action_2 0x0
+int id accessibility_custom_action_20 0x0
+int id accessibility_custom_action_21 0x0
+int id accessibility_custom_action_22 0x0
+int id accessibility_custom_action_23 0x0
+int id accessibility_custom_action_24 0x0
+int id accessibility_custom_action_25 0x0
+int id accessibility_custom_action_26 0x0
+int id accessibility_custom_action_27 0x0
+int id accessibility_custom_action_28 0x0
+int id accessibility_custom_action_29 0x0
+int id accessibility_custom_action_3 0x0
+int id accessibility_custom_action_30 0x0
+int id accessibility_custom_action_31 0x0
+int id accessibility_custom_action_4 0x0
+int id accessibility_custom_action_5 0x0
+int id accessibility_custom_action_6 0x0
+int id accessibility_custom_action_7 0x0
+int id accessibility_custom_action_8 0x0
+int id accessibility_custom_action_9 0x0
+int id action_container 0x0
+int id action_divider 0x0
+int id action_image 0x0
+int id action_text 0x0
+int id actions 0x0
+int id async 0x0
+int id blocking 0x0
+int id chronometer 0x0
+int id dialog_button 0x0
+int id forever 0x0
+int id icon 0x0
+int id icon_group 0x0
+int id info 0x0
+int id italic 0x0
+int id item_touch_helper_previous_elevation 0x0
+int id line1 0x0
+int id line3 0x0
+int id normal 0x0
+int id notification_background 0x0
+int id notification_main_column 0x0
+int id notification_main_column_container 0x0
+int id right_icon 0x0
+int id right_side 0x0
+int id tag_accessibility_actions 0x0
+int id tag_accessibility_clickable_spans 0x0
+int id tag_accessibility_heading 0x0
+int id tag_accessibility_pane_title 0x0
+int id tag_screen_reader_focusable 0x0
+int id tag_transition_group 0x0
+int id tag_unhandled_key_event_manager 0x0
+int id tag_unhandled_key_listeners 0x0
+int id text 0x0
+int id text2 0x0
+int id time 0x0
+int id title 0x0
+int integer status_bar_notification_info_maxnum 0x0
+int layout custom_dialog 0x0
+int layout notification_action 0x0
+int layout notification_action_tombstone 0x0
+int layout notification_template_custom_big 0x0
+int layout notification_template_icon_group 0x0
+int layout notification_template_part_chronometer 0x0
+int layout notification_template_part_time 0x0
+int string status_bar_notification_info_overflow 0x0
+int style TextAppearance_Compat_Notification 0x0
+int style TextAppearance_Compat_Notification_Info 0x0
+int style TextAppearance_Compat_Notification_Line2 0x0
+int style TextAppearance_Compat_Notification_Time 0x0
+int style TextAppearance_Compat_Notification_Title 0x0
+int style Widget_Compat_NotificationActionContainer 0x0
+int style Widget_Compat_NotificationActionText 0x0
+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
+int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable RecyclerView_android_clipToPadding 0
+int styleable RecyclerView_android_descendantFocusability 1
+int styleable RecyclerView_android_orientation 2
+int styleable RecyclerView_fastScrollEnabled 3
+int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
+int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
+int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
+int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
+int styleable RecyclerView_layoutManager 8
+int styleable RecyclerView_reverseLayout 9
+int styleable RecyclerView_spanCount 10
+int styleable RecyclerView_stackFromEnd 11
+int[] styleable ViewPager2 { 0x10100c4 }
+int styleable ViewPager2_android_orientation 0
diff --git a/obj/Debug/net8.0-android/lp/111/jl/annotations.zip b/obj/Debug/net8.0-android/lp/111/jl/annotations.zip
new file mode 100644
index 0000000..2b4dbff
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/111/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/111/jl/classes.jar b/obj/Debug/net8.0-android/lp/111/jl/classes.jar
new file mode 100644
index 0000000..2e07982
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/111/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/111/jl/res.zip b/obj/Debug/net8.0-android/lp/111/jl/res.zip
new file mode 100644
index 0000000..20eb322
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/111/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml
new file mode 100644
index 0000000..5170984
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/111/jl/res/values/values.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/112.stamp b/obj/Debug/net8.0-android/lp/112.stamp
new file mode 100644
index 0000000..004ef73
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/112.stamp
@@ -0,0 +1 @@
+83E628A401FFEFB3
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml
new file mode 100644
index 0000000..475fed4
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/112/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/112/jl/R.txt b/obj/Debug/net8.0-android/lp/112/jl/R.txt
new file mode 100644
index 0000000..6bf57bb
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/112/jl/R.txt
@@ -0,0 +1,171 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f070001
+int dimen compat_button_inset_vertical_material 0x7f070002
+int dimen compat_button_padding_horizontal_material 0x7f070003
+int dimen compat_button_padding_vertical_material 0x7f070004
+int dimen compat_control_corner_material 0x7f070005
+int dimen compat_notification_large_icon_max_height 0x7f070006
+int dimen compat_notification_large_icon_max_width 0x7f070007
+int dimen notification_action_icon_size 0x7f070008
+int dimen notification_action_text_size 0x7f070009
+int dimen notification_big_circle_margin 0x7f07000a
+int dimen notification_content_margin_start 0x7f07000b
+int dimen notification_large_icon_height 0x7f07000c
+int dimen notification_large_icon_width 0x7f07000d
+int dimen notification_main_column_padding_top 0x7f07000e
+int dimen notification_media_narrow_margin 0x7f07000f
+int dimen notification_right_icon_size 0x7f070010
+int dimen notification_right_side_padding_top 0x7f070011
+int dimen notification_small_icon_background_padding 0x7f070012
+int dimen notification_small_icon_size_as_large 0x7f070013
+int dimen notification_subtext_size 0x7f070014
+int dimen notification_top_pad 0x7f070015
+int dimen notification_top_pad_large_text 0x7f070016
+int drawable notification_action_background 0x7f080001
+int drawable notification_bg 0x7f080002
+int drawable notification_bg_low 0x7f080003
+int drawable notification_bg_low_normal 0x7f080004
+int drawable notification_bg_low_pressed 0x7f080005
+int drawable notification_bg_normal 0x7f080006
+int drawable notification_bg_normal_pressed 0x7f080007
+int drawable notification_icon_background 0x7f080008
+int drawable notification_template_icon_bg 0x7f080009
+int drawable notification_template_icon_low_bg 0x7f08000a
+int drawable notification_tile_bg 0x7f08000b
+int drawable notify_panel_notification_icon_bg 0x7f08000c
+int id accessibility_action_clickable_span 0x7f0b0001
+int id accessibility_custom_action_0 0x7f0b0002
+int id accessibility_custom_action_1 0x7f0b0003
+int id accessibility_custom_action_10 0x7f0b0004
+int id accessibility_custom_action_11 0x7f0b0005
+int id accessibility_custom_action_12 0x7f0b0006
+int id accessibility_custom_action_13 0x7f0b0007
+int id accessibility_custom_action_14 0x7f0b0008
+int id accessibility_custom_action_15 0x7f0b0009
+int id accessibility_custom_action_16 0x7f0b000a
+int id accessibility_custom_action_17 0x7f0b000b
+int id accessibility_custom_action_18 0x7f0b000c
+int id accessibility_custom_action_19 0x7f0b000d
+int id accessibility_custom_action_2 0x7f0b000e
+int id accessibility_custom_action_20 0x7f0b000f
+int id accessibility_custom_action_21 0x7f0b0010
+int id accessibility_custom_action_22 0x7f0b0011
+int id accessibility_custom_action_23 0x7f0b0012
+int id accessibility_custom_action_24 0x7f0b0013
+int id accessibility_custom_action_25 0x7f0b0014
+int id accessibility_custom_action_26 0x7f0b0015
+int id accessibility_custom_action_27 0x7f0b0016
+int id accessibility_custom_action_28 0x7f0b0017
+int id accessibility_custom_action_29 0x7f0b0018
+int id accessibility_custom_action_3 0x7f0b0019
+int id accessibility_custom_action_30 0x7f0b001a
+int id accessibility_custom_action_31 0x7f0b001b
+int id accessibility_custom_action_4 0x7f0b001c
+int id accessibility_custom_action_5 0x7f0b001d
+int id accessibility_custom_action_6 0x7f0b001e
+int id accessibility_custom_action_7 0x7f0b001f
+int id accessibility_custom_action_8 0x7f0b0020
+int id accessibility_custom_action_9 0x7f0b0021
+int id action_container 0x7f0b0022
+int id action_divider 0x7f0b0023
+int id action_image 0x7f0b0024
+int id action_text 0x7f0b0025
+int id actions 0x7f0b0026
+int id async 0x7f0b0027
+int id blocking 0x7f0b0028
+int id chronometer 0x7f0b0029
+int id dialog_button 0x7f0b002a
+int id forever 0x7f0b002b
+int id icon 0x7f0b002c
+int id icon_group 0x7f0b002d
+int id info 0x7f0b002e
+int id italic 0x7f0b002f
+int id line1 0x7f0b0030
+int id line3 0x7f0b0031
+int id normal 0x7f0b0032
+int id notification_background 0x7f0b0033
+int id notification_main_column 0x7f0b0034
+int id notification_main_column_container 0x7f0b0035
+int id right_icon 0x7f0b0036
+int id right_side 0x7f0b0037
+int id tag_accessibility_actions 0x7f0b0038
+int id tag_accessibility_clickable_spans 0x7f0b0039
+int id tag_accessibility_heading 0x7f0b003a
+int id tag_accessibility_pane_title 0x7f0b003b
+int id tag_screen_reader_focusable 0x7f0b003c
+int id tag_transition_group 0x7f0b003d
+int id tag_unhandled_key_event_manager 0x7f0b003e
+int id tag_unhandled_key_listeners 0x7f0b003f
+int id text 0x7f0b0040
+int id text2 0x7f0b0041
+int id time 0x7f0b0042
+int id title 0x7f0b0043
+int integer status_bar_notification_info_maxnum 0x7f0c0001
+int layout custom_dialog 0x7f0e0001
+int layout notification_action 0x7f0e0002
+int layout notification_action_tombstone 0x7f0e0003
+int layout notification_template_custom_big 0x7f0e0004
+int layout notification_template_icon_group 0x7f0e0005
+int layout notification_template_part_chronometer 0x7f0e0006
+int layout notification_template_part_time 0x7f0e0007
+int string status_bar_notification_info_overflow 0x7f140001
+int style TextAppearance_Compat_Notification 0x7f150001
+int style TextAppearance_Compat_Notification_Info 0x7f150002
+int style TextAppearance_Compat_Notification_Line2 0x7f150003
+int style TextAppearance_Compat_Notification_Time 0x7f150004
+int style TextAppearance_Compat_Notification_Title 0x7f150005
+int style Widget_Compat_NotificationActionContainer 0x7f150006
+int style Widget_Compat_NotificationActionText 0x7f150007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/112/jl/classes.jar b/obj/Debug/net8.0-android/lp/112/jl/classes.jar
new file mode 100644
index 0000000..ba19014
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/112/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/113.stamp b/obj/Debug/net8.0-android/lp/113.stamp
new file mode 100644
index 0000000..8f16a5e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/113.stamp
@@ -0,0 +1 @@
+6CEF3AA865FDE355
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml
new file mode 100644
index 0000000..a35e037
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/113/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/113/jl/R.txt b/obj/Debug/net8.0-android/lp/113/jl/R.txt
new file mode 100644
index 0000000..6bf57bb
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/113/jl/R.txt
@@ -0,0 +1,171 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f070001
+int dimen compat_button_inset_vertical_material 0x7f070002
+int dimen compat_button_padding_horizontal_material 0x7f070003
+int dimen compat_button_padding_vertical_material 0x7f070004
+int dimen compat_control_corner_material 0x7f070005
+int dimen compat_notification_large_icon_max_height 0x7f070006
+int dimen compat_notification_large_icon_max_width 0x7f070007
+int dimen notification_action_icon_size 0x7f070008
+int dimen notification_action_text_size 0x7f070009
+int dimen notification_big_circle_margin 0x7f07000a
+int dimen notification_content_margin_start 0x7f07000b
+int dimen notification_large_icon_height 0x7f07000c
+int dimen notification_large_icon_width 0x7f07000d
+int dimen notification_main_column_padding_top 0x7f07000e
+int dimen notification_media_narrow_margin 0x7f07000f
+int dimen notification_right_icon_size 0x7f070010
+int dimen notification_right_side_padding_top 0x7f070011
+int dimen notification_small_icon_background_padding 0x7f070012
+int dimen notification_small_icon_size_as_large 0x7f070013
+int dimen notification_subtext_size 0x7f070014
+int dimen notification_top_pad 0x7f070015
+int dimen notification_top_pad_large_text 0x7f070016
+int drawable notification_action_background 0x7f080001
+int drawable notification_bg 0x7f080002
+int drawable notification_bg_low 0x7f080003
+int drawable notification_bg_low_normal 0x7f080004
+int drawable notification_bg_low_pressed 0x7f080005
+int drawable notification_bg_normal 0x7f080006
+int drawable notification_bg_normal_pressed 0x7f080007
+int drawable notification_icon_background 0x7f080008
+int drawable notification_template_icon_bg 0x7f080009
+int drawable notification_template_icon_low_bg 0x7f08000a
+int drawable notification_tile_bg 0x7f08000b
+int drawable notify_panel_notification_icon_bg 0x7f08000c
+int id accessibility_action_clickable_span 0x7f0b0001
+int id accessibility_custom_action_0 0x7f0b0002
+int id accessibility_custom_action_1 0x7f0b0003
+int id accessibility_custom_action_10 0x7f0b0004
+int id accessibility_custom_action_11 0x7f0b0005
+int id accessibility_custom_action_12 0x7f0b0006
+int id accessibility_custom_action_13 0x7f0b0007
+int id accessibility_custom_action_14 0x7f0b0008
+int id accessibility_custom_action_15 0x7f0b0009
+int id accessibility_custom_action_16 0x7f0b000a
+int id accessibility_custom_action_17 0x7f0b000b
+int id accessibility_custom_action_18 0x7f0b000c
+int id accessibility_custom_action_19 0x7f0b000d
+int id accessibility_custom_action_2 0x7f0b000e
+int id accessibility_custom_action_20 0x7f0b000f
+int id accessibility_custom_action_21 0x7f0b0010
+int id accessibility_custom_action_22 0x7f0b0011
+int id accessibility_custom_action_23 0x7f0b0012
+int id accessibility_custom_action_24 0x7f0b0013
+int id accessibility_custom_action_25 0x7f0b0014
+int id accessibility_custom_action_26 0x7f0b0015
+int id accessibility_custom_action_27 0x7f0b0016
+int id accessibility_custom_action_28 0x7f0b0017
+int id accessibility_custom_action_29 0x7f0b0018
+int id accessibility_custom_action_3 0x7f0b0019
+int id accessibility_custom_action_30 0x7f0b001a
+int id accessibility_custom_action_31 0x7f0b001b
+int id accessibility_custom_action_4 0x7f0b001c
+int id accessibility_custom_action_5 0x7f0b001d
+int id accessibility_custom_action_6 0x7f0b001e
+int id accessibility_custom_action_7 0x7f0b001f
+int id accessibility_custom_action_8 0x7f0b0020
+int id accessibility_custom_action_9 0x7f0b0021
+int id action_container 0x7f0b0022
+int id action_divider 0x7f0b0023
+int id action_image 0x7f0b0024
+int id action_text 0x7f0b0025
+int id actions 0x7f0b0026
+int id async 0x7f0b0027
+int id blocking 0x7f0b0028
+int id chronometer 0x7f0b0029
+int id dialog_button 0x7f0b002a
+int id forever 0x7f0b002b
+int id icon 0x7f0b002c
+int id icon_group 0x7f0b002d
+int id info 0x7f0b002e
+int id italic 0x7f0b002f
+int id line1 0x7f0b0030
+int id line3 0x7f0b0031
+int id normal 0x7f0b0032
+int id notification_background 0x7f0b0033
+int id notification_main_column 0x7f0b0034
+int id notification_main_column_container 0x7f0b0035
+int id right_icon 0x7f0b0036
+int id right_side 0x7f0b0037
+int id tag_accessibility_actions 0x7f0b0038
+int id tag_accessibility_clickable_spans 0x7f0b0039
+int id tag_accessibility_heading 0x7f0b003a
+int id tag_accessibility_pane_title 0x7f0b003b
+int id tag_screen_reader_focusable 0x7f0b003c
+int id tag_transition_group 0x7f0b003d
+int id tag_unhandled_key_event_manager 0x7f0b003e
+int id tag_unhandled_key_listeners 0x7f0b003f
+int id text 0x7f0b0040
+int id text2 0x7f0b0041
+int id time 0x7f0b0042
+int id title 0x7f0b0043
+int integer status_bar_notification_info_maxnum 0x7f0c0001
+int layout custom_dialog 0x7f0e0001
+int layout notification_action 0x7f0e0002
+int layout notification_action_tombstone 0x7f0e0003
+int layout notification_template_custom_big 0x7f0e0004
+int layout notification_template_icon_group 0x7f0e0005
+int layout notification_template_part_chronometer 0x7f0e0006
+int layout notification_template_part_time 0x7f0e0007
+int string status_bar_notification_info_overflow 0x7f140001
+int style TextAppearance_Compat_Notification 0x7f150001
+int style TextAppearance_Compat_Notification_Info 0x7f150002
+int style TextAppearance_Compat_Notification_Line2 0x7f150003
+int style TextAppearance_Compat_Notification_Time 0x7f150004
+int style TextAppearance_Compat_Notification_Title 0x7f150005
+int style Widget_Compat_NotificationActionContainer 0x7f150006
+int style Widget_Compat_NotificationActionText 0x7f150007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/113/jl/classes.jar b/obj/Debug/net8.0-android/lp/113/jl/classes.jar
new file mode 100644
index 0000000..1ffce77
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/113/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/113/jl/proguard.txt b/obj/Debug/net8.0-android/lp/113/jl/proguard.txt
new file mode 100644
index 0000000..e81eace
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/113/jl/proguard.txt
@@ -0,0 +1,19 @@
+# Copyright (C) 2016 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# keep setters in VectorDrawables so that animations can still work.
+-keepclassmembers class androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$* {
+ void set*(***);
+ *** get*();
+}
diff --git a/obj/Debug/net8.0-android/lp/114.stamp b/obj/Debug/net8.0-android/lp/114.stamp
new file mode 100644
index 0000000..4c0b692
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114.stamp
@@ -0,0 +1 @@
+EB015468CD35CB80
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml
new file mode 100644
index 0000000..9bfa5da
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..d8560bd
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,2 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
diff --git a/obj/Debug/net8.0-android/lp/114/jl/R.txt b/obj/Debug/net8.0-android/lp/114/jl/R.txt
new file mode 100644
index 0000000..b50114e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114/jl/R.txt
@@ -0,0 +1,1643 @@
+int anim abc_fade_in 0x0
+int anim abc_fade_out 0x0
+int anim abc_grow_fade_in_from_bottom 0x0
+int anim abc_popup_enter 0x0
+int anim abc_popup_exit 0x0
+int anim abc_shrink_fade_out_from_bottom 0x0
+int anim abc_slide_in_bottom 0x0
+int anim abc_slide_in_top 0x0
+int anim abc_slide_out_bottom 0x0
+int anim abc_slide_out_top 0x0
+int anim abc_tooltip_enter 0x0
+int anim abc_tooltip_exit 0x0
+int anim fragment_close_enter 0x0
+int anim fragment_close_exit 0x0
+int anim fragment_fade_enter 0x0
+int anim fragment_fade_exit 0x0
+int anim fragment_fast_out_extra_slow_in 0x0
+int anim fragment_open_enter 0x0
+int anim fragment_open_exit 0x0
+int attr actionBarDivider 0x0
+int attr actionBarItemBackground 0x0
+int attr actionBarPopupTheme 0x0
+int attr actionBarSize 0x0
+int attr actionBarSplitStyle 0x0
+int attr actionBarStyle 0x0
+int attr actionBarTabBarStyle 0x0
+int attr actionBarTabStyle 0x0
+int attr actionBarTabTextStyle 0x0
+int attr actionBarTheme 0x0
+int attr actionBarWidgetTheme 0x0
+int attr actionButtonStyle 0x0
+int attr actionDropDownStyle 0x0
+int attr actionLayout 0x0
+int attr actionMenuTextAppearance 0x0
+int attr actionMenuTextColor 0x0
+int attr actionModeBackground 0x0
+int attr actionModeCloseButtonStyle 0x0
+int attr actionModeCloseDrawable 0x0
+int attr actionModeCopyDrawable 0x0
+int attr actionModeCutDrawable 0x0
+int attr actionModeFindDrawable 0x0
+int attr actionModePasteDrawable 0x0
+int attr actionModePopupWindowStyle 0x0
+int attr actionModeSelectAllDrawable 0x0
+int attr actionModeShareDrawable 0x0
+int attr actionModeSplitBackground 0x0
+int attr actionModeStyle 0x0
+int attr actionModeWebSearchDrawable 0x0
+int attr actionOverflowButtonStyle 0x0
+int attr actionOverflowMenuStyle 0x0
+int attr actionProviderClass 0x0
+int attr actionViewClass 0x0
+int attr activityChooserViewStyle 0x0
+int attr alertDialogButtonGroupStyle 0x0
+int attr alertDialogCenterButtons 0x0
+int attr alertDialogStyle 0x0
+int attr alertDialogTheme 0x0
+int attr allowStacking 0x0
+int attr alpha 0x0
+int attr alphabeticModifiers 0x0
+int attr arrowHeadLength 0x0
+int attr arrowShaftLength 0x0
+int attr autoCompleteTextViewStyle 0x0
+int attr autoSizeMaxTextSize 0x0
+int attr autoSizeMinTextSize 0x0
+int attr autoSizePresetSizes 0x0
+int attr autoSizeStepGranularity 0x0
+int attr autoSizeTextType 0x0
+int attr background 0x0
+int attr backgroundSplit 0x0
+int attr backgroundStacked 0x0
+int attr backgroundTint 0x0
+int attr backgroundTintMode 0x0
+int attr barLength 0x0
+int attr borderlessButtonStyle 0x0
+int attr buttonBarButtonStyle 0x0
+int attr buttonBarNegativeButtonStyle 0x0
+int attr buttonBarNeutralButtonStyle 0x0
+int attr buttonBarPositiveButtonStyle 0x0
+int attr buttonBarStyle 0x0
+int attr buttonGravity 0x0
+int attr buttonIconDimen 0x0
+int attr buttonPanelSideLayout 0x0
+int attr buttonStyle 0x0
+int attr buttonStyleSmall 0x0
+int attr buttonTint 0x0
+int attr buttonTintMode 0x0
+int attr checkboxStyle 0x0
+int attr checkedTextViewStyle 0x0
+int attr closeIcon 0x0
+int attr closeItemLayout 0x0
+int attr collapseContentDescription 0x0
+int attr collapseIcon 0x0
+int attr color 0x0
+int attr colorAccent 0x0
+int attr colorBackgroundFloating 0x0
+int attr colorButtonNormal 0x0
+int attr colorControlActivated 0x0
+int attr colorControlHighlight 0x0
+int attr colorControlNormal 0x0
+int attr colorError 0x0
+int attr colorPrimary 0x0
+int attr colorPrimaryDark 0x0
+int attr colorSwitchThumbNormal 0x0
+int attr commitIcon 0x0
+int attr contentDescription 0x0
+int attr contentInsetEnd 0x0
+int attr contentInsetEndWithActions 0x0
+int attr contentInsetLeft 0x0
+int attr contentInsetRight 0x0
+int attr contentInsetStart 0x0
+int attr contentInsetStartWithNavigation 0x0
+int attr controlBackground 0x0
+int attr coordinatorLayoutStyle 0x0
+int attr customNavigationLayout 0x0
+int attr defaultQueryHint 0x0
+int attr dialogCornerRadius 0x0
+int attr dialogPreferredPadding 0x0
+int attr dialogTheme 0x0
+int attr displayOptions 0x0
+int attr divider 0x0
+int attr dividerHorizontal 0x0
+int attr dividerPadding 0x0
+int attr dividerVertical 0x0
+int attr drawableSize 0x0
+int attr drawerArrowStyle 0x0
+int attr dropDownListViewStyle 0x0
+int attr dropdownListPreferredItemHeight 0x0
+int attr editTextBackground 0x0
+int attr editTextColor 0x0
+int attr editTextStyle 0x0
+int attr elevation 0x0
+int attr expandActivityOverflowButtonDrawable 0x0
+int attr firstBaselineToTopHeight 0x0
+int attr font 0x0
+int attr fontFamily 0x0
+int attr fontProviderAuthority 0x0
+int attr fontProviderCerts 0x0
+int attr fontProviderFetchStrategy 0x0
+int attr fontProviderFetchTimeout 0x0
+int attr fontProviderPackage 0x0
+int attr fontProviderQuery 0x0
+int attr fontStyle 0x0
+int attr fontVariationSettings 0x0
+int attr fontWeight 0x0
+int attr gapBetweenBars 0x0
+int attr goIcon 0x0
+int attr height 0x0
+int attr hideOnContentScroll 0x0
+int attr homeAsUpIndicator 0x0
+int attr homeLayout 0x0
+int attr icon 0x0
+int attr iconTint 0x0
+int attr iconTintMode 0x0
+int attr iconifiedByDefault 0x0
+int attr imageButtonStyle 0x0
+int attr indeterminateProgressStyle 0x0
+int attr initialActivityCount 0x0
+int attr isLightTheme 0x0
+int attr itemPadding 0x0
+int attr keylines 0x0
+int attr lastBaselineToBottomHeight 0x0
+int attr layout 0x0
+int attr layout_anchor 0x0
+int attr layout_anchorGravity 0x0
+int attr layout_behavior 0x0
+int attr layout_dodgeInsetEdges 0x0
+int attr layout_insetEdge 0x0
+int attr layout_keyline 0x0
+int attr lineHeight 0x0
+int attr listChoiceBackgroundIndicator 0x0
+int attr listDividerAlertDialog 0x0
+int attr listItemLayout 0x0
+int attr listLayout 0x0
+int attr listMenuViewStyle 0x0
+int attr listPopupWindowStyle 0x0
+int attr listPreferredItemHeight 0x0
+int attr listPreferredItemHeightLarge 0x0
+int attr listPreferredItemHeightSmall 0x0
+int attr listPreferredItemPaddingLeft 0x0
+int attr listPreferredItemPaddingRight 0x0
+int attr logo 0x0
+int attr logoDescription 0x0
+int attr maxButtonHeight 0x0
+int attr measureWithLargestChild 0x0
+int attr multiChoiceItemLayout 0x0
+int attr navigationContentDescription 0x0
+int attr navigationIcon 0x0
+int attr navigationMode 0x0
+int attr numericModifiers 0x0
+int attr overlapAnchor 0x0
+int attr paddingBottomNoButtons 0x0
+int attr paddingEnd 0x0
+int attr paddingStart 0x0
+int attr paddingTopNoTitle 0x0
+int attr panelBackground 0x0
+int attr panelMenuListTheme 0x0
+int attr panelMenuListWidth 0x0
+int attr popupMenuStyle 0x0
+int attr popupTheme 0x0
+int attr popupWindowStyle 0x0
+int attr preserveIconSpacing 0x0
+int attr progressBarPadding 0x0
+int attr progressBarStyle 0x0
+int attr queryBackground 0x0
+int attr queryHint 0x0
+int attr radioButtonStyle 0x0
+int attr ratingBarStyle 0x0
+int attr ratingBarStyleIndicator 0x0
+int attr ratingBarStyleSmall 0x0
+int attr searchHintIcon 0x0
+int attr searchIcon 0x0
+int attr searchViewStyle 0x0
+int attr seekBarStyle 0x0
+int attr selectableItemBackground 0x0
+int attr selectableItemBackgroundBorderless 0x0
+int attr showAsAction 0x0
+int attr showDividers 0x0
+int attr showText 0x0
+int attr showTitle 0x0
+int attr singleChoiceItemLayout 0x0
+int attr spinBars 0x0
+int attr spinnerDropDownItemStyle 0x0
+int attr spinnerStyle 0x0
+int attr splitTrack 0x0
+int attr srcCompat 0x0
+int attr state_above_anchor 0x0
+int attr statusBarBackground 0x0
+int attr subMenuArrow 0x0
+int attr submitBackground 0x0
+int attr subtitle 0x0
+int attr subtitleTextAppearance 0x0
+int attr subtitleTextColor 0x0
+int attr subtitleTextStyle 0x0
+int attr suggestionRowLayout 0x0
+int attr switchMinWidth 0x0
+int attr switchPadding 0x0
+int attr switchStyle 0x0
+int attr switchTextAppearance 0x0
+int attr textAllCaps 0x0
+int attr textAppearanceLargePopupMenu 0x0
+int attr textAppearanceListItem 0x0
+int attr textAppearanceListItemSecondary 0x0
+int attr textAppearanceListItemSmall 0x0
+int attr textAppearancePopupMenuHeader 0x0
+int attr textAppearanceSearchResultSubtitle 0x0
+int attr textAppearanceSearchResultTitle 0x0
+int attr textAppearanceSmallPopupMenu 0x0
+int attr textColorAlertDialogListItem 0x0
+int attr textColorSearchUrl 0x0
+int attr theme 0x0
+int attr thickness 0x0
+int attr thumbTextPadding 0x0
+int attr thumbTint 0x0
+int attr thumbTintMode 0x0
+int attr tickMark 0x0
+int attr tickMarkTint 0x0
+int attr tickMarkTintMode 0x0
+int attr tint 0x0
+int attr tintMode 0x0
+int attr title 0x0
+int attr titleMargin 0x0
+int attr titleMarginBottom 0x0
+int attr titleMarginEnd 0x0
+int attr titleMarginStart 0x0
+int attr titleMarginTop 0x0
+int attr titleMargins 0x0
+int attr titleTextAppearance 0x0
+int attr titleTextColor 0x0
+int attr titleTextStyle 0x0
+int attr toolbarNavigationButtonStyle 0x0
+int attr toolbarStyle 0x0
+int attr tooltipForegroundColor 0x0
+int attr tooltipFrameBackground 0x0
+int attr tooltipText 0x0
+int attr track 0x0
+int attr trackTint 0x0
+int attr trackTintMode 0x0
+int attr ttcIndex 0x0
+int attr viewInflaterClass 0x0
+int attr voiceIcon 0x0
+int attr windowActionBar 0x0
+int attr windowActionBarOverlay 0x0
+int attr windowActionModeOverlay 0x0
+int attr windowFixedHeightMajor 0x0
+int attr windowFixedHeightMinor 0x0
+int attr windowFixedWidthMajor 0x0
+int attr windowFixedWidthMinor 0x0
+int attr windowMinWidthMajor 0x0
+int attr windowMinWidthMinor 0x0
+int attr windowNoTitle 0x0
+int bool abc_action_bar_embed_tabs 0x0
+int bool abc_allow_stacked_button_bar 0x0
+int bool abc_config_actionMenuItemAllCaps 0x0
+int color abc_background_cache_hint_selector_material_dark 0x0
+int color abc_background_cache_hint_selector_material_light 0x0
+int color abc_btn_colored_borderless_text_material 0x0
+int color abc_btn_colored_text_material 0x0
+int color abc_color_highlight_material 0x0
+int color abc_hint_foreground_material_dark 0x0
+int color abc_hint_foreground_material_light 0x0
+int color abc_input_method_navigation_guard 0x0
+int color abc_primary_text_disable_only_material_dark 0x0
+int color abc_primary_text_disable_only_material_light 0x0
+int color abc_primary_text_material_dark 0x0
+int color abc_primary_text_material_light 0x0
+int color abc_search_url_text 0x0
+int color abc_search_url_text_normal 0x0
+int color abc_search_url_text_pressed 0x0
+int color abc_search_url_text_selected 0x0
+int color abc_secondary_text_material_dark 0x0
+int color abc_secondary_text_material_light 0x0
+int color abc_tint_btn_checkable 0x0
+int color abc_tint_default 0x0
+int color abc_tint_edittext 0x0
+int color abc_tint_seek_thumb 0x0
+int color abc_tint_spinner 0x0
+int color abc_tint_switch_track 0x0
+int color accent_material_dark 0x0
+int color accent_material_light 0x0
+int color background_floating_material_dark 0x0
+int color background_floating_material_light 0x0
+int color background_material_dark 0x0
+int color background_material_light 0x0
+int color bright_foreground_disabled_material_dark 0x0
+int color bright_foreground_disabled_material_light 0x0
+int color bright_foreground_inverse_material_dark 0x0
+int color bright_foreground_inverse_material_light 0x0
+int color bright_foreground_material_dark 0x0
+int color bright_foreground_material_light 0x0
+int color button_material_dark 0x0
+int color button_material_light 0x0
+int color dim_foreground_disabled_material_dark 0x0
+int color dim_foreground_disabled_material_light 0x0
+int color dim_foreground_material_dark 0x0
+int color dim_foreground_material_light 0x0
+int color error_color_material_dark 0x0
+int color error_color_material_light 0x0
+int color foreground_material_dark 0x0
+int color foreground_material_light 0x0
+int color highlighted_text_material_dark 0x0
+int color highlighted_text_material_light 0x0
+int color material_blue_grey_800 0x0
+int color material_blue_grey_900 0x0
+int color material_blue_grey_950 0x0
+int color material_deep_teal_200 0x0
+int color material_deep_teal_500 0x0
+int color material_grey_100 0x0
+int color material_grey_300 0x0
+int color material_grey_50 0x0
+int color material_grey_600 0x0
+int color material_grey_800 0x0
+int color material_grey_850 0x0
+int color material_grey_900 0x0
+int color notification_action_color_filter 0x0
+int color notification_icon_bg_color 0x0
+int color primary_dark_material_dark 0x0
+int color primary_dark_material_light 0x0
+int color primary_material_dark 0x0
+int color primary_material_light 0x0
+int color primary_text_default_material_dark 0x0
+int color primary_text_default_material_light 0x0
+int color primary_text_disabled_material_dark 0x0
+int color primary_text_disabled_material_light 0x0
+int color ripple_material_dark 0x0
+int color ripple_material_light 0x0
+int color secondary_text_default_material_dark 0x0
+int color secondary_text_default_material_light 0x0
+int color secondary_text_disabled_material_dark 0x0
+int color secondary_text_disabled_material_light 0x0
+int color switch_thumb_disabled_material_dark 0x0
+int color switch_thumb_disabled_material_light 0x0
+int color switch_thumb_material_dark 0x0
+int color switch_thumb_material_light 0x0
+int color switch_thumb_normal_material_dark 0x0
+int color switch_thumb_normal_material_light 0x0
+int color tooltip_background_dark 0x0
+int color tooltip_background_light 0x0
+int dimen abc_action_bar_content_inset_material 0x0
+int dimen abc_action_bar_content_inset_with_nav 0x0
+int dimen abc_action_bar_default_height_material 0x0
+int dimen abc_action_bar_default_padding_end_material 0x0
+int dimen abc_action_bar_default_padding_start_material 0x0
+int dimen abc_action_bar_elevation_material 0x0
+int dimen abc_action_bar_icon_vertical_padding_material 0x0
+int dimen abc_action_bar_overflow_padding_end_material 0x0
+int dimen abc_action_bar_overflow_padding_start_material 0x0
+int dimen abc_action_bar_stacked_max_height 0x0
+int dimen abc_action_bar_stacked_tab_max_width 0x0
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0
+int dimen abc_action_bar_subtitle_top_margin_material 0x0
+int dimen abc_action_button_min_height_material 0x0
+int dimen abc_action_button_min_width_material 0x0
+int dimen abc_action_button_min_width_overflow_material 0x0
+int dimen abc_alert_dialog_button_bar_height 0x0
+int dimen abc_alert_dialog_button_dimen 0x0
+int dimen abc_button_inset_horizontal_material 0x0
+int dimen abc_button_inset_vertical_material 0x0
+int dimen abc_button_padding_horizontal_material 0x0
+int dimen abc_button_padding_vertical_material 0x0
+int dimen abc_cascading_menus_min_smallest_width 0x0
+int dimen abc_config_prefDialogWidth 0x0
+int dimen abc_control_corner_material 0x0
+int dimen abc_control_inset_material 0x0
+int dimen abc_control_padding_material 0x0
+int dimen abc_dialog_corner_radius_material 0x0
+int dimen abc_dialog_fixed_height_major 0x0
+int dimen abc_dialog_fixed_height_minor 0x0
+int dimen abc_dialog_fixed_width_major 0x0
+int dimen abc_dialog_fixed_width_minor 0x0
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0
+int dimen abc_dialog_list_padding_top_no_title 0x0
+int dimen abc_dialog_min_width_major 0x0
+int dimen abc_dialog_min_width_minor 0x0
+int dimen abc_dialog_padding_material 0x0
+int dimen abc_dialog_padding_top_material 0x0
+int dimen abc_dialog_title_divider_material 0x0
+int dimen abc_disabled_alpha_material_dark 0x0
+int dimen abc_disabled_alpha_material_light 0x0
+int dimen abc_dropdownitem_icon_width 0x0
+int dimen abc_dropdownitem_text_padding_left 0x0
+int dimen abc_dropdownitem_text_padding_right 0x0
+int dimen abc_edit_text_inset_bottom_material 0x0
+int dimen abc_edit_text_inset_horizontal_material 0x0
+int dimen abc_edit_text_inset_top_material 0x0
+int dimen abc_floating_window_z 0x0
+int dimen abc_list_item_padding_horizontal_material 0x0
+int dimen abc_panel_menu_list_width 0x0
+int dimen abc_progress_bar_height_material 0x0
+int dimen abc_search_view_preferred_height 0x0
+int dimen abc_search_view_preferred_width 0x0
+int dimen abc_seekbar_track_background_height_material 0x0
+int dimen abc_seekbar_track_progress_height_material 0x0
+int dimen abc_select_dialog_padding_start_material 0x0
+int dimen abc_switch_padding 0x0
+int dimen abc_text_size_body_1_material 0x0
+int dimen abc_text_size_body_2_material 0x0
+int dimen abc_text_size_button_material 0x0
+int dimen abc_text_size_caption_material 0x0
+int dimen abc_text_size_display_1_material 0x0
+int dimen abc_text_size_display_2_material 0x0
+int dimen abc_text_size_display_3_material 0x0
+int dimen abc_text_size_display_4_material 0x0
+int dimen abc_text_size_headline_material 0x0
+int dimen abc_text_size_large_material 0x0
+int dimen abc_text_size_medium_material 0x0
+int dimen abc_text_size_menu_header_material 0x0
+int dimen abc_text_size_menu_material 0x0
+int dimen abc_text_size_small_material 0x0
+int dimen abc_text_size_subhead_material 0x0
+int dimen abc_text_size_subtitle_material_toolbar 0x0
+int dimen abc_text_size_title_material 0x0
+int dimen abc_text_size_title_material_toolbar 0x0
+int dimen compat_button_inset_horizontal_material 0x0
+int dimen compat_button_inset_vertical_material 0x0
+int dimen compat_button_padding_horizontal_material 0x0
+int dimen compat_button_padding_vertical_material 0x0
+int dimen compat_control_corner_material 0x0
+int dimen compat_notification_large_icon_max_height 0x0
+int dimen compat_notification_large_icon_max_width 0x0
+int dimen disabled_alpha_material_dark 0x0
+int dimen disabled_alpha_material_light 0x0
+int dimen highlight_alpha_material_colored 0x0
+int dimen highlight_alpha_material_dark 0x0
+int dimen highlight_alpha_material_light 0x0
+int dimen hint_alpha_material_dark 0x0
+int dimen hint_alpha_material_light 0x0
+int dimen hint_pressed_alpha_material_dark 0x0
+int dimen hint_pressed_alpha_material_light 0x0
+int dimen notification_action_icon_size 0x0
+int dimen notification_action_text_size 0x0
+int dimen notification_big_circle_margin 0x0
+int dimen notification_content_margin_start 0x0
+int dimen notification_large_icon_height 0x0
+int dimen notification_large_icon_width 0x0
+int dimen notification_main_column_padding_top 0x0
+int dimen notification_media_narrow_margin 0x0
+int dimen notification_right_icon_size 0x0
+int dimen notification_right_side_padding_top 0x0
+int dimen notification_small_icon_background_padding 0x0
+int dimen notification_small_icon_size_as_large 0x0
+int dimen notification_subtext_size 0x0
+int dimen notification_top_pad 0x0
+int dimen notification_top_pad_large_text 0x0
+int dimen tooltip_corner_radius 0x0
+int dimen tooltip_horizontal_padding 0x0
+int dimen tooltip_margin 0x0
+int dimen tooltip_precise_anchor_extra_offset 0x0
+int dimen tooltip_precise_anchor_threshold 0x0
+int dimen tooltip_vertical_padding 0x0
+int dimen tooltip_y_offset_non_touch 0x0
+int dimen tooltip_y_offset_touch 0x0
+int drawable abc_ab_share_pack_mtrl_alpha 0x0
+int drawable abc_action_bar_item_background_material 0x0
+int drawable abc_btn_borderless_material 0x0
+int drawable abc_btn_check_material 0x0
+int drawable abc_btn_check_to_on_mtrl_000 0x0
+int drawable abc_btn_check_to_on_mtrl_015 0x0
+int drawable abc_btn_colored_material 0x0
+int drawable abc_btn_default_mtrl_shape 0x0
+int drawable abc_btn_radio_material 0x0
+int drawable abc_btn_radio_to_on_mtrl_000 0x0
+int drawable abc_btn_radio_to_on_mtrl_015 0x0
+int drawable abc_btn_switch_to_on_mtrl_00001 0x0
+int drawable abc_btn_switch_to_on_mtrl_00012 0x0
+int drawable abc_cab_background_internal_bg 0x0
+int drawable abc_cab_background_top_material 0x0
+int drawable abc_cab_background_top_mtrl_alpha 0x0
+int drawable abc_control_background_material 0x0
+int drawable abc_dialog_material_background 0x0
+int drawable abc_edit_text_material 0x0
+int drawable abc_ic_ab_back_material 0x0
+int drawable abc_ic_arrow_drop_right_black_24dp 0x0
+int drawable abc_ic_clear_material 0x0
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0
+int drawable abc_ic_go_search_api_material 0x0
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0
+int drawable abc_ic_menu_cut_mtrl_alpha 0x0
+int drawable abc_ic_menu_overflow_material 0x0
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0
+int drawable abc_ic_menu_share_mtrl_alpha 0x0
+int drawable abc_ic_search_api_material 0x0
+int drawable abc_ic_star_black_16dp 0x0
+int drawable abc_ic_star_black_36dp 0x0
+int drawable abc_ic_star_black_48dp 0x0
+int drawable abc_ic_star_half_black_16dp 0x0
+int drawable abc_ic_star_half_black_36dp 0x0
+int drawable abc_ic_star_half_black_48dp 0x0
+int drawable abc_ic_voice_search_api_material 0x0
+int drawable abc_item_background_holo_dark 0x0
+int drawable abc_item_background_holo_light 0x0
+int drawable abc_list_divider_material 0x0
+int drawable abc_list_divider_mtrl_alpha 0x0
+int drawable abc_list_focused_holo 0x0
+int drawable abc_list_longpressed_holo 0x0
+int drawable abc_list_pressed_holo_dark 0x0
+int drawable abc_list_pressed_holo_light 0x0
+int drawable abc_list_selector_background_transition_holo_dark 0x0
+int drawable abc_list_selector_background_transition_holo_light 0x0
+int drawable abc_list_selector_disabled_holo_dark 0x0
+int drawable abc_list_selector_disabled_holo_light 0x0
+int drawable abc_list_selector_holo_dark 0x0
+int drawable abc_list_selector_holo_light 0x0
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0
+int drawable abc_popup_background_mtrl_mult 0x0
+int drawable abc_ratingbar_indicator_material 0x0
+int drawable abc_ratingbar_material 0x0
+int drawable abc_ratingbar_small_material 0x0
+int drawable abc_scrubber_control_off_mtrl_alpha 0x0
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0
+int drawable abc_scrubber_primary_mtrl_alpha 0x0
+int drawable abc_scrubber_track_mtrl_alpha 0x0
+int drawable abc_seekbar_thumb_material 0x0
+int drawable abc_seekbar_tick_mark_material 0x0
+int drawable abc_seekbar_track_material 0x0
+int drawable abc_spinner_mtrl_am_alpha 0x0
+int drawable abc_spinner_textfield_background_material 0x0
+int drawable abc_switch_thumb_material 0x0
+int drawable abc_switch_track_mtrl_alpha 0x0
+int drawable abc_tab_indicator_material 0x0
+int drawable abc_tab_indicator_mtrl_alpha 0x0
+int drawable abc_text_cursor_material 0x0
+int drawable abc_text_select_handle_left_mtrl_dark 0x0
+int drawable abc_text_select_handle_left_mtrl_light 0x0
+int drawable abc_text_select_handle_middle_mtrl_dark 0x0
+int drawable abc_text_select_handle_middle_mtrl_light 0x0
+int drawable abc_text_select_handle_right_mtrl_dark 0x0
+int drawable abc_text_select_handle_right_mtrl_light 0x0
+int drawable abc_textfield_activated_mtrl_alpha 0x0
+int drawable abc_textfield_default_mtrl_alpha 0x0
+int drawable abc_textfield_search_activated_mtrl_alpha 0x0
+int drawable abc_textfield_search_default_mtrl_alpha 0x0
+int drawable abc_textfield_search_material 0x0
+int drawable abc_vector_test 0x0
+int drawable notification_action_background 0x0
+int drawable notification_bg 0x0
+int drawable notification_bg_low 0x0
+int drawable notification_bg_low_normal 0x0
+int drawable notification_bg_low_pressed 0x0
+int drawable notification_bg_normal 0x0
+int drawable notification_bg_normal_pressed 0x0
+int drawable notification_icon_background 0x0
+int drawable notification_template_icon_bg 0x0
+int drawable notification_template_icon_low_bg 0x0
+int drawable notification_tile_bg 0x0
+int drawable notify_panel_notification_icon_bg 0x0
+int drawable tooltip_frame_dark 0x0
+int drawable tooltip_frame_light 0x0
+int id accessibility_action_clickable_span 0x0
+int id accessibility_custom_action_0 0x0
+int id accessibility_custom_action_1 0x0
+int id accessibility_custom_action_10 0x0
+int id accessibility_custom_action_11 0x0
+int id accessibility_custom_action_12 0x0
+int id accessibility_custom_action_13 0x0
+int id accessibility_custom_action_14 0x0
+int id accessibility_custom_action_15 0x0
+int id accessibility_custom_action_16 0x0
+int id accessibility_custom_action_17 0x0
+int id accessibility_custom_action_18 0x0
+int id accessibility_custom_action_19 0x0
+int id accessibility_custom_action_2 0x0
+int id accessibility_custom_action_20 0x0
+int id accessibility_custom_action_21 0x0
+int id accessibility_custom_action_22 0x0
+int id accessibility_custom_action_23 0x0
+int id accessibility_custom_action_24 0x0
+int id accessibility_custom_action_25 0x0
+int id accessibility_custom_action_26 0x0
+int id accessibility_custom_action_27 0x0
+int id accessibility_custom_action_28 0x0
+int id accessibility_custom_action_29 0x0
+int id accessibility_custom_action_3 0x0
+int id accessibility_custom_action_30 0x0
+int id accessibility_custom_action_31 0x0
+int id accessibility_custom_action_4 0x0
+int id accessibility_custom_action_5 0x0
+int id accessibility_custom_action_6 0x0
+int id accessibility_custom_action_7 0x0
+int id accessibility_custom_action_8 0x0
+int id accessibility_custom_action_9 0x0
+int id action_bar 0x0
+int id action_bar_activity_content 0x0
+int id action_bar_container 0x0
+int id action_bar_root 0x0
+int id action_bar_spinner 0x0
+int id action_bar_subtitle 0x0
+int id action_bar_title 0x0
+int id action_container 0x0
+int id action_context_bar 0x0
+int id action_divider 0x0
+int id action_image 0x0
+int id action_menu_divider 0x0
+int id action_menu_presenter 0x0
+int id action_mode_bar 0x0
+int id action_mode_bar_stub 0x0
+int id action_mode_close_button 0x0
+int id action_text 0x0
+int id actions 0x0
+int id activity_chooser_view_content 0x0
+int id add 0x0
+int id alertTitle 0x0
+int id async 0x0
+int id blocking 0x0
+int id bottom 0x0
+int id buttonPanel 0x0
+int id checkbox 0x0
+int id chronometer 0x0
+int id content 0x0
+int id contentPanel 0x0
+int id custom 0x0
+int id customPanel 0x0
+int id decor_content_parent 0x0
+int id default_activity_button 0x0
+int id dialog_button 0x0
+int id edit_query 0x0
+int id end 0x0
+int id expand_activities_button 0x0
+int id expanded_menu 0x0
+int id forever 0x0
+int id fragment_container_view_tag 0x0
+int id ghost_view 0x0
+int id ghost_view_holder 0x0
+int id group_divider 0x0
+int id home 0x0
+int id icon 0x0
+int id icon_group 0x0
+int id image 0x0
+int id info 0x0
+int id italic 0x0
+int id left 0x0
+int id line1 0x0
+int id line3 0x0
+int id listMode 0x0
+int id list_item 0x0
+int id message 0x0
+int id multiply 0x0
+int id none 0x0
+int id normal 0x0
+int id notification_background 0x0
+int id notification_main_column 0x0
+int id notification_main_column_container 0x0
+int id parentPanel 0x0
+int id parent_matrix 0x0
+int id progress_circular 0x0
+int id progress_horizontal 0x0
+int id radio 0x0
+int id right 0x0
+int id right_icon 0x0
+int id right_side 0x0
+int id save_non_transition_alpha 0x0
+int id save_overlay_view 0x0
+int id screen 0x0
+int id scrollIndicatorDown 0x0
+int id scrollIndicatorUp 0x0
+int id scrollView 0x0
+int id search_badge 0x0
+int id search_bar 0x0
+int id search_button 0x0
+int id search_close_btn 0x0
+int id search_edit_frame 0x0
+int id search_go_btn 0x0
+int id search_mag_icon 0x0
+int id search_plate 0x0
+int id search_src_text 0x0
+int id search_voice_btn 0x0
+int id select_dialog_listview 0x0
+int id shortcut 0x0
+int id spacer 0x0
+int id split_action_bar 0x0
+int id src_atop 0x0
+int id src_in 0x0
+int id src_over 0x0
+int id start 0x0
+int id submenuarrow 0x0
+int id submit_area 0x0
+int id tabMode 0x0
+int id tag_accessibility_actions 0x0
+int id tag_accessibility_clickable_spans 0x0
+int id tag_accessibility_heading 0x0
+int id tag_accessibility_pane_title 0x0
+int id tag_screen_reader_focusable 0x0
+int id tag_transition_group 0x0
+int id tag_unhandled_key_event_manager 0x0
+int id tag_unhandled_key_listeners 0x0
+int id text 0x0
+int id text2 0x0
+int id textSpacerNoButtons 0x0
+int id textSpacerNoTitle 0x0
+int id time 0x0
+int id title 0x0
+int id titleDividerNoCustom 0x0
+int id title_template 0x0
+int id top 0x0
+int id topPanel 0x0
+int id transition_current_scene 0x0
+int id transition_layout_save 0x0
+int id transition_position 0x0
+int id transition_scene_layoutid_cache 0x0
+int id transition_transform 0x0
+int id uniform 0x0
+int id up 0x0
+int id visible_removing_fragment_view_tag 0x0
+int id wrap_content 0x0
+int integer abc_config_activityDefaultDur 0x0
+int integer abc_config_activityShortDur 0x0
+int integer cancel_button_image_alpha 0x0
+int integer config_tooltipAnimTime 0x0
+int integer status_bar_notification_info_maxnum 0x0
+int layout abc_action_bar_title_item 0x0
+int layout abc_action_bar_up_container 0x0
+int layout abc_action_menu_item_layout 0x0
+int layout abc_action_menu_layout 0x0
+int layout abc_action_mode_bar 0x0
+int layout abc_action_mode_close_item_material 0x0
+int layout abc_activity_chooser_view 0x0
+int layout abc_activity_chooser_view_list_item 0x0
+int layout abc_alert_dialog_button_bar_material 0x0
+int layout abc_alert_dialog_material 0x0
+int layout abc_alert_dialog_title_material 0x0
+int layout abc_cascading_menu_item_layout 0x0
+int layout abc_dialog_title_material 0x0
+int layout abc_expanded_menu_layout 0x0
+int layout abc_list_menu_item_checkbox 0x0
+int layout abc_list_menu_item_icon 0x0
+int layout abc_list_menu_item_layout 0x0
+int layout abc_list_menu_item_radio 0x0
+int layout abc_popup_menu_header_item_layout 0x0
+int layout abc_popup_menu_item_layout 0x0
+int layout abc_screen_content_include 0x0
+int layout abc_screen_simple 0x0
+int layout abc_screen_simple_overlay_action_mode 0x0
+int layout abc_screen_toolbar 0x0
+int layout abc_search_dropdown_item_icons_2line 0x0
+int layout abc_search_view 0x0
+int layout abc_select_dialog_material 0x0
+int layout abc_tooltip 0x0
+int layout custom_dialog 0x0
+int layout notification_action 0x0
+int layout notification_action_tombstone 0x0
+int layout notification_template_custom_big 0x0
+int layout notification_template_icon_group 0x0
+int layout notification_template_part_chronometer 0x0
+int layout notification_template_part_time 0x0
+int layout select_dialog_item_material 0x0
+int layout select_dialog_multichoice_material 0x0
+int layout select_dialog_singlechoice_material 0x0
+int layout support_simple_spinner_dropdown_item 0x0
+int string abc_action_bar_home_description 0x0
+int string abc_action_bar_up_description 0x0
+int string abc_action_menu_overflow_description 0x0
+int string abc_action_mode_done 0x0
+int string abc_activity_chooser_view_see_all 0x0
+int string abc_activitychooserview_choose_application 0x0
+int string abc_capital_off 0x0
+int string abc_capital_on 0x0
+int string abc_font_family_body_1_material 0x0
+int string abc_font_family_body_2_material 0x0
+int string abc_font_family_button_material 0x0
+int string abc_font_family_caption_material 0x0
+int string abc_font_family_display_1_material 0x0
+int string abc_font_family_display_2_material 0x0
+int string abc_font_family_display_3_material 0x0
+int string abc_font_family_display_4_material 0x0
+int string abc_font_family_headline_material 0x0
+int string abc_font_family_menu_material 0x0
+int string abc_font_family_subhead_material 0x0
+int string abc_font_family_title_material 0x0
+int string abc_menu_alt_shortcut_label 0x0
+int string abc_menu_ctrl_shortcut_label 0x0
+int string abc_menu_delete_shortcut_label 0x0
+int string abc_menu_enter_shortcut_label 0x0
+int string abc_menu_function_shortcut_label 0x0
+int string abc_menu_meta_shortcut_label 0x0
+int string abc_menu_shift_shortcut_label 0x0
+int string abc_menu_space_shortcut_label 0x0
+int string abc_menu_sym_shortcut_label 0x0
+int string abc_prepend_shortcut_label 0x0
+int string abc_search_hint 0x0
+int string abc_searchview_description_clear 0x0
+int string abc_searchview_description_query 0x0
+int string abc_searchview_description_search 0x0
+int string abc_searchview_description_submit 0x0
+int string abc_searchview_description_voice 0x0
+int string abc_shareactionprovider_share_with 0x0
+int string abc_shareactionprovider_share_with_application 0x0
+int string abc_toolbar_collapse_description 0x0
+int string search_menu_title 0x0
+int string status_bar_notification_info_overflow 0x0
+int style AlertDialog_AppCompat 0x0
+int style AlertDialog_AppCompat_Light 0x0
+int style Animation_AppCompat_Dialog 0x0
+int style Animation_AppCompat_DropDownUp 0x0
+int style Animation_AppCompat_Tooltip 0x0
+int style Base_AlertDialog_AppCompat 0x0
+int style Base_AlertDialog_AppCompat_Light 0x0
+int style Base_Animation_AppCompat_Dialog 0x0
+int style Base_Animation_AppCompat_DropDownUp 0x0
+int style Base_Animation_AppCompat_Tooltip 0x0
+int style Base_DialogWindowTitleBackground_AppCompat 0x0
+int style Base_DialogWindowTitle_AppCompat 0x0
+int style Base_TextAppearance_AppCompat 0x0
+int style Base_TextAppearance_AppCompat_Body1 0x0
+int style Base_TextAppearance_AppCompat_Body2 0x0
+int style Base_TextAppearance_AppCompat_Button 0x0
+int style Base_TextAppearance_AppCompat_Caption 0x0
+int style Base_TextAppearance_AppCompat_Display1 0x0
+int style Base_TextAppearance_AppCompat_Display2 0x0
+int style Base_TextAppearance_AppCompat_Display3 0x0
+int style Base_TextAppearance_AppCompat_Display4 0x0
+int style Base_TextAppearance_AppCompat_Headline 0x0
+int style Base_TextAppearance_AppCompat_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Large 0x0
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
+int style Base_TextAppearance_AppCompat_Medium 0x0
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Menu 0x0
+int style Base_TextAppearance_AppCompat_SearchResult 0x0
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0
+int style Base_TextAppearance_AppCompat_Small 0x0
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Subhead 0x0
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Title 0x0
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Tooltip 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
+int style Base_ThemeOverlay_AppCompat 0x0
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0
+int style Base_ThemeOverlay_AppCompat_Dark 0x0
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0
+int style Base_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0
+int style Base_ThemeOverlay_AppCompat_Light 0x0
+int style Base_Theme_AppCompat 0x0
+int style Base_Theme_AppCompat_CompactMenu 0x0
+int style Base_Theme_AppCompat_Dialog 0x0
+int style Base_Theme_AppCompat_DialogWhenLarge 0x0
+int style Base_Theme_AppCompat_Dialog_Alert 0x0
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0
+int style Base_Theme_AppCompat_Light 0x0
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0
+int style Base_Theme_AppCompat_Light_Dialog 0x0
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_V21_Theme_AppCompat 0x0
+int style Base_V21_Theme_AppCompat_Dialog 0x0
+int style Base_V21_Theme_AppCompat_Light 0x0
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0
+int style Base_V22_Theme_AppCompat 0x0
+int style Base_V22_Theme_AppCompat_Light 0x0
+int style Base_V23_Theme_AppCompat 0x0
+int style Base_V23_Theme_AppCompat_Light 0x0
+int style Base_V26_Theme_AppCompat 0x0
+int style Base_V26_Theme_AppCompat_Light 0x0
+int style Base_V26_Widget_AppCompat_Toolbar 0x0
+int style Base_V28_Theme_AppCompat 0x0
+int style Base_V28_Theme_AppCompat_Light 0x0
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_V7_Theme_AppCompat 0x0
+int style Base_V7_Theme_AppCompat_Dialog 0x0
+int style Base_V7_Theme_AppCompat_Light 0x0
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0
+int style Base_V7_Widget_AppCompat_EditText 0x0
+int style Base_V7_Widget_AppCompat_Toolbar 0x0
+int style Base_Widget_AppCompat_ActionBar 0x0
+int style Base_Widget_AppCompat_ActionBar_Solid 0x0
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0
+int style Base_Widget_AppCompat_ActionBar_TabText 0x0
+int style Base_Widget_AppCompat_ActionBar_TabView 0x0
+int style Base_Widget_AppCompat_ActionButton 0x0
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0
+int style Base_Widget_AppCompat_ActionMode 0x0
+int style Base_Widget_AppCompat_ActivityChooserView 0x0
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0
+int style Base_Widget_AppCompat_Button 0x0
+int style Base_Widget_AppCompat_ButtonBar 0x0
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0
+int style Base_Widget_AppCompat_Button_Borderless 0x0
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
+int style Base_Widget_AppCompat_Button_Colored 0x0
+int style Base_Widget_AppCompat_Button_Small 0x0
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0
+int style Base_Widget_AppCompat_EditText 0x0
+int style Base_Widget_AppCompat_ImageButton 0x0
+int style Base_Widget_AppCompat_Light_ActionBar 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0
+int style Base_Widget_AppCompat_Light_PopupMenu 0x0
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0
+int style Base_Widget_AppCompat_ListMenuView 0x0
+int style Base_Widget_AppCompat_ListPopupWindow 0x0
+int style Base_Widget_AppCompat_ListView 0x0
+int style Base_Widget_AppCompat_ListView_DropDown 0x0
+int style Base_Widget_AppCompat_ListView_Menu 0x0
+int style Base_Widget_AppCompat_PopupMenu 0x0
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0
+int style Base_Widget_AppCompat_PopupWindow 0x0
+int style Base_Widget_AppCompat_ProgressBar 0x0
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0
+int style Base_Widget_AppCompat_RatingBar 0x0
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0
+int style Base_Widget_AppCompat_RatingBar_Small 0x0
+int style Base_Widget_AppCompat_SearchView 0x0
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0
+int style Base_Widget_AppCompat_SeekBar 0x0
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0
+int style Base_Widget_AppCompat_Spinner 0x0
+int style Base_Widget_AppCompat_Spinner_Underlined 0x0
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0
+int style Base_Widget_AppCompat_Toolbar 0x0
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0
+int style Platform_AppCompat 0x0
+int style Platform_AppCompat_Light 0x0
+int style Platform_ThemeOverlay_AppCompat 0x0
+int style Platform_ThemeOverlay_AppCompat_Dark 0x0
+int style Platform_ThemeOverlay_AppCompat_Light 0x0
+int style Platform_V21_AppCompat 0x0
+int style Platform_V21_AppCompat_Light 0x0
+int style Platform_V25_AppCompat 0x0
+int style Platform_V25_AppCompat_Light 0x0
+int style Platform_Widget_AppCompat_Spinner 0x0
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0
+int style TextAppearance_AppCompat 0x0
+int style TextAppearance_AppCompat_Body1 0x0
+int style TextAppearance_AppCompat_Body2 0x0
+int style TextAppearance_AppCompat_Button 0x0
+int style TextAppearance_AppCompat_Caption 0x0
+int style TextAppearance_AppCompat_Display1 0x0
+int style TextAppearance_AppCompat_Display2 0x0
+int style TextAppearance_AppCompat_Display3 0x0
+int style TextAppearance_AppCompat_Display4 0x0
+int style TextAppearance_AppCompat_Headline 0x0
+int style TextAppearance_AppCompat_Inverse 0x0
+int style TextAppearance_AppCompat_Large 0x0
+int style TextAppearance_AppCompat_Large_Inverse 0x0
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
+int style TextAppearance_AppCompat_Medium 0x0
+int style TextAppearance_AppCompat_Medium_Inverse 0x0
+int style TextAppearance_AppCompat_Menu 0x0
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0
+int style TextAppearance_AppCompat_SearchResult_Title 0x0
+int style TextAppearance_AppCompat_Small 0x0
+int style TextAppearance_AppCompat_Small_Inverse 0x0
+int style TextAppearance_AppCompat_Subhead 0x0
+int style TextAppearance_AppCompat_Subhead_Inverse 0x0
+int style TextAppearance_AppCompat_Title 0x0
+int style TextAppearance_AppCompat_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Tooltip 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_Button 0x0
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
+int style TextAppearance_AppCompat_Widget_Switch 0x0
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
+int style TextAppearance_Compat_Notification 0x0
+int style TextAppearance_Compat_Notification_Info 0x0
+int style TextAppearance_Compat_Notification_Line2 0x0
+int style TextAppearance_Compat_Notification_Time 0x0
+int style TextAppearance_Compat_Notification_Title 0x0
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
+int style ThemeOverlay_AppCompat 0x0
+int style ThemeOverlay_AppCompat_ActionBar 0x0
+int style ThemeOverlay_AppCompat_Dark 0x0
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0
+int style ThemeOverlay_AppCompat_Dialog 0x0
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0
+int style ThemeOverlay_AppCompat_Light 0x0
+int style Theme_AppCompat 0x0
+int style Theme_AppCompat_CompactMenu 0x0
+int style Theme_AppCompat_DayNight 0x0
+int style Theme_AppCompat_DayNight_DarkActionBar 0x0
+int style Theme_AppCompat_DayNight_Dialog 0x0
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0
+int style Theme_AppCompat_DayNight_NoActionBar 0x0
+int style Theme_AppCompat_Dialog 0x0
+int style Theme_AppCompat_DialogWhenLarge 0x0
+int style Theme_AppCompat_Dialog_Alert 0x0
+int style Theme_AppCompat_Dialog_MinWidth 0x0
+int style Theme_AppCompat_Light 0x0
+int style Theme_AppCompat_Light_DarkActionBar 0x0
+int style Theme_AppCompat_Light_Dialog 0x0
+int style Theme_AppCompat_Light_DialogWhenLarge 0x0
+int style Theme_AppCompat_Light_Dialog_Alert 0x0
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0
+int style Theme_AppCompat_Light_NoActionBar 0x0
+int style Theme_AppCompat_NoActionBar 0x0
+int style Widget_AppCompat_ActionBar 0x0
+int style Widget_AppCompat_ActionBar_Solid 0x0
+int style Widget_AppCompat_ActionBar_TabBar 0x0
+int style Widget_AppCompat_ActionBar_TabText 0x0
+int style Widget_AppCompat_ActionBar_TabView 0x0
+int style Widget_AppCompat_ActionButton 0x0
+int style Widget_AppCompat_ActionButton_CloseMode 0x0
+int style Widget_AppCompat_ActionButton_Overflow 0x0
+int style Widget_AppCompat_ActionMode 0x0
+int style Widget_AppCompat_ActivityChooserView 0x0
+int style Widget_AppCompat_AutoCompleteTextView 0x0
+int style Widget_AppCompat_Button 0x0
+int style Widget_AppCompat_ButtonBar 0x0
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0
+int style Widget_AppCompat_Button_Borderless 0x0
+int style Widget_AppCompat_Button_Borderless_Colored 0x0
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
+int style Widget_AppCompat_Button_Colored 0x0
+int style Widget_AppCompat_Button_Small 0x0
+int style Widget_AppCompat_CompoundButton_CheckBox 0x0
+int style Widget_AppCompat_CompoundButton_RadioButton 0x0
+int style Widget_AppCompat_CompoundButton_Switch 0x0
+int style Widget_AppCompat_DrawerArrowToggle 0x0
+int style Widget_AppCompat_DropDownItem_Spinner 0x0
+int style Widget_AppCompat_EditText 0x0
+int style Widget_AppCompat_ImageButton 0x0
+int style Widget_AppCompat_Light_ActionBar 0x0
+int style Widget_AppCompat_Light_ActionBar_Solid 0x0
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabText 0x0
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabView 0x0
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0
+int style Widget_AppCompat_Light_ActionButton 0x0
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0
+int style Widget_AppCompat_Light_ActivityChooserView 0x0
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0
+int style Widget_AppCompat_Light_ListPopupWindow 0x0
+int style Widget_AppCompat_Light_ListView_DropDown 0x0
+int style Widget_AppCompat_Light_PopupMenu 0x0
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0
+int style Widget_AppCompat_Light_SearchView 0x0
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0
+int style Widget_AppCompat_ListMenuView 0x0
+int style Widget_AppCompat_ListPopupWindow 0x0
+int style Widget_AppCompat_ListView 0x0
+int style Widget_AppCompat_ListView_DropDown 0x0
+int style Widget_AppCompat_ListView_Menu 0x0
+int style Widget_AppCompat_PopupMenu 0x0
+int style Widget_AppCompat_PopupMenu_Overflow 0x0
+int style Widget_AppCompat_PopupWindow 0x0
+int style Widget_AppCompat_ProgressBar 0x0
+int style Widget_AppCompat_ProgressBar_Horizontal 0x0
+int style Widget_AppCompat_RatingBar 0x0
+int style Widget_AppCompat_RatingBar_Indicator 0x0
+int style Widget_AppCompat_RatingBar_Small 0x0
+int style Widget_AppCompat_SearchView 0x0
+int style Widget_AppCompat_SearchView_ActionBar 0x0
+int style Widget_AppCompat_SeekBar 0x0
+int style Widget_AppCompat_SeekBar_Discrete 0x0
+int style Widget_AppCompat_Spinner 0x0
+int style Widget_AppCompat_Spinner_DropDown 0x0
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0
+int style Widget_AppCompat_Spinner_Underlined 0x0
+int style Widget_AppCompat_TextView_SpinnerItem 0x0
+int style Widget_AppCompat_Toolbar 0x0
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0
+int style Widget_Compat_NotificationActionContainer 0x0
+int style Widget_Compat_NotificationActionText 0x0
+int style Widget_Support_CoordinatorLayout 0x0
+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x10100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable ActionMode_background 0
+int styleable ActionMode_backgroundSplit 1
+int styleable ActionMode_closeItemLayout 2
+int styleable ActionMode_height 3
+int styleable ActionMode_subtitleTextStyle 4
+int styleable ActionMode_titleTextStyle 5
+int[] styleable ActivityChooserView { 0x0, 0x0 }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonIconDimen 1
+int styleable AlertDialog_buttonPanelSideLayout 2
+int styleable AlertDialog_listItemLayout 3
+int styleable AlertDialog_listLayout 4
+int styleable AlertDialog_multiChoiceItemLayout 5
+int styleable AlertDialog_showTitle 6
+int styleable AlertDialog_singleChoiceItemLayout 7
+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable AnimatedStateListDrawableCompat_android_constantSize 0
+int styleable AnimatedStateListDrawableCompat_android_dither 1
+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
+int styleable AnimatedStateListDrawableCompat_android_visible 5
+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
+int styleable AnimatedStateListDrawableItem_android_drawable 0
+int styleable AnimatedStateListDrawableItem_android_id 1
+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
+int styleable AnimatedStateListDrawableTransition_android_drawable 0
+int styleable AnimatedStateListDrawableTransition_android_fromId 1
+int styleable AnimatedStateListDrawableTransition_android_reversible 2
+int styleable AnimatedStateListDrawableTransition_android_toId 3
+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int styleable AppCompatImageView_tint 2
+int styleable AppCompatImageView_tintMode 3
+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
+int styleable AppCompatTextHelper_android_drawableBottom 0
+int styleable AppCompatTextHelper_android_drawableEnd 1
+int styleable AppCompatTextHelper_android_drawableLeft 2
+int styleable AppCompatTextHelper_android_drawableRight 3
+int styleable AppCompatTextHelper_android_drawableStart 4
+int styleable AppCompatTextHelper_android_drawableTop 5
+int styleable AppCompatTextHelper_android_textAppearance 6
+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_autoSizeMaxTextSize 1
+int styleable AppCompatTextView_autoSizeMinTextSize 2
+int styleable AppCompatTextView_autoSizePresetSizes 3
+int styleable AppCompatTextView_autoSizeStepGranularity 4
+int styleable AppCompatTextView_autoSizeTextType 5
+int styleable AppCompatTextView_firstBaselineToTopHeight 6
+int styleable AppCompatTextView_fontFamily 7
+int styleable AppCompatTextView_lastBaselineToBottomHeight 8
+int styleable AppCompatTextView_lineHeight 9
+int styleable AppCompatTextView_textAllCaps 10
+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AppCompatTheme_actionBarDivider 0
+int styleable AppCompatTheme_actionBarItemBackground 1
+int styleable AppCompatTheme_actionBarPopupTheme 2
+int styleable AppCompatTheme_actionBarSize 3
+int styleable AppCompatTheme_actionBarSplitStyle 4
+int styleable AppCompatTheme_actionBarStyle 5
+int styleable AppCompatTheme_actionBarTabBarStyle 6
+int styleable AppCompatTheme_actionBarTabStyle 7
+int styleable AppCompatTheme_actionBarTabTextStyle 8
+int styleable AppCompatTheme_actionBarTheme 9
+int styleable AppCompatTheme_actionBarWidgetTheme 10
+int styleable AppCompatTheme_actionButtonStyle 11
+int styleable AppCompatTheme_actionDropDownStyle 12
+int styleable AppCompatTheme_actionMenuTextAppearance 13
+int styleable AppCompatTheme_actionMenuTextColor 14
+int styleable AppCompatTheme_actionModeBackground 15
+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
+int styleable AppCompatTheme_actionModeCloseDrawable 17
+int styleable AppCompatTheme_actionModeCopyDrawable 18
+int styleable AppCompatTheme_actionModeCutDrawable 19
+int styleable AppCompatTheme_actionModeFindDrawable 20
+int styleable AppCompatTheme_actionModePasteDrawable 21
+int styleable AppCompatTheme_actionModePopupWindowStyle 22
+int styleable AppCompatTheme_actionModeSelectAllDrawable 23
+int styleable AppCompatTheme_actionModeShareDrawable 24
+int styleable AppCompatTheme_actionModeSplitBackground 25
+int styleable AppCompatTheme_actionModeStyle 26
+int styleable AppCompatTheme_actionModeWebSearchDrawable 27
+int styleable AppCompatTheme_actionOverflowButtonStyle 28
+int styleable AppCompatTheme_actionOverflowMenuStyle 29
+int styleable AppCompatTheme_activityChooserViewStyle 30
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
+int styleable AppCompatTheme_alertDialogCenterButtons 32
+int styleable AppCompatTheme_alertDialogStyle 33
+int styleable AppCompatTheme_alertDialogTheme 34
+int styleable AppCompatTheme_android_windowAnimationStyle 35
+int styleable AppCompatTheme_android_windowIsFloating 36
+int styleable AppCompatTheme_autoCompleteTextViewStyle 37
+int styleable AppCompatTheme_borderlessButtonStyle 38
+int styleable AppCompatTheme_buttonBarButtonStyle 39
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
+int styleable AppCompatTheme_buttonBarStyle 43
+int styleable AppCompatTheme_buttonStyle 44
+int styleable AppCompatTheme_buttonStyleSmall 45
+int styleable AppCompatTheme_checkboxStyle 46
+int styleable AppCompatTheme_checkedTextViewStyle 47
+int styleable AppCompatTheme_colorAccent 48
+int styleable AppCompatTheme_colorBackgroundFloating 49
+int styleable AppCompatTheme_colorButtonNormal 50
+int styleable AppCompatTheme_colorControlActivated 51
+int styleable AppCompatTheme_colorControlHighlight 52
+int styleable AppCompatTheme_colorControlNormal 53
+int styleable AppCompatTheme_colorError 54
+int styleable AppCompatTheme_colorPrimary 55
+int styleable AppCompatTheme_colorPrimaryDark 56
+int styleable AppCompatTheme_colorSwitchThumbNormal 57
+int styleable AppCompatTheme_controlBackground 58
+int styleable AppCompatTheme_dialogCornerRadius 59
+int styleable AppCompatTheme_dialogPreferredPadding 60
+int styleable AppCompatTheme_dialogTheme 61
+int styleable AppCompatTheme_dividerHorizontal 62
+int styleable AppCompatTheme_dividerVertical 63
+int styleable AppCompatTheme_dropDownListViewStyle 64
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
+int styleable AppCompatTheme_editTextBackground 66
+int styleable AppCompatTheme_editTextColor 67
+int styleable AppCompatTheme_editTextStyle 68
+int styleable AppCompatTheme_homeAsUpIndicator 69
+int styleable AppCompatTheme_imageButtonStyle 70
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
+int styleable AppCompatTheme_listDividerAlertDialog 72
+int styleable AppCompatTheme_listMenuViewStyle 73
+int styleable AppCompatTheme_listPopupWindowStyle 74
+int styleable AppCompatTheme_listPreferredItemHeight 75
+int styleable AppCompatTheme_listPreferredItemHeightLarge 76
+int styleable AppCompatTheme_listPreferredItemHeightSmall 77
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
+int styleable AppCompatTheme_listPreferredItemPaddingRight 79
+int styleable AppCompatTheme_panelBackground 80
+int styleable AppCompatTheme_panelMenuListTheme 81
+int styleable AppCompatTheme_panelMenuListWidth 82
+int styleable AppCompatTheme_popupMenuStyle 83
+int styleable AppCompatTheme_popupWindowStyle 84
+int styleable AppCompatTheme_radioButtonStyle 85
+int styleable AppCompatTheme_ratingBarStyle 86
+int styleable AppCompatTheme_ratingBarStyleIndicator 87
+int styleable AppCompatTheme_ratingBarStyleSmall 88
+int styleable AppCompatTheme_searchViewStyle 89
+int styleable AppCompatTheme_seekBarStyle 90
+int styleable AppCompatTheme_selectableItemBackground 91
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
+int styleable AppCompatTheme_spinnerDropDownItemStyle 93
+int styleable AppCompatTheme_spinnerStyle 94
+int styleable AppCompatTheme_switchStyle 95
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
+int styleable AppCompatTheme_textAppearanceListItem 97
+int styleable AppCompatTheme_textAppearanceListItemSecondary 98
+int styleable AppCompatTheme_textAppearanceListItemSmall 99
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
+int styleable AppCompatTheme_textColorAlertDialogListItem 104
+int styleable AppCompatTheme_textColorSearchUrl 105
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
+int styleable AppCompatTheme_toolbarStyle 107
+int styleable AppCompatTheme_tooltipForegroundColor 108
+int styleable AppCompatTheme_tooltipFrameBackground 109
+int styleable AppCompatTheme_viewInflaterClass 110
+int styleable AppCompatTheme_windowActionBar 111
+int styleable AppCompatTheme_windowActionBarOverlay 112
+int styleable AppCompatTheme_windowActionModeOverlay 113
+int styleable AppCompatTheme_windowFixedHeightMajor 114
+int styleable AppCompatTheme_windowFixedHeightMinor 115
+int styleable AppCompatTheme_windowFixedWidthMajor 116
+int styleable AppCompatTheme_windowFixedWidthMinor 117
+int styleable AppCompatTheme_windowMinWidthMajor 118
+int styleable AppCompatTheme_windowMinWidthMinor 119
+int styleable AppCompatTheme_windowNoTitle 120
+int[] styleable ButtonBarLayout { 0x0 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x0, 0x0 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable CoordinatorLayout_Layout_android_layout_gravity 0
+int styleable CoordinatorLayout_Layout_layout_anchor 1
+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
+int styleable CoordinatorLayout_Layout_layout_behavior 3
+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
+int styleable CoordinatorLayout_Layout_layout_insetEdge 5
+int styleable CoordinatorLayout_Layout_layout_keyline 6
+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable DrawerArrowToggle_arrowHeadLength 0
+int styleable DrawerArrowToggle_arrowShaftLength 1
+int styleable DrawerArrowToggle_barLength 2
+int styleable DrawerArrowToggle_color 3
+int styleable DrawerArrowToggle_drawableSize 4
+int styleable DrawerArrowToggle_gapBetweenBars 5
+int styleable DrawerArrowToggle_spinBars 6
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
+int styleable Fragment_android_id 0
+int styleable Fragment_android_name 1
+int styleable Fragment_android_tag 2
+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
+int styleable FragmentContainerView_android_name 0
+int styleable FragmentContainerView_android_tag 1
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 }
+int styleable LinearLayoutCompat_android_baselineAligned 0
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
+int styleable LinearLayoutCompat_android_gravity 2
+int styleable LinearLayoutCompat_android_orientation 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 1
+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
+int styleable LinearLayoutCompat_Layout_android_layout_width 3
+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
+int styleable MenuGroup_android_checkableBehavior 0
+int styleable MenuGroup_android_enabled 1
+int styleable MenuGroup_android_id 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 5
+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable MenuItem_actionLayout 0
+int styleable MenuItem_actionProviderClass 1
+int styleable MenuItem_actionViewClass 2
+int styleable MenuItem_alphabeticModifiers 3
+int styleable MenuItem_android_alphabeticShortcut 4
+int styleable MenuItem_android_checkable 5
+int styleable MenuItem_android_checked 6
+int styleable MenuItem_android_enabled 7
+int styleable MenuItem_android_icon 8
+int styleable MenuItem_android_id 9
+int styleable MenuItem_android_menuCategory 10
+int styleable MenuItem_android_numericShortcut 11
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 13
+int styleable MenuItem_android_title 14
+int styleable MenuItem_android_titleCondensed 15
+int styleable MenuItem_android_visible 16
+int styleable MenuItem_contentDescription 17
+int styleable MenuItem_iconTint 18
+int styleable MenuItem_iconTintMode 19
+int styleable MenuItem_numericModifiers 20
+int styleable MenuItem_showAsAction 21
+int styleable MenuItem_tooltipText 22
+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 }
+int styleable MenuView_android_headerBackground 0
+int styleable MenuView_android_horizontalDivider 1
+int styleable MenuView_android_itemBackground 2
+int styleable MenuView_android_itemIconDisabledAlpha 3
+int styleable MenuView_android_itemTextAppearance 4
+int styleable MenuView_android_verticalDivider 5
+int styleable MenuView_android_windowAnimationStyle 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 }
+int styleable PopupWindow_android_popupAnimationStyle 0
+int styleable PopupWindow_android_popupBackground 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x0 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecycleListView { 0x0, 0x0 }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 1
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 3
+int styleable SearchView_closeIcon 4
+int styleable SearchView_commitIcon 5
+int styleable SearchView_defaultQueryHint 6
+int styleable SearchView_goIcon 7
+int styleable SearchView_iconifiedByDefault 8
+int styleable SearchView_layout 9
+int styleable SearchView_queryBackground 10
+int styleable SearchView_queryHint 11
+int styleable SearchView_searchHintIcon 12
+int styleable SearchView_searchIcon 13
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 15
+int styleable SearchView_voiceIcon 16
+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 }
+int styleable Spinner_android_dropDownWidth 0
+int styleable Spinner_android_entries 1
+int styleable Spinner_android_popupBackground 2
+int styleable Spinner_android_prompt 3
+int styleable Spinner_popupTheme 4
+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable StateListDrawable_android_constantSize 0
+int styleable StateListDrawable_android_dither 1
+int styleable StateListDrawable_android_enterFadeDuration 2
+int styleable StateListDrawable_android_exitFadeDuration 3
+int styleable StateListDrawable_android_variablePadding 4
+int styleable StateListDrawable_android_visible 5
+int[] styleable StateListDrawableItem { 0x1010199 }
+int styleable StateListDrawableItem_android_drawable 0
+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable SwitchCompat_android_textOff 0
+int styleable SwitchCompat_android_textOn 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0 }
+int styleable TextAppearance_android_fontFamily 0
+int styleable TextAppearance_android_shadowColor 1
+int styleable TextAppearance_android_shadowDx 2
+int styleable TextAppearance_android_shadowDy 3
+int styleable TextAppearance_android_shadowRadius 4
+int styleable TextAppearance_android_textColor 5
+int styleable TextAppearance_android_textColorHint 6
+int styleable TextAppearance_android_textColorLink 7
+int styleable TextAppearance_android_textSize 8
+int styleable TextAppearance_android_textStyle 9
+int styleable TextAppearance_android_typeface 10
+int styleable TextAppearance_fontFamily 11
+int styleable TextAppearance_textAllCaps 12
+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_buttonGravity 2
+int styleable Toolbar_collapseContentDescription 3
+int styleable Toolbar_collapseIcon 4
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetEndWithActions 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 9
+int styleable Toolbar_contentInsetStartWithNavigation 10
+int styleable Toolbar_logo 11
+int styleable Toolbar_logoDescription 12
+int styleable Toolbar_maxButtonHeight 13
+int styleable Toolbar_navigationContentDescription 14
+int styleable Toolbar_navigationIcon 15
+int styleable Toolbar_popupTheme 16
+int styleable Toolbar_subtitle 17
+int styleable Toolbar_subtitleTextAppearance 18
+int styleable Toolbar_subtitleTextColor 19
+int styleable Toolbar_title 20
+int styleable Toolbar_titleMargin 21
+int styleable Toolbar_titleMarginBottom 22
+int styleable Toolbar_titleMarginEnd 23
+int styleable Toolbar_titleMarginStart 24
+int styleable Toolbar_titleMarginTop 25
+int styleable Toolbar_titleMargins 26
+int styleable Toolbar_titleTextAppearance 27
+int styleable Toolbar_titleTextColor 28
+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 }
+int styleable View_android_focusable 0
+int styleable View_android_theme 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 1
+int styleable ViewStubCompat_android_layout 2
diff --git a/obj/Debug/net8.0-android/lp/114/jl/annotations.zip b/obj/Debug/net8.0-android/lp/114/jl/annotations.zip
new file mode 100644
index 0000000..db7f697
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/114/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/114/jl/classes.jar b/obj/Debug/net8.0-android/lp/114/jl/classes.jar
new file mode 100644
index 0000000..f5d55d0
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/114/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/114/jl/proguard.txt b/obj/Debug/net8.0-android/lp/114/jl/proguard.txt
new file mode 100644
index 0000000..2f31fef
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114/jl/proguard.txt
@@ -0,0 +1,18 @@
+# Copyright (C) 2017 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Keep a field in transition that is used to keep a reference to weakly-referenced object
+-keepclassmembers class androidx.transition.ChangeBounds$* extends android.animation.AnimatorListenerAdapter {
+ androidx.transition.ChangeBounds$ViewBounds mViewBounds;
+}
diff --git a/obj/Debug/net8.0-android/lp/114/jl/res.zip b/obj/Debug/net8.0-android/lp/114/jl/res.zip
new file mode 100644
index 0000000..1dc7f03
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/114/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml
new file mode 100644
index 0000000..6f83155
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/114/jl/res/values/values.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/115.stamp b/obj/Debug/net8.0-android/lp/115.stamp
new file mode 100644
index 0000000..1adc855
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/115.stamp
@@ -0,0 +1 @@
+3613EA5D3AC4382F
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml
new file mode 100644
index 0000000..b17e1ea
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/115/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/115/jl/R.txt b/obj/Debug/net8.0-android/lp/115/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/115/jl/annotations.zip b/obj/Debug/net8.0-android/lp/115/jl/annotations.zip
new file mode 100644
index 0000000..2b44275
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/115/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/115/jl/classes.jar b/obj/Debug/net8.0-android/lp/115/jl/classes.jar
new file mode 100644
index 0000000..846dea1
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/115/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/116.stamp b/obj/Debug/net8.0-android/lp/116.stamp
new file mode 100644
index 0000000..1c39ff2
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/116.stamp
@@ -0,0 +1 @@
+3B3428810A9C2B22
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml
new file mode 100644
index 0000000..e2c7bef
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/116/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..bd8164d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=31
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/116/jl/R.txt b/obj/Debug/net8.0-android/lp/116/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/116/jl/classes.jar b/obj/Debug/net8.0-android/lp/116/jl/classes.jar
new file mode 100644
index 0000000..83d8aee
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/116/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/116/jl/public.txt b/obj/Debug/net8.0-android/lp/116/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/116/jl/res.zip b/obj/Debug/net8.0-android/lp/116/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/116/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/116/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/117.stamp b/obj/Debug/net8.0-android/lp/117.stamp
new file mode 100644
index 0000000..fa0f15a
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117.stamp
@@ -0,0 +1 @@
+4BCB4194D6C10DEA
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml
new file mode 100644
index 0000000..ce6e339
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117/jl/AndroidManifest.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/117/jl/R.txt b/obj/Debug/net8.0-android/lp/117/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt
new file mode 100644
index 0000000..88724d3
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117/jl/baseline-prof.txt
@@ -0,0 +1,41 @@
+# Baseline profiles for lifecycle-process
+
+HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->()V
+HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
+HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V
+HSPLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V
+HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->()V
+HSPLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
+HSPLandroidx/lifecycle/LifecycleDispatcher;->()V
+HSPLandroidx/lifecycle/LifecycleDispatcher;->init(Landroid/content/Context;)V
+HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->()V
+HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Landroidx/lifecycle/LifecycleOwner;
+HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->create(Landroid/content/Context;)Ljava/lang/Object;
+HSPLandroidx/lifecycle/ProcessLifecycleInitializer;->dependencies()Ljava/util/List;
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$1;->(Landroidx/lifecycle/ProcessLifecycleOwner;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$2;->(Landroidx/lifecycle/ProcessLifecycleOwner;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->(Landroidx/lifecycle/ProcessLifecycleOwner$3;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostResumed(Landroid/app/Activity;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3$1;->onActivityPostStarted(Landroid/app/Activity;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->(Landroidx/lifecycle/ProcessLifecycleOwner;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPreCreated(Landroid/app/Activity;Landroid/os/Bundle;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->()V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->()V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityResumed()V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->activityStarted()V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->attach(Landroid/content/Context;)V
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->get()Landroidx/lifecycle/LifecycleOwner;
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/lifecycle/ProcessLifecycleOwner;->init(Landroid/content/Context;)V
+PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V
+PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V
+PLandroidx/lifecycle/EmptyActivityLifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V
+PLandroidx/lifecycle/LifecycleDispatcher$DispatcherActivityCallback;->onActivityStopped(Landroid/app/Activity;)V
+PLandroidx/lifecycle/ProcessLifecycleOwner$1;->run()V
+PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityPaused(Landroid/app/Activity;)V
+PLandroidx/lifecycle/ProcessLifecycleOwner$3;->onActivityStopped(Landroid/app/Activity;)V
+PLandroidx/lifecycle/ProcessLifecycleOwner;->activityPaused()V
+PLandroidx/lifecycle/ProcessLifecycleOwner;->activityStopped()V
+PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchPauseIfNeeded()V
+PLandroidx/lifecycle/ProcessLifecycleOwner;->dispatchStopIfNeeded()V
diff --git a/obj/Debug/net8.0-android/lp/117/jl/classes.jar b/obj/Debug/net8.0-android/lp/117/jl/classes.jar
new file mode 100644
index 0000000..8bf936d
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/117/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/117/jl/proguard.txt b/obj/Debug/net8.0-android/lp/117/jl/proguard.txt
new file mode 100644
index 0000000..ff27e9d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117/jl/proguard.txt
@@ -0,0 +1,2 @@
+# this rule is need to work properly when app is compiled with api 28, see b/142778206
+-keepclassmembers class * extends androidx.lifecycle.EmptyActivityLifecycleCallbacks { *; }
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/117/jl/public.txt b/obj/Debug/net8.0-android/lp/117/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/117/jl/res.zip b/obj/Debug/net8.0-android/lp/117/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/117/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/117/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/118.stamp b/obj/Debug/net8.0-android/lp/118.stamp
new file mode 100644
index 0000000..925e46d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/118.stamp
@@ -0,0 +1 @@
+B07C0B646B57A727
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml
new file mode 100644
index 0000000..6347df4
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/118/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/118/jl/R.txt b/obj/Debug/net8.0-android/lp/118/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/118/jl/classes.jar b/obj/Debug/net8.0-android/lp/118/jl/classes.jar
new file mode 100644
index 0000000..5dc8c9e
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/118/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/119.stamp b/obj/Debug/net8.0-android/lp/119.stamp
new file mode 100644
index 0000000..1cb9235
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/119.stamp
@@ -0,0 +1 @@
+5F83CA210322FEC3
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml
new file mode 100644
index 0000000..c94efae
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/119/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/119/jl/R.txt b/obj/Debug/net8.0-android/lp/119/jl/R.txt
new file mode 100644
index 0000000..f1228a5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/119/jl/R.txt
@@ -0,0 +1,131 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f080001
+int dimen compat_button_inset_vertical_material 0x7f080002
+int dimen compat_button_padding_horizontal_material 0x7f080003
+int dimen compat_button_padding_vertical_material 0x7f080004
+int dimen compat_control_corner_material 0x7f080005
+int dimen compat_notification_large_icon_max_height 0x7f080006
+int dimen compat_notification_large_icon_max_width 0x7f080007
+int dimen notification_action_icon_size 0x7f080008
+int dimen notification_action_text_size 0x7f080009
+int dimen notification_big_circle_margin 0x7f08000a
+int dimen notification_content_margin_start 0x7f08000b
+int dimen notification_large_icon_height 0x7f08000c
+int dimen notification_large_icon_width 0x7f08000d
+int dimen notification_main_column_padding_top 0x7f08000e
+int dimen notification_media_narrow_margin 0x7f08000f
+int dimen notification_right_icon_size 0x7f080010
+int dimen notification_right_side_padding_top 0x7f080011
+int dimen notification_small_icon_background_padding 0x7f080012
+int dimen notification_small_icon_size_as_large 0x7f080013
+int dimen notification_subtext_size 0x7f080014
+int dimen notification_top_pad 0x7f080015
+int dimen notification_top_pad_large_text 0x7f080016
+int drawable notification_action_background 0x7f090001
+int drawable notification_bg 0x7f090002
+int drawable notification_bg_low 0x7f090003
+int drawable notification_bg_low_normal 0x7f090004
+int drawable notification_bg_low_pressed 0x7f090005
+int drawable notification_bg_normal 0x7f090006
+int drawable notification_bg_normal_pressed 0x7f090007
+int drawable notification_icon_background 0x7f090008
+int drawable notification_template_icon_bg 0x7f090009
+int drawable notification_template_icon_low_bg 0x7f09000a
+int drawable notification_tile_bg 0x7f09000b
+int drawable notify_panel_notification_icon_bg 0x7f09000c
+int id action_container 0x7f0c0001
+int id action_divider 0x7f0c0002
+int id action_image 0x7f0c0003
+int id action_text 0x7f0c0004
+int id actions 0x7f0c0005
+int id async 0x7f0c0006
+int id blocking 0x7f0c0007
+int id chronometer 0x7f0c0008
+int id forever 0x7f0c0009
+int id icon 0x7f0c000a
+int id icon_group 0x7f0c000b
+int id info 0x7f0c000c
+int id italic 0x7f0c000d
+int id line1 0x7f0c000e
+int id line3 0x7f0c000f
+int id normal 0x7f0c0010
+int id notification_background 0x7f0c0011
+int id notification_main_column 0x7f0c0012
+int id notification_main_column_container 0x7f0c0013
+int id right_icon 0x7f0c0014
+int id right_side 0x7f0c0015
+int id tag_transition_group 0x7f0c0016
+int id tag_unhandled_key_event_manager 0x7f0c0017
+int id tag_unhandled_key_listeners 0x7f0c0018
+int id text 0x7f0c0019
+int id text2 0x7f0c001a
+int id time 0x7f0c001b
+int id title 0x7f0c001c
+int integer status_bar_notification_info_maxnum 0x7f0d0001
+int layout notification_action 0x7f0f0001
+int layout notification_action_tombstone 0x7f0f0002
+int layout notification_template_custom_big 0x7f0f0003
+int layout notification_template_icon_group 0x7f0f0004
+int layout notification_template_part_chronometer 0x7f0f0005
+int layout notification_template_part_time 0x7f0f0006
+int string status_bar_notification_info_overflow 0x7f150001
+int style TextAppearance_Compat_Notification 0x7f160001
+int style TextAppearance_Compat_Notification_Info 0x7f160002
+int style TextAppearance_Compat_Notification_Line2 0x7f160003
+int style TextAppearance_Compat_Notification_Time 0x7f160004
+int style TextAppearance_Compat_Notification_Title 0x7f160005
+int style Widget_Compat_NotificationActionContainer 0x7f160006
+int style Widget_Compat_NotificationActionText 0x7f160007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/119/jl/classes.jar b/obj/Debug/net8.0-android/lp/119/jl/classes.jar
new file mode 100644
index 0000000..c3eef53
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/119/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/120.stamp b/obj/Debug/net8.0-android/lp/120.stamp
new file mode 100644
index 0000000..c2ee02f
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/120.stamp
@@ -0,0 +1 @@
+EB0A45CA7B6771BE
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml
new file mode 100644
index 0000000..a573d36
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/120/jl/AndroidManifest.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/120/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/120/jl/R.txt b/obj/Debug/net8.0-android/lp/120/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/120/jl/annotations.zip b/obj/Debug/net8.0-android/lp/120/jl/annotations.zip
new file mode 100644
index 0000000..27120d2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/120/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/120/jl/classes.jar b/obj/Debug/net8.0-android/lp/120/jl/classes.jar
new file mode 100644
index 0000000..2c4d543
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/120/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar b/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar
new file mode 100644
index 0000000..31b2786
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/120/jl/libs/repackaged.jar differ
diff --git a/obj/Debug/net8.0-android/lp/120/jl/public.txt b/obj/Debug/net8.0-android/lp/120/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/120/jl/res.zip b/obj/Debug/net8.0-android/lp/120/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/120/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/120/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/121.stamp b/obj/Debug/net8.0-android/lp/121.stamp
new file mode 100644
index 0000000..a93762b
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/121.stamp
@@ -0,0 +1 @@
+72DDB9DD40230571
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml
new file mode 100644
index 0000000..8e9407a
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/121/jl/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/121/jl/R.txt b/obj/Debug/net8.0-android/lp/121/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/121/jl/classes.jar b/obj/Debug/net8.0-android/lp/121/jl/classes.jar
new file mode 100644
index 0000000..5e9d2aa
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/121/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/121/jl/public.txt b/obj/Debug/net8.0-android/lp/121/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/121/jl/res.zip b/obj/Debug/net8.0-android/lp/121/jl/res.zip
new file mode 100644
index 0000000..f1edea2
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/121/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml
new file mode 100644
index 0000000..55344e5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/121/jl/res/values/values.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/122.stamp b/obj/Debug/net8.0-android/lp/122.stamp
new file mode 100644
index 0000000..7a2fe6c
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/122.stamp
@@ -0,0 +1 @@
+5B29FA3325524A00
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml
new file mode 100644
index 0000000..d3907cd
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/122/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/122/jl/R.txt b/obj/Debug/net8.0-android/lp/122/jl/R.txt
new file mode 100644
index 0000000..f1228a5
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/122/jl/R.txt
@@ -0,0 +1,131 @@
+int attr alpha 0x7f040001
+int attr font 0x7f040002
+int attr fontProviderAuthority 0x7f040003
+int attr fontProviderCerts 0x7f040004
+int attr fontProviderFetchStrategy 0x7f040005
+int attr fontProviderFetchTimeout 0x7f040006
+int attr fontProviderPackage 0x7f040007
+int attr fontProviderQuery 0x7f040008
+int attr fontStyle 0x7f040009
+int attr fontVariationSettings 0x7f04000a
+int attr fontWeight 0x7f04000b
+int attr ttcIndex 0x7f04000c
+int color notification_action_color_filter 0x7f060001
+int color notification_icon_bg_color 0x7f060002
+int color ripple_material_light 0x7f060003
+int color secondary_text_default_material_light 0x7f060004
+int dimen compat_button_inset_horizontal_material 0x7f080001
+int dimen compat_button_inset_vertical_material 0x7f080002
+int dimen compat_button_padding_horizontal_material 0x7f080003
+int dimen compat_button_padding_vertical_material 0x7f080004
+int dimen compat_control_corner_material 0x7f080005
+int dimen compat_notification_large_icon_max_height 0x7f080006
+int dimen compat_notification_large_icon_max_width 0x7f080007
+int dimen notification_action_icon_size 0x7f080008
+int dimen notification_action_text_size 0x7f080009
+int dimen notification_big_circle_margin 0x7f08000a
+int dimen notification_content_margin_start 0x7f08000b
+int dimen notification_large_icon_height 0x7f08000c
+int dimen notification_large_icon_width 0x7f08000d
+int dimen notification_main_column_padding_top 0x7f08000e
+int dimen notification_media_narrow_margin 0x7f08000f
+int dimen notification_right_icon_size 0x7f080010
+int dimen notification_right_side_padding_top 0x7f080011
+int dimen notification_small_icon_background_padding 0x7f080012
+int dimen notification_small_icon_size_as_large 0x7f080013
+int dimen notification_subtext_size 0x7f080014
+int dimen notification_top_pad 0x7f080015
+int dimen notification_top_pad_large_text 0x7f080016
+int drawable notification_action_background 0x7f090001
+int drawable notification_bg 0x7f090002
+int drawable notification_bg_low 0x7f090003
+int drawable notification_bg_low_normal 0x7f090004
+int drawable notification_bg_low_pressed 0x7f090005
+int drawable notification_bg_normal 0x7f090006
+int drawable notification_bg_normal_pressed 0x7f090007
+int drawable notification_icon_background 0x7f090008
+int drawable notification_template_icon_bg 0x7f090009
+int drawable notification_template_icon_low_bg 0x7f09000a
+int drawable notification_tile_bg 0x7f09000b
+int drawable notify_panel_notification_icon_bg 0x7f09000c
+int id action_container 0x7f0c0001
+int id action_divider 0x7f0c0002
+int id action_image 0x7f0c0003
+int id action_text 0x7f0c0004
+int id actions 0x7f0c0005
+int id async 0x7f0c0006
+int id blocking 0x7f0c0007
+int id chronometer 0x7f0c0008
+int id forever 0x7f0c0009
+int id icon 0x7f0c000a
+int id icon_group 0x7f0c000b
+int id info 0x7f0c000c
+int id italic 0x7f0c000d
+int id line1 0x7f0c000e
+int id line3 0x7f0c000f
+int id normal 0x7f0c0010
+int id notification_background 0x7f0c0011
+int id notification_main_column 0x7f0c0012
+int id notification_main_column_container 0x7f0c0013
+int id right_icon 0x7f0c0014
+int id right_side 0x7f0c0015
+int id tag_transition_group 0x7f0c0016
+int id tag_unhandled_key_event_manager 0x7f0c0017
+int id tag_unhandled_key_listeners 0x7f0c0018
+int id text 0x7f0c0019
+int id text2 0x7f0c001a
+int id time 0x7f0c001b
+int id title 0x7f0c001c
+int integer status_bar_notification_info_maxnum 0x7f0d0001
+int layout notification_action 0x7f0f0001
+int layout notification_action_tombstone 0x7f0f0002
+int layout notification_template_custom_big 0x7f0f0003
+int layout notification_template_icon_group 0x7f0f0004
+int layout notification_template_part_chronometer 0x7f0f0005
+int layout notification_template_part_time 0x7f0f0006
+int string status_bar_notification_info_overflow 0x7f150001
+int style TextAppearance_Compat_Notification 0x7f160001
+int style TextAppearance_Compat_Notification_Info 0x7f160002
+int style TextAppearance_Compat_Notification_Line2 0x7f160003
+int style TextAppearance_Compat_Notification_Time 0x7f160004
+int style TextAppearance_Compat_Notification_Title 0x7f160005
+int style Widget_Compat_NotificationActionContainer 0x7f160006
+int style Widget_Compat_NotificationActionText 0x7f160007
+int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
diff --git a/obj/Debug/net8.0-android/lp/122/jl/classes.jar b/obj/Debug/net8.0-android/lp/122/jl/classes.jar
new file mode 100644
index 0000000..88f5191
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/122/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/123.stamp b/obj/Debug/net8.0-android/lp/123.stamp
new file mode 100644
index 0000000..e4d86f1
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123.stamp
@@ -0,0 +1 @@
+8A023B01C427797A
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml
new file mode 100644
index 0000000..bcbc3be
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/123/jl/R.txt b/obj/Debug/net8.0-android/lp/123/jl/R.txt
new file mode 100644
index 0000000..6c71880
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123/jl/R.txt
@@ -0,0 +1,5 @@
+int attr drawerLayoutStyle 0x0
+int attr elevation 0x0
+int dimen def_drawer_elevation 0x0
+int[] styleable DrawerLayout { 0x0 }
+int styleable DrawerLayout_elevation 0
diff --git a/obj/Debug/net8.0-android/lp/123/jl/annotations.zip b/obj/Debug/net8.0-android/lp/123/jl/annotations.zip
new file mode 100644
index 0000000..9e95046
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/123/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/123/jl/classes.jar b/obj/Debug/net8.0-android/lp/123/jl/classes.jar
new file mode 100644
index 0000000..77bccc0
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/123/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/123/jl/public.txt b/obj/Debug/net8.0-android/lp/123/jl/public.txt
new file mode 100644
index 0000000..3756729
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123/jl/public.txt
@@ -0,0 +1,2 @@
+attr drawerLayoutStyle
+attr elevation
diff --git a/obj/Debug/net8.0-android/lp/123/jl/res.zip b/obj/Debug/net8.0-android/lp/123/jl/res.zip
new file mode 100644
index 0000000..f918ea4
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/123/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml
new file mode 100644
index 0000000..3db9c9c
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/123/jl/res/values/values.xml
@@ -0,0 +1,10 @@
+
+
+
+
+ 10dp
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/124.stamp b/obj/Debug/net8.0-android/lp/124.stamp
new file mode 100644
index 0000000..4fb696f
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/124.stamp
@@ -0,0 +1 @@
+7BD91A78B0F77C26
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml
new file mode 100644
index 0000000..0bb940c
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/124/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/124/jl/R.txt b/obj/Debug/net8.0-android/lp/124/jl/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/124/jl/classes.jar b/obj/Debug/net8.0-android/lp/124/jl/classes.jar
new file mode 100644
index 0000000..8568b5b
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/124/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/125.stamp b/obj/Debug/net8.0-android/lp/125.stamp
new file mode 100644
index 0000000..fb968cb
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125.stamp
@@ -0,0 +1 @@
+C7D5B1FA62CA6B0B
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml
new file mode 100644
index 0000000..be3d21d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..bd8164d
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=31
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/125/jl/R.txt b/obj/Debug/net8.0-android/lp/125/jl/R.txt
new file mode 100644
index 0000000..07221cc
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/R.txt
@@ -0,0 +1,28 @@
+int attr coordinatorLayoutStyle 0x0
+int attr keylines 0x0
+int attr layout_anchor 0x0
+int attr layout_anchorGravity 0x0
+int attr layout_behavior 0x0
+int attr layout_dodgeInsetEdges 0x0
+int attr layout_insetEdge 0x0
+int attr layout_keyline 0x0
+int attr statusBarBackground 0x0
+int id bottom 0x0
+int id end 0x0
+int id left 0x0
+int id none 0x0
+int id right 0x0
+int id start 0x0
+int id top 0x0
+int style Widget_Support_CoordinatorLayout 0x0
+int[] styleable CoordinatorLayout { 0x0, 0x0 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable CoordinatorLayout_Layout_android_layout_gravity 0
+int styleable CoordinatorLayout_Layout_layout_anchor 1
+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
+int styleable CoordinatorLayout_Layout_layout_behavior 3
+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
+int styleable CoordinatorLayout_Layout_layout_insetEdge 5
+int styleable CoordinatorLayout_Layout_layout_keyline 6
diff --git a/obj/Debug/net8.0-android/lp/125/jl/annotations.zip b/obj/Debug/net8.0-android/lp/125/jl/annotations.zip
new file mode 100644
index 0000000..9942bc5
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/125/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/125/jl/classes.jar b/obj/Debug/net8.0-android/lp/125/jl/classes.jar
new file mode 100644
index 0000000..d8136da
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/125/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/125/jl/proguard.txt b/obj/Debug/net8.0-android/lp/125/jl/proguard.txt
new file mode 100644
index 0000000..8e70bc6
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/proguard.txt
@@ -0,0 +1,25 @@
+# Copyright (C) 2016 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# CoordinatorLayout resolves the behaviors of its child components with reflection.
+-keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior {
+ public (android.content.Context, android.util.AttributeSet);
+ public ();
+}
+
+# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior and ViewPager's DecorView
+-keepattributes AnnotationDefault,
+ RuntimeVisibleAnnotations,
+ RuntimeVisibleParameterAnnotations,
+ RuntimeVisibleTypeAnnotations
diff --git a/obj/Debug/net8.0-android/lp/125/jl/public.txt b/obj/Debug/net8.0-android/lp/125/jl/public.txt
new file mode 100644
index 0000000..ecd002a
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/public.txt
@@ -0,0 +1,9 @@
+style Widget_Support_CoordinatorLayout
+attr keylines
+attr layout_anchor
+attr layout_anchorGravity
+attr layout_behavior
+attr layout_dodgeInsetEdges
+attr layout_insetEdge
+attr layout_keyline
+attr statusBarBackground
diff --git a/obj/Debug/net8.0-android/lp/125/jl/res.zip b/obj/Debug/net8.0-android/lp/125/jl/res.zip
new file mode 100644
index 0000000..ba88af7
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/125/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml
new file mode 100644
index 0000000..fee333e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/125/jl/res/values/values.xml
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/126.stamp b/obj/Debug/net8.0-android/lp/126.stamp
new file mode 100644
index 0000000..a20d86f
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126.stamp
@@ -0,0 +1 @@
+EF5F7361DE6C7FC1
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml
new file mode 100644
index 0000000..dad9747
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/126/jl/R.txt b/obj/Debug/net8.0-android/lp/126/jl/R.txt
new file mode 100644
index 0000000..0c85471
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126/jl/R.txt
@@ -0,0 +1,25 @@
+int drawable abc_vector_test 0x0
+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable AnimatedStateListDrawableCompat_android_constantSize 0
+int styleable AnimatedStateListDrawableCompat_android_dither 1
+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
+int styleable AnimatedStateListDrawableCompat_android_visible 5
+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
+int styleable AnimatedStateListDrawableItem_android_drawable 0
+int styleable AnimatedStateListDrawableItem_android_id 1
+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
+int styleable AnimatedStateListDrawableTransition_android_drawable 0
+int styleable AnimatedStateListDrawableTransition_android_fromId 1
+int styleable AnimatedStateListDrawableTransition_android_reversible 2
+int styleable AnimatedStateListDrawableTransition_android_toId 3
+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable StateListDrawable_android_constantSize 0
+int styleable StateListDrawable_android_dither 1
+int styleable StateListDrawable_android_enterFadeDuration 2
+int styleable StateListDrawable_android_exitFadeDuration 3
+int styleable StateListDrawable_android_variablePadding 4
+int styleable StateListDrawable_android_visible 5
+int[] styleable StateListDrawableItem { 0x1010199 }
+int styleable StateListDrawableItem_android_drawable 0
diff --git a/obj/Debug/net8.0-android/lp/126/jl/classes.jar b/obj/Debug/net8.0-android/lp/126/jl/classes.jar
new file mode 100644
index 0000000..c129a36
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/126/jl/classes.jar differ
diff --git a/obj/Debug/net8.0-android/lp/126/jl/public.txt b/obj/Debug/net8.0-android/lp/126/jl/public.txt
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net8.0-android/lp/126/jl/res.zip b/obj/Debug/net8.0-android/lp/126/jl/res.zip
new file mode 100644
index 0000000..29d8d6f
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/126/jl/res.zip differ
diff --git a/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml b/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml
new file mode 100644
index 0000000..d5da2cb
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126/jl/res/drawable/abc_vector_test.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml b/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml
new file mode 100644
index 0000000..c276f72
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/126/jl/res/values/values.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/127.stamp b/obj/Debug/net8.0-android/lp/127.stamp
new file mode 100644
index 0000000..1489113
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/127.stamp
@@ -0,0 +1 @@
+A716F0C7510F283B
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml b/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml
new file mode 100644
index 0000000..1a4b4ee
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/127/jl/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000..c78f08e
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,5 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=33
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/obj/Debug/net8.0-android/lp/127/jl/R.txt b/obj/Debug/net8.0-android/lp/127/jl/R.txt
new file mode 100644
index 0000000..21ffe41
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/127/jl/R.txt
@@ -0,0 +1,1475 @@
+int anim abc_fade_in 0x0
+int anim abc_fade_out 0x0
+int anim abc_grow_fade_in_from_bottom 0x0
+int anim abc_popup_enter 0x0
+int anim abc_popup_exit 0x0
+int anim abc_shrink_fade_out_from_bottom 0x0
+int anim abc_slide_in_bottom 0x0
+int anim abc_slide_in_top 0x0
+int anim abc_slide_out_bottom 0x0
+int anim abc_slide_out_top 0x0
+int anim abc_tooltip_enter 0x0
+int anim abc_tooltip_exit 0x0
+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0
+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0
+int anim btn_checkbox_to_checked_icon_null_animation 0x0
+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0
+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0
+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0
+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0
+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0
+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0
+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0
+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0
+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0
+int attr actionBarDivider 0x0
+int attr actionBarItemBackground 0x0
+int attr actionBarPopupTheme 0x0
+int attr actionBarSize 0x0
+int attr actionBarSplitStyle 0x0
+int attr actionBarStyle 0x0
+int attr actionBarTabBarStyle 0x0
+int attr actionBarTabStyle 0x0
+int attr actionBarTabTextStyle 0x0
+int attr actionBarTheme 0x0
+int attr actionBarWidgetTheme 0x0
+int attr actionButtonStyle 0x0
+int attr actionDropDownStyle 0x0
+int attr actionLayout 0x0
+int attr actionMenuTextAppearance 0x0
+int attr actionMenuTextColor 0x0
+int attr actionModeBackground 0x0
+int attr actionModeCloseButtonStyle 0x0
+int attr actionModeCloseContentDescription 0x0
+int attr actionModeCloseDrawable 0x0
+int attr actionModeCopyDrawable 0x0
+int attr actionModeCutDrawable 0x0
+int attr actionModeFindDrawable 0x0
+int attr actionModePasteDrawable 0x0
+int attr actionModePopupWindowStyle 0x0
+int attr actionModeSelectAllDrawable 0x0
+int attr actionModeShareDrawable 0x0
+int attr actionModeSplitBackground 0x0
+int attr actionModeStyle 0x0
+int attr actionModeTheme 0x0
+int attr actionModeWebSearchDrawable 0x0
+int attr actionOverflowButtonStyle 0x0
+int attr actionOverflowMenuStyle 0x0
+int attr actionProviderClass 0x0
+int attr actionViewClass 0x0
+int attr activityChooserViewStyle 0x0
+int attr alertDialogButtonGroupStyle 0x0
+int attr alertDialogCenterButtons 0x0
+int attr alertDialogStyle 0x0
+int attr alertDialogTheme 0x0
+int attr allowStacking 0x0
+int attr alphabeticModifiers 0x0
+int attr arrowHeadLength 0x0
+int attr arrowShaftLength 0x0
+int attr autoCompleteTextViewStyle 0x0
+int attr autoSizeMaxTextSize 0x0
+int attr autoSizeMinTextSize 0x0
+int attr autoSizePresetSizes 0x0
+int attr autoSizeStepGranularity 0x0
+int attr autoSizeTextType 0x0
+int attr background 0x0
+int attr backgroundSplit 0x0
+int attr backgroundStacked 0x0
+int attr backgroundTint 0x0
+int attr backgroundTintMode 0x0
+int attr barLength 0x0
+int attr borderlessButtonStyle 0x0
+int attr buttonBarButtonStyle 0x0
+int attr buttonBarNegativeButtonStyle 0x0
+int attr buttonBarNeutralButtonStyle 0x0
+int attr buttonBarPositiveButtonStyle 0x0
+int attr buttonBarStyle 0x0
+int attr buttonCompat 0x0
+int attr buttonGravity 0x0
+int attr buttonIconDimen 0x0
+int attr buttonPanelSideLayout 0x0
+int attr buttonStyle 0x0
+int attr buttonStyleSmall 0x0
+int attr buttonTint 0x0
+int attr buttonTintMode 0x0
+int attr checkMarkCompat 0x0
+int attr checkMarkTint 0x0
+int attr checkMarkTintMode 0x0
+int attr checkboxStyle 0x0
+int attr checkedTextViewStyle 0x0
+int attr closeIcon 0x0
+int attr closeItemLayout 0x0
+int attr collapseContentDescription 0x0
+int attr collapseIcon 0x0
+int attr color 0x0
+int attr colorAccent 0x0
+int attr colorBackgroundFloating 0x0
+int attr colorButtonNormal 0x0
+int attr colorControlActivated 0x0
+int attr colorControlHighlight 0x0
+int attr colorControlNormal 0x0
+int attr colorError 0x0
+int attr colorPrimary 0x0
+int attr colorPrimaryDark 0x0
+int attr colorSwitchThumbNormal 0x0
+int attr commitIcon 0x0
+int attr contentDescription 0x0
+int attr contentInsetEnd 0x0
+int attr contentInsetEndWithActions 0x0
+int attr contentInsetLeft 0x0
+int attr contentInsetRight 0x0
+int attr contentInsetStart 0x0
+int attr contentInsetStartWithNavigation 0x0
+int attr controlBackground 0x0
+int attr customNavigationLayout 0x0
+int attr defaultQueryHint 0x0
+int attr dialogCornerRadius 0x0
+int attr dialogPreferredPadding 0x0
+int attr dialogTheme 0x0
+int attr displayOptions 0x0
+int attr divider 0x0
+int attr dividerHorizontal 0x0
+int attr dividerPadding 0x0
+int attr dividerVertical 0x0
+int attr drawableBottomCompat 0x0
+int attr drawableEndCompat 0x0
+int attr drawableLeftCompat 0x0
+int attr drawableRightCompat 0x0
+int attr drawableSize 0x0
+int attr drawableStartCompat 0x0
+int attr drawableTint 0x0
+int attr drawableTintMode 0x0
+int attr drawableTopCompat 0x0
+int attr drawerArrowStyle 0x0
+int attr dropDownListViewStyle 0x0
+int attr dropdownListPreferredItemHeight 0x0
+int attr editTextBackground 0x0
+int attr editTextColor 0x0
+int attr editTextStyle 0x0
+int attr elevation 0x0
+int attr emojiCompatEnabled 0x0
+int attr expandActivityOverflowButtonDrawable 0x0
+int attr firstBaselineToTopHeight 0x0
+int attr fontFamily 0x0
+int attr fontVariationSettings 0x0
+int attr gapBetweenBars 0x0
+int attr goIcon 0x0
+int attr height 0x0
+int attr hideOnContentScroll 0x0
+int attr homeAsUpIndicator 0x0
+int attr homeLayout 0x0
+int attr icon 0x0
+int attr iconTint 0x0
+int attr iconTintMode 0x0
+int attr iconifiedByDefault 0x0
+int attr imageButtonStyle 0x0
+int attr indeterminateProgressStyle 0x0
+int attr initialActivityCount 0x0
+int attr isLightTheme 0x0
+int attr itemPadding 0x0
+int attr lastBaselineToBottomHeight 0x0
+int attr layout 0x0
+int attr lineHeight 0x0
+int attr listChoiceBackgroundIndicator 0x0
+int attr listChoiceIndicatorMultipleAnimated 0x0
+int attr listChoiceIndicatorSingleAnimated 0x0
+int attr listDividerAlertDialog 0x0
+int attr listItemLayout 0x0
+int attr listLayout 0x0
+int attr listMenuViewStyle 0x0
+int attr listPopupWindowStyle 0x0
+int attr listPreferredItemHeight 0x0
+int attr listPreferredItemHeightLarge 0x0
+int attr listPreferredItemHeightSmall 0x0
+int attr listPreferredItemPaddingEnd 0x0
+int attr listPreferredItemPaddingLeft 0x0
+int attr listPreferredItemPaddingRight 0x0
+int attr listPreferredItemPaddingStart 0x0
+int attr logo 0x0
+int attr logoDescription 0x0
+int attr maxButtonHeight 0x0
+int attr measureWithLargestChild 0x0
+int attr menu 0x0
+int attr multiChoiceItemLayout 0x0
+int attr navigationContentDescription 0x0
+int attr navigationIcon 0x0
+int attr navigationMode 0x0
+int attr numericModifiers 0x0
+int attr overlapAnchor 0x0
+int attr paddingBottomNoButtons 0x0
+int attr paddingEnd 0x0
+int attr paddingStart 0x0
+int attr paddingTopNoTitle 0x0
+int attr panelBackground 0x0
+int attr panelMenuListTheme 0x0
+int attr panelMenuListWidth 0x0
+int attr popupMenuStyle 0x0
+int attr popupTheme 0x0
+int attr popupWindowStyle 0x0
+int attr preserveIconSpacing 0x0
+int attr progressBarPadding 0x0
+int attr progressBarStyle 0x0
+int attr queryBackground 0x0
+int attr queryHint 0x0
+int attr radioButtonStyle 0x0
+int attr ratingBarStyle 0x0
+int attr ratingBarStyleIndicator 0x0
+int attr ratingBarStyleSmall 0x0
+int attr searchHintIcon 0x0
+int attr searchIcon 0x0
+int attr searchViewStyle 0x0
+int attr seekBarStyle 0x0
+int attr selectableItemBackground 0x0
+int attr selectableItemBackgroundBorderless 0x0
+int attr showAsAction 0x0
+int attr showDividers 0x0
+int attr showText 0x0
+int attr showTitle 0x0
+int attr singleChoiceItemLayout 0x0
+int attr spinBars 0x0
+int attr spinnerDropDownItemStyle 0x0
+int attr spinnerStyle 0x0
+int attr splitTrack 0x0
+int attr srcCompat 0x0
+int attr state_above_anchor 0x0
+int attr subMenuArrow 0x0
+int attr submitBackground 0x0
+int attr subtitle 0x0
+int attr subtitleTextAppearance 0x0
+int attr subtitleTextColor 0x0
+int attr subtitleTextStyle 0x0
+int attr suggestionRowLayout 0x0
+int attr switchMinWidth 0x0
+int attr switchPadding 0x0
+int attr switchStyle 0x0
+int attr switchTextAppearance 0x0
+int attr textAllCaps 0x0
+int attr textAppearanceLargePopupMenu 0x0
+int attr textAppearanceListItem 0x0
+int attr textAppearanceListItemSecondary 0x0
+int attr textAppearanceListItemSmall 0x0
+int attr textAppearancePopupMenuHeader 0x0
+int attr textAppearanceSearchResultSubtitle 0x0
+int attr textAppearanceSearchResultTitle 0x0
+int attr textAppearanceSmallPopupMenu 0x0
+int attr textColorAlertDialogListItem 0x0
+int attr textColorSearchUrl 0x0
+int attr textLocale 0x0
+int attr theme 0x0
+int attr thickness 0x0
+int attr thumbTextPadding 0x0
+int attr thumbTint 0x0
+int attr thumbTintMode 0x0
+int attr tickMark 0x0
+int attr tickMarkTint 0x0
+int attr tickMarkTintMode 0x0
+int attr tint 0x0
+int attr tintMode 0x0
+int attr title 0x0
+int attr titleMargin 0x0
+int attr titleMarginBottom 0x0
+int attr titleMarginEnd 0x0
+int attr titleMarginStart 0x0
+int attr titleMarginTop 0x0
+int attr titleMargins 0x0
+int attr titleTextAppearance 0x0
+int attr titleTextColor 0x0
+int attr titleTextStyle 0x0
+int attr toolbarNavigationButtonStyle 0x0
+int attr toolbarStyle 0x0
+int attr tooltipForegroundColor 0x0
+int attr tooltipFrameBackground 0x0
+int attr tooltipText 0x0
+int attr track 0x0
+int attr trackTint 0x0
+int attr trackTintMode 0x0
+int attr viewInflaterClass 0x0
+int attr voiceIcon 0x0
+int attr windowActionBar 0x0
+int attr windowActionBarOverlay 0x0
+int attr windowActionModeOverlay 0x0
+int attr windowFixedHeightMajor 0x0
+int attr windowFixedHeightMinor 0x0
+int attr windowFixedWidthMajor 0x0
+int attr windowFixedWidthMinor 0x0
+int attr windowMinWidthMajor 0x0
+int attr windowMinWidthMinor 0x0
+int attr windowNoTitle 0x0
+int bool abc_action_bar_embed_tabs 0x0
+int bool abc_config_actionMenuItemAllCaps 0x0
+int color abc_background_cache_hint_selector_material_dark 0x0
+int color abc_background_cache_hint_selector_material_light 0x0
+int color abc_btn_colored_borderless_text_material 0x0
+int color abc_btn_colored_text_material 0x0
+int color abc_color_highlight_material 0x0
+int color abc_decor_view_status_guard 0x0
+int color abc_decor_view_status_guard_light 0x0
+int color abc_hint_foreground_material_dark 0x0
+int color abc_hint_foreground_material_light 0x0
+int color abc_primary_text_disable_only_material_dark 0x0
+int color abc_primary_text_disable_only_material_light 0x0
+int color abc_primary_text_material_dark 0x0
+int color abc_primary_text_material_light 0x0
+int color abc_search_url_text 0x0
+int color abc_search_url_text_normal 0x0
+int color abc_search_url_text_pressed 0x0
+int color abc_search_url_text_selected 0x0
+int color abc_secondary_text_material_dark 0x0
+int color abc_secondary_text_material_light 0x0
+int color abc_tint_btn_checkable 0x0
+int color abc_tint_default 0x0
+int color abc_tint_edittext 0x0
+int color abc_tint_seek_thumb 0x0
+int color abc_tint_spinner 0x0
+int color abc_tint_switch_track 0x0
+int color accent_material_dark 0x0
+int color accent_material_light 0x0
+int color background_floating_material_dark 0x0
+int color background_floating_material_light 0x0
+int color background_material_dark 0x0
+int color background_material_light 0x0
+int color bright_foreground_disabled_material_dark 0x0
+int color bright_foreground_disabled_material_light 0x0
+int color bright_foreground_inverse_material_dark 0x0
+int color bright_foreground_inverse_material_light 0x0
+int color bright_foreground_material_dark 0x0
+int color bright_foreground_material_light 0x0
+int color button_material_dark 0x0
+int color button_material_light 0x0
+int color dim_foreground_disabled_material_dark 0x0
+int color dim_foreground_disabled_material_light 0x0
+int color dim_foreground_material_dark 0x0
+int color dim_foreground_material_light 0x0
+int color error_color_material_dark 0x0
+int color error_color_material_light 0x0
+int color foreground_material_dark 0x0
+int color foreground_material_light 0x0
+int color highlighted_text_material_dark 0x0
+int color highlighted_text_material_light 0x0
+int color material_blue_grey_800 0x0
+int color material_blue_grey_900 0x0
+int color material_blue_grey_950 0x0
+int color material_deep_teal_200 0x0
+int color material_deep_teal_500 0x0
+int color material_grey_100 0x0
+int color material_grey_300 0x0
+int color material_grey_50 0x0
+int color material_grey_600 0x0
+int color material_grey_800 0x0
+int color material_grey_850 0x0
+int color material_grey_900 0x0
+int color primary_dark_material_dark 0x0
+int color primary_dark_material_light 0x0
+int color primary_material_dark 0x0
+int color primary_material_light 0x0
+int color primary_text_default_material_dark 0x0
+int color primary_text_default_material_light 0x0
+int color primary_text_disabled_material_dark 0x0
+int color primary_text_disabled_material_light 0x0
+int color ripple_material_dark 0x0
+int color ripple_material_light 0x0
+int color secondary_text_default_material_dark 0x0
+int color secondary_text_default_material_light 0x0
+int color secondary_text_disabled_material_dark 0x0
+int color secondary_text_disabled_material_light 0x0
+int color switch_thumb_disabled_material_dark 0x0
+int color switch_thumb_disabled_material_light 0x0
+int color switch_thumb_material_dark 0x0
+int color switch_thumb_material_light 0x0
+int color switch_thumb_normal_material_dark 0x0
+int color switch_thumb_normal_material_light 0x0
+int color tooltip_background_dark 0x0
+int color tooltip_background_light 0x0
+int dimen abc_action_bar_content_inset_material 0x0
+int dimen abc_action_bar_content_inset_with_nav 0x0
+int dimen abc_action_bar_default_height_material 0x0
+int dimen abc_action_bar_default_padding_end_material 0x0
+int dimen abc_action_bar_default_padding_start_material 0x0
+int dimen abc_action_bar_elevation_material 0x0
+int dimen abc_action_bar_icon_vertical_padding_material 0x0
+int dimen abc_action_bar_overflow_padding_end_material 0x0
+int dimen abc_action_bar_overflow_padding_start_material 0x0
+int dimen abc_action_bar_stacked_max_height 0x0
+int dimen abc_action_bar_stacked_tab_max_width 0x0
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0
+int dimen abc_action_bar_subtitle_top_margin_material 0x0
+int dimen abc_action_button_min_height_material 0x0
+int dimen abc_action_button_min_width_material 0x0
+int dimen abc_action_button_min_width_overflow_material 0x0
+int dimen abc_alert_dialog_button_bar_height 0x0
+int dimen abc_alert_dialog_button_dimen 0x0
+int dimen abc_button_inset_horizontal_material 0x0
+int dimen abc_button_inset_vertical_material 0x0
+int dimen abc_button_padding_horizontal_material 0x0
+int dimen abc_button_padding_vertical_material 0x0
+int dimen abc_cascading_menus_min_smallest_width 0x0
+int dimen abc_config_prefDialogWidth 0x0
+int dimen abc_control_corner_material 0x0
+int dimen abc_control_inset_material 0x0
+int dimen abc_control_padding_material 0x0
+int dimen abc_dialog_corner_radius_material 0x0
+int dimen abc_dialog_fixed_height_major 0x0
+int dimen abc_dialog_fixed_height_minor 0x0
+int dimen abc_dialog_fixed_width_major 0x0
+int dimen abc_dialog_fixed_width_minor 0x0
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0
+int dimen abc_dialog_list_padding_top_no_title 0x0
+int dimen abc_dialog_min_width_major 0x0
+int dimen abc_dialog_min_width_minor 0x0
+int dimen abc_dialog_padding_material 0x0
+int dimen abc_dialog_padding_top_material 0x0
+int dimen abc_dialog_title_divider_material 0x0
+int dimen abc_disabled_alpha_material_dark 0x0
+int dimen abc_disabled_alpha_material_light 0x0
+int dimen abc_dropdownitem_icon_width 0x0
+int dimen abc_dropdownitem_text_padding_left 0x0
+int dimen abc_dropdownitem_text_padding_right 0x0
+int dimen abc_edit_text_inset_bottom_material 0x0
+int dimen abc_edit_text_inset_horizontal_material 0x0
+int dimen abc_edit_text_inset_top_material 0x0
+int dimen abc_floating_window_z 0x0
+int dimen abc_list_item_height_large_material 0x0
+int dimen abc_list_item_height_material 0x0
+int dimen abc_list_item_height_small_material 0x0
+int dimen abc_list_item_padding_horizontal_material 0x0
+int dimen abc_panel_menu_list_width 0x0
+int dimen abc_progress_bar_height_material 0x0
+int dimen abc_search_view_preferred_height 0x0
+int dimen abc_search_view_preferred_width 0x0
+int dimen abc_seekbar_track_background_height_material 0x0
+int dimen abc_seekbar_track_progress_height_material 0x0
+int dimen abc_select_dialog_padding_start_material 0x0
+int dimen abc_star_big 0x0
+int dimen abc_star_medium 0x0
+int dimen abc_star_small 0x0
+int dimen abc_switch_padding 0x0
+int dimen abc_text_size_body_1_material 0x0
+int dimen abc_text_size_body_2_material 0x0
+int dimen abc_text_size_button_material 0x0
+int dimen abc_text_size_caption_material 0x0
+int dimen abc_text_size_display_1_material 0x0
+int dimen abc_text_size_display_2_material 0x0
+int dimen abc_text_size_display_3_material 0x0
+int dimen abc_text_size_display_4_material 0x0
+int dimen abc_text_size_headline_material 0x0
+int dimen abc_text_size_large_material 0x0
+int dimen abc_text_size_medium_material 0x0
+int dimen abc_text_size_menu_header_material 0x0
+int dimen abc_text_size_menu_material 0x0
+int dimen abc_text_size_small_material 0x0
+int dimen abc_text_size_subhead_material 0x0
+int dimen abc_text_size_subtitle_material_toolbar 0x0
+int dimen abc_text_size_title_material 0x0
+int dimen abc_text_size_title_material_toolbar 0x0
+int dimen disabled_alpha_material_dark 0x0
+int dimen disabled_alpha_material_light 0x0
+int dimen highlight_alpha_material_colored 0x0
+int dimen highlight_alpha_material_dark 0x0
+int dimen highlight_alpha_material_light 0x0
+int dimen hint_alpha_material_dark 0x0
+int dimen hint_alpha_material_light 0x0
+int dimen hint_pressed_alpha_material_dark 0x0
+int dimen hint_pressed_alpha_material_light 0x0
+int dimen tooltip_corner_radius 0x0
+int dimen tooltip_horizontal_padding 0x0
+int dimen tooltip_margin 0x0
+int dimen tooltip_precise_anchor_extra_offset 0x0
+int dimen tooltip_precise_anchor_threshold 0x0
+int dimen tooltip_vertical_padding 0x0
+int dimen tooltip_y_offset_non_touch 0x0
+int dimen tooltip_y_offset_touch 0x0
+int drawable abc_ab_share_pack_mtrl_alpha 0x0
+int drawable abc_action_bar_item_background_material 0x0
+int drawable abc_btn_borderless_material 0x0
+int drawable abc_btn_check_material 0x0
+int drawable abc_btn_check_material_anim 0x0
+int drawable abc_btn_check_to_on_mtrl_000 0x0
+int drawable abc_btn_check_to_on_mtrl_015 0x0
+int drawable abc_btn_colored_material 0x0
+int drawable abc_btn_default_mtrl_shape 0x0
+int drawable abc_btn_radio_material 0x0
+int drawable abc_btn_radio_material_anim 0x0
+int drawable abc_btn_radio_to_on_mtrl_000 0x0
+int drawable abc_btn_radio_to_on_mtrl_015 0x0
+int drawable abc_btn_switch_to_on_mtrl_00001 0x0
+int drawable abc_btn_switch_to_on_mtrl_00012 0x0
+int drawable abc_cab_background_internal_bg 0x0
+int drawable abc_cab_background_top_material 0x0
+int drawable abc_cab_background_top_mtrl_alpha 0x0
+int drawable abc_control_background_material 0x0
+int drawable abc_dialog_material_background 0x0
+int drawable abc_edit_text_material 0x0
+int drawable abc_ic_ab_back_material 0x0
+int drawable abc_ic_arrow_drop_right_black_24dp 0x0
+int drawable abc_ic_clear_material 0x0
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0
+int drawable abc_ic_go_search_api_material 0x0
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0
+int drawable abc_ic_menu_cut_mtrl_alpha 0x0
+int drawable abc_ic_menu_overflow_material 0x0
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0
+int drawable abc_ic_menu_share_mtrl_alpha 0x0
+int drawable abc_ic_search_api_material 0x0
+int drawable abc_ic_voice_search_api_material 0x0
+int drawable abc_item_background_holo_dark 0x0
+int drawable abc_item_background_holo_light 0x0
+int drawable abc_list_divider_material 0x0
+int drawable abc_list_divider_mtrl_alpha 0x0
+int drawable abc_list_focused_holo 0x0
+int drawable abc_list_longpressed_holo 0x0
+int drawable abc_list_pressed_holo_dark 0x0
+int drawable abc_list_pressed_holo_light 0x0
+int drawable abc_list_selector_background_transition_holo_dark 0x0
+int drawable abc_list_selector_background_transition_holo_light 0x0
+int drawable abc_list_selector_disabled_holo_dark 0x0
+int drawable abc_list_selector_disabled_holo_light 0x0
+int drawable abc_list_selector_holo_dark 0x0
+int drawable abc_list_selector_holo_light 0x0
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0
+int drawable abc_popup_background_mtrl_mult 0x0
+int drawable abc_ratingbar_indicator_material 0x0
+int drawable abc_ratingbar_material 0x0
+int drawable abc_ratingbar_small_material 0x0
+int drawable abc_scrubber_control_off_mtrl_alpha 0x0
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0
+int drawable abc_scrubber_primary_mtrl_alpha 0x0
+int drawable abc_scrubber_track_mtrl_alpha 0x0
+int drawable abc_seekbar_thumb_material 0x0
+int drawable abc_seekbar_tick_mark_material 0x0
+int drawable abc_seekbar_track_material 0x0
+int drawable abc_spinner_mtrl_am_alpha 0x0
+int drawable abc_spinner_textfield_background_material 0x0
+int drawable abc_star_black_48dp 0x0
+int drawable abc_star_half_black_48dp 0x0
+int drawable abc_switch_thumb_material 0x0
+int drawable abc_switch_track_mtrl_alpha 0x0
+int drawable abc_tab_indicator_material 0x0
+int drawable abc_tab_indicator_mtrl_alpha 0x0
+int drawable abc_text_cursor_material 0x0
+int drawable abc_text_select_handle_left_mtrl 0x0
+int drawable abc_text_select_handle_middle_mtrl 0x0
+int drawable abc_text_select_handle_right_mtrl 0x0
+int drawable abc_textfield_activated_mtrl_alpha 0x0
+int drawable abc_textfield_default_mtrl_alpha 0x0
+int drawable abc_textfield_search_activated_mtrl_alpha 0x0
+int drawable abc_textfield_search_default_mtrl_alpha 0x0
+int drawable abc_textfield_search_material 0x0
+int drawable btn_checkbox_checked_mtrl 0x0
+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0
+int drawable btn_checkbox_unchecked_mtrl 0x0
+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0
+int drawable btn_radio_off_mtrl 0x0
+int drawable btn_radio_off_to_on_mtrl_animation 0x0
+int drawable btn_radio_on_mtrl 0x0
+int drawable btn_radio_on_to_off_mtrl_animation 0x0
+int drawable test_level_drawable 0x0
+int drawable tooltip_frame_dark 0x0
+int drawable tooltip_frame_light 0x0
+int id action_bar 0x0
+int id action_bar_activity_content 0x0
+int id action_bar_container 0x0
+int id action_bar_root 0x0
+int id action_bar_spinner 0x0
+int id action_bar_subtitle 0x0
+int id action_bar_title 0x0
+int id action_context_bar 0x0
+int id action_menu_divider 0x0
+int id action_menu_presenter 0x0
+int id action_mode_bar 0x0
+int id action_mode_bar_stub 0x0
+int id action_mode_close_button 0x0
+int id activity_chooser_view_content 0x0
+int id add 0x0
+int id alertTitle 0x0
+int id buttonPanel 0x0
+int id checkbox 0x0
+int id checked 0x0
+int id content 0x0
+int id contentPanel 0x0
+int id custom 0x0
+int id customPanel 0x0
+int id decor_content_parent 0x0
+int id default_activity_button 0x0
+int id edit_query 0x0
+int id expand_activities_button 0x0
+int id expanded_menu 0x0
+int id group_divider 0x0
+int id home 0x0
+int id icon 0x0
+int id image 0x0
+int id listMode 0x0
+int id list_item 0x0
+int id message 0x0
+int id multiply 0x0
+int id none 0x0
+int id normal 0x0
+int id off 0x0
+int id on 0x0
+int id parentPanel 0x0
+int id progress_circular 0x0
+int id progress_horizontal 0x0
+int id radio 0x0
+int id screen 0x0
+int id scrollIndicatorDown 0x0
+int id scrollIndicatorUp 0x0
+int id scrollView 0x0
+int id search_badge 0x0
+int id search_bar 0x0
+int id search_button 0x0
+int id search_close_btn 0x0
+int id search_edit_frame 0x0
+int id search_go_btn 0x0
+int id search_mag_icon 0x0
+int id search_plate 0x0
+int id search_src_text 0x0
+int id search_voice_btn 0x0
+int id select_dialog_listview 0x0
+int id shortcut 0x0
+int id spacer 0x0
+int id split_action_bar 0x0
+int id src_atop 0x0
+int id src_in 0x0
+int id src_over 0x0
+int id submenuarrow 0x0
+int id submit_area 0x0
+int id tabMode 0x0
+int id textSpacerNoButtons 0x0
+int id textSpacerNoTitle 0x0
+int id title 0x0
+int id titleDividerNoCustom 0x0
+int id title_template 0x0
+int id topPanel 0x0
+int id unchecked 0x0
+int id uniform 0x0
+int id up 0x0
+int id wrap_content 0x0
+int integer abc_config_activityDefaultDur 0x0
+int integer abc_config_activityShortDur 0x0
+int integer cancel_button_image_alpha 0x0
+int integer config_tooltipAnimTime 0x0
+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0
+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0
+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0
+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0
+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0
+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0
+int interpolator fast_out_slow_in 0x0
+int layout abc_action_bar_title_item 0x0
+int layout abc_action_bar_up_container 0x0
+int layout abc_action_menu_item_layout 0x0
+int layout abc_action_menu_layout 0x0
+int layout abc_action_mode_bar 0x0
+int layout abc_action_mode_close_item_material 0x0
+int layout abc_activity_chooser_view 0x0
+int layout abc_activity_chooser_view_list_item 0x0
+int layout abc_alert_dialog_button_bar_material 0x0
+int layout abc_alert_dialog_material 0x0
+int layout abc_alert_dialog_title_material 0x0
+int layout abc_cascading_menu_item_layout 0x0
+int layout abc_dialog_title_material 0x0
+int layout abc_expanded_menu_layout 0x0
+int layout abc_list_menu_item_checkbox 0x0
+int layout abc_list_menu_item_icon 0x0
+int layout abc_list_menu_item_layout 0x0
+int layout abc_list_menu_item_radio 0x0
+int layout abc_popup_menu_header_item_layout 0x0
+int layout abc_popup_menu_item_layout 0x0
+int layout abc_screen_content_include 0x0
+int layout abc_screen_simple 0x0
+int layout abc_screen_simple_overlay_action_mode 0x0
+int layout abc_screen_toolbar 0x0
+int layout abc_search_dropdown_item_icons_2line 0x0
+int layout abc_search_view 0x0
+int layout abc_select_dialog_material 0x0
+int layout abc_tooltip 0x0
+int layout select_dialog_item_material 0x0
+int layout select_dialog_multichoice_material 0x0
+int layout select_dialog_singlechoice_material 0x0
+int layout support_simple_spinner_dropdown_item 0x0
+int string abc_action_bar_home_description 0x0
+int string abc_action_bar_up_description 0x0
+int string abc_action_menu_overflow_description 0x0
+int string abc_action_mode_done 0x0
+int string abc_activity_chooser_view_see_all 0x0
+int string abc_activitychooserview_choose_application 0x0
+int string abc_capital_off 0x0
+int string abc_capital_on 0x0
+int string abc_menu_alt_shortcut_label 0x0
+int string abc_menu_ctrl_shortcut_label 0x0
+int string abc_menu_delete_shortcut_label 0x0
+int string abc_menu_enter_shortcut_label 0x0
+int string abc_menu_function_shortcut_label 0x0
+int string abc_menu_meta_shortcut_label 0x0
+int string abc_menu_shift_shortcut_label 0x0
+int string abc_menu_space_shortcut_label 0x0
+int string abc_menu_sym_shortcut_label 0x0
+int string abc_prepend_shortcut_label 0x0
+int string abc_search_hint 0x0
+int string abc_searchview_description_clear 0x0
+int string abc_searchview_description_query 0x0
+int string abc_searchview_description_search 0x0
+int string abc_searchview_description_submit 0x0
+int string abc_searchview_description_voice 0x0
+int string abc_shareactionprovider_share_with 0x0
+int string abc_shareactionprovider_share_with_application 0x0
+int string abc_toolbar_collapse_description 0x0
+int string search_menu_title 0x0
+int style AlertDialog_AppCompat 0x0
+int style AlertDialog_AppCompat_Light 0x0
+int style Animation_AppCompat_Dialog 0x0
+int style Animation_AppCompat_DropDownUp 0x0
+int style Animation_AppCompat_Tooltip 0x0
+int style Base_AlertDialog_AppCompat 0x0
+int style Base_AlertDialog_AppCompat_Light 0x0
+int style Base_Animation_AppCompat_Dialog 0x0
+int style Base_Animation_AppCompat_DropDownUp 0x0
+int style Base_Animation_AppCompat_Tooltip 0x0
+int style Base_DialogWindowTitleBackground_AppCompat 0x0
+int style Base_DialogWindowTitle_AppCompat 0x0
+int style Base_TextAppearance_AppCompat 0x0
+int style Base_TextAppearance_AppCompat_Body1 0x0
+int style Base_TextAppearance_AppCompat_Body2 0x0
+int style Base_TextAppearance_AppCompat_Button 0x0
+int style Base_TextAppearance_AppCompat_Caption 0x0
+int style Base_TextAppearance_AppCompat_Display1 0x0
+int style Base_TextAppearance_AppCompat_Display2 0x0
+int style Base_TextAppearance_AppCompat_Display3 0x0
+int style Base_TextAppearance_AppCompat_Display4 0x0
+int style Base_TextAppearance_AppCompat_Headline 0x0
+int style Base_TextAppearance_AppCompat_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Large 0x0
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
+int style Base_TextAppearance_AppCompat_Medium 0x0
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Menu 0x0
+int style Base_TextAppearance_AppCompat_SearchResult 0x0
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0
+int style Base_TextAppearance_AppCompat_Small 0x0
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Subhead 0x0
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Title 0x0
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Tooltip 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
+int style Base_ThemeOverlay_AppCompat 0x0
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0
+int style Base_ThemeOverlay_AppCompat_Dark 0x0
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0
+int style Base_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0
+int style Base_ThemeOverlay_AppCompat_Light 0x0
+int style Base_Theme_AppCompat 0x0
+int style Base_Theme_AppCompat_CompactMenu 0x0
+int style Base_Theme_AppCompat_Dialog 0x0
+int style Base_Theme_AppCompat_DialogWhenLarge 0x0
+int style Base_Theme_AppCompat_Dialog_Alert 0x0
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0
+int style Base_Theme_AppCompat_Light 0x0
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0
+int style Base_Theme_AppCompat_Light_Dialog 0x0
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_V21_Theme_AppCompat 0x0
+int style Base_V21_Theme_AppCompat_Dialog 0x0
+int style Base_V21_Theme_AppCompat_Light 0x0
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0
+int style Base_V22_Theme_AppCompat 0x0
+int style Base_V22_Theme_AppCompat_Light 0x0
+int style Base_V23_Theme_AppCompat 0x0
+int style Base_V23_Theme_AppCompat_Light 0x0
+int style Base_V26_Theme_AppCompat 0x0
+int style Base_V26_Theme_AppCompat_Light 0x0
+int style Base_V26_Widget_AppCompat_Toolbar 0x0
+int style Base_V28_Theme_AppCompat 0x0
+int style Base_V28_Theme_AppCompat_Light 0x0
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0
+int style Base_V7_Theme_AppCompat 0x0
+int style Base_V7_Theme_AppCompat_Dialog 0x0
+int style Base_V7_Theme_AppCompat_Light 0x0
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0
+int style Base_V7_Widget_AppCompat_EditText 0x0
+int style Base_V7_Widget_AppCompat_Toolbar 0x0
+int style Base_Widget_AppCompat_ActionBar 0x0
+int style Base_Widget_AppCompat_ActionBar_Solid 0x0
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0
+int style Base_Widget_AppCompat_ActionBar_TabText 0x0
+int style Base_Widget_AppCompat_ActionBar_TabView 0x0
+int style Base_Widget_AppCompat_ActionButton 0x0
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0
+int style Base_Widget_AppCompat_ActionMode 0x0
+int style Base_Widget_AppCompat_ActivityChooserView 0x0
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0
+int style Base_Widget_AppCompat_Button 0x0
+int style Base_Widget_AppCompat_ButtonBar 0x0
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0
+int style Base_Widget_AppCompat_Button_Borderless 0x0
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
+int style Base_Widget_AppCompat_Button_Colored 0x0
+int style Base_Widget_AppCompat_Button_Small 0x0
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0
+int style Base_Widget_AppCompat_EditText 0x0
+int style Base_Widget_AppCompat_ImageButton 0x0
+int style Base_Widget_AppCompat_Light_ActionBar 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0
+int style Base_Widget_AppCompat_Light_PopupMenu 0x0
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0
+int style Base_Widget_AppCompat_ListMenuView 0x0
+int style Base_Widget_AppCompat_ListPopupWindow 0x0
+int style Base_Widget_AppCompat_ListView 0x0
+int style Base_Widget_AppCompat_ListView_DropDown 0x0
+int style Base_Widget_AppCompat_ListView_Menu 0x0
+int style Base_Widget_AppCompat_PopupMenu 0x0
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0
+int style Base_Widget_AppCompat_PopupWindow 0x0
+int style Base_Widget_AppCompat_ProgressBar 0x0
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0
+int style Base_Widget_AppCompat_RatingBar 0x0
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0
+int style Base_Widget_AppCompat_RatingBar_Small 0x0
+int style Base_Widget_AppCompat_SearchView 0x0
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0
+int style Base_Widget_AppCompat_SeekBar 0x0
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0
+int style Base_Widget_AppCompat_Spinner 0x0
+int style Base_Widget_AppCompat_Spinner_Underlined 0x0
+int style Base_Widget_AppCompat_TextView 0x0
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0
+int style Base_Widget_AppCompat_Toolbar 0x0
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0
+int style Platform_AppCompat 0x0
+int style Platform_AppCompat_Light 0x0
+int style Platform_ThemeOverlay_AppCompat 0x0
+int style Platform_ThemeOverlay_AppCompat_Dark 0x0
+int style Platform_ThemeOverlay_AppCompat_Light 0x0
+int style Platform_V21_AppCompat 0x0
+int style Platform_V21_AppCompat_Light 0x0
+int style Platform_V25_AppCompat 0x0
+int style Platform_V25_AppCompat_Light 0x0
+int style Platform_Widget_AppCompat_Spinner 0x0
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0
+int style TextAppearance_AppCompat 0x0
+int style TextAppearance_AppCompat_Body1 0x0
+int style TextAppearance_AppCompat_Body2 0x0
+int style TextAppearance_AppCompat_Button 0x0
+int style TextAppearance_AppCompat_Caption 0x0
+int style TextAppearance_AppCompat_Display1 0x0
+int style TextAppearance_AppCompat_Display2 0x0
+int style TextAppearance_AppCompat_Display3 0x0
+int style TextAppearance_AppCompat_Display4 0x0
+int style TextAppearance_AppCompat_Headline 0x0
+int style TextAppearance_AppCompat_Inverse 0x0
+int style TextAppearance_AppCompat_Large 0x0
+int style TextAppearance_AppCompat_Large_Inverse 0x0
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
+int style TextAppearance_AppCompat_Medium 0x0
+int style TextAppearance_AppCompat_Medium_Inverse 0x0
+int style TextAppearance_AppCompat_Menu 0x0
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0
+int style TextAppearance_AppCompat_SearchResult_Title 0x0
+int style TextAppearance_AppCompat_Small 0x0
+int style TextAppearance_AppCompat_Small_Inverse 0x0
+int style TextAppearance_AppCompat_Subhead 0x0
+int style TextAppearance_AppCompat_Subhead_Inverse 0x0
+int style TextAppearance_AppCompat_Title 0x0
+int style TextAppearance_AppCompat_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Tooltip 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_Button 0x0
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
+int style TextAppearance_AppCompat_Widget_Switch 0x0
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
+int style ThemeOverlay_AppCompat 0x0
+int style ThemeOverlay_AppCompat_ActionBar 0x0
+int style ThemeOverlay_AppCompat_Dark 0x0
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0
+int style ThemeOverlay_AppCompat_DayNight 0x0
+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0
+int style ThemeOverlay_AppCompat_Dialog 0x0
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0
+int style ThemeOverlay_AppCompat_Light 0x0
+int style Theme_AppCompat 0x0
+int style Theme_AppCompat_CompactMenu 0x0
+int style Theme_AppCompat_DayNight 0x0
+int style Theme_AppCompat_DayNight_DarkActionBar 0x0
+int style Theme_AppCompat_DayNight_Dialog 0x0
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0
+int style Theme_AppCompat_DayNight_NoActionBar 0x0
+int style Theme_AppCompat_Dialog 0x0
+int style Theme_AppCompat_DialogWhenLarge 0x0
+int style Theme_AppCompat_Dialog_Alert 0x0
+int style Theme_AppCompat_Dialog_MinWidth 0x0
+int style Theme_AppCompat_Empty 0x0
+int style Theme_AppCompat_Light 0x0
+int style Theme_AppCompat_Light_DarkActionBar 0x0
+int style Theme_AppCompat_Light_Dialog 0x0
+int style Theme_AppCompat_Light_DialogWhenLarge 0x0
+int style Theme_AppCompat_Light_Dialog_Alert 0x0
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0
+int style Theme_AppCompat_Light_NoActionBar 0x0
+int style Theme_AppCompat_NoActionBar 0x0
+int style Widget_AppCompat_ActionBar 0x0
+int style Widget_AppCompat_ActionBar_Solid 0x0
+int style Widget_AppCompat_ActionBar_TabBar 0x0
+int style Widget_AppCompat_ActionBar_TabText 0x0
+int style Widget_AppCompat_ActionBar_TabView 0x0
+int style Widget_AppCompat_ActionButton 0x0
+int style Widget_AppCompat_ActionButton_CloseMode 0x0
+int style Widget_AppCompat_ActionButton_Overflow 0x0
+int style Widget_AppCompat_ActionMode 0x0
+int style Widget_AppCompat_ActivityChooserView 0x0
+int style Widget_AppCompat_AutoCompleteTextView 0x0
+int style Widget_AppCompat_Button 0x0
+int style Widget_AppCompat_ButtonBar 0x0
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0
+int style Widget_AppCompat_Button_Borderless 0x0
+int style Widget_AppCompat_Button_Borderless_Colored 0x0
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
+int style Widget_AppCompat_Button_Colored 0x0
+int style Widget_AppCompat_Button_Small 0x0
+int style Widget_AppCompat_CompoundButton_CheckBox 0x0
+int style Widget_AppCompat_CompoundButton_RadioButton 0x0
+int style Widget_AppCompat_CompoundButton_Switch 0x0
+int style Widget_AppCompat_DrawerArrowToggle 0x0
+int style Widget_AppCompat_DropDownItem_Spinner 0x0
+int style Widget_AppCompat_EditText 0x0
+int style Widget_AppCompat_ImageButton 0x0
+int style Widget_AppCompat_Light_ActionBar 0x0
+int style Widget_AppCompat_Light_ActionBar_Solid 0x0
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabText 0x0
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
+int style Widget_AppCompat_Light_ActionBar_TabView 0x0
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0
+int style Widget_AppCompat_Light_ActionButton 0x0
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0
+int style Widget_AppCompat_Light_ActivityChooserView 0x0
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0
+int style Widget_AppCompat_Light_ListPopupWindow 0x0
+int style Widget_AppCompat_Light_ListView_DropDown 0x0
+int style Widget_AppCompat_Light_PopupMenu 0x0
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0
+int style Widget_AppCompat_Light_SearchView 0x0
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0
+int style Widget_AppCompat_ListMenuView 0x0
+int style Widget_AppCompat_ListPopupWindow 0x0
+int style Widget_AppCompat_ListView 0x0
+int style Widget_AppCompat_ListView_DropDown 0x0
+int style Widget_AppCompat_ListView_Menu 0x0
+int style Widget_AppCompat_PopupMenu 0x0
+int style Widget_AppCompat_PopupMenu_Overflow 0x0
+int style Widget_AppCompat_PopupWindow 0x0
+int style Widget_AppCompat_ProgressBar 0x0
+int style Widget_AppCompat_ProgressBar_Horizontal 0x0
+int style Widget_AppCompat_RatingBar 0x0
+int style Widget_AppCompat_RatingBar_Indicator 0x0
+int style Widget_AppCompat_RatingBar_Small 0x0
+int style Widget_AppCompat_SearchView 0x0
+int style Widget_AppCompat_SearchView_ActionBar 0x0
+int style Widget_AppCompat_SeekBar 0x0
+int style Widget_AppCompat_SeekBar_Discrete 0x0
+int style Widget_AppCompat_Spinner 0x0
+int style Widget_AppCompat_Spinner_DropDown 0x0
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0
+int style Widget_AppCompat_Spinner_Underlined 0x0
+int style Widget_AppCompat_TextView 0x0
+int style Widget_AppCompat_TextView_SpinnerItem 0x0
+int style Widget_AppCompat_Toolbar 0x0
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0
+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x10100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable ActionMode_background 0
+int styleable ActionMode_backgroundSplit 1
+int styleable ActionMode_closeItemLayout 2
+int styleable ActionMode_height 3
+int styleable ActionMode_subtitleTextStyle 4
+int styleable ActionMode_titleTextStyle 5
+int[] styleable ActivityChooserView { 0x0, 0x0 }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonIconDimen 1
+int styleable AlertDialog_buttonPanelSideLayout 2
+int styleable AlertDialog_listItemLayout 3
+int styleable AlertDialog_listLayout 4
+int styleable AlertDialog_multiChoiceItemLayout 5
+int styleable AlertDialog_showTitle 6
+int styleable AlertDialog_singleChoiceItemLayout 7
+int[] styleable AppCompatEmojiHelper { }
+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int styleable AppCompatImageView_tint 2
+int styleable AppCompatImageView_tintMode 3
+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
+int styleable AppCompatTextHelper_android_drawableBottom 0
+int styleable AppCompatTextHelper_android_drawableEnd 1
+int styleable AppCompatTextHelper_android_drawableLeft 2
+int styleable AppCompatTextHelper_android_drawableRight 3
+int styleable AppCompatTextHelper_android_drawableStart 4
+int styleable AppCompatTextHelper_android_drawableTop 5
+int styleable AppCompatTextHelper_android_textAppearance 6
+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_autoSizeMaxTextSize 1
+int styleable AppCompatTextView_autoSizeMinTextSize 2
+int styleable AppCompatTextView_autoSizePresetSizes 3
+int styleable AppCompatTextView_autoSizeStepGranularity 4
+int styleable AppCompatTextView_autoSizeTextType 5
+int styleable AppCompatTextView_drawableBottomCompat 6
+int styleable AppCompatTextView_drawableEndCompat 7
+int styleable AppCompatTextView_drawableLeftCompat 8
+int styleable AppCompatTextView_drawableRightCompat 9
+int styleable AppCompatTextView_drawableStartCompat 10
+int styleable AppCompatTextView_drawableTint 11
+int styleable AppCompatTextView_drawableTintMode 12
+int styleable AppCompatTextView_drawableTopCompat 13
+int styleable AppCompatTextView_emojiCompatEnabled 14
+int styleable AppCompatTextView_firstBaselineToTopHeight 15
+int styleable AppCompatTextView_fontFamily 16
+int styleable AppCompatTextView_fontVariationSettings 17
+int styleable AppCompatTextView_lastBaselineToBottomHeight 18
+int styleable AppCompatTextView_lineHeight 19
+int styleable AppCompatTextView_textAllCaps 20
+int styleable AppCompatTextView_textLocale 21
+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable AppCompatTheme_actionBarDivider 0
+int styleable AppCompatTheme_actionBarItemBackground 1
+int styleable AppCompatTheme_actionBarPopupTheme 2
+int styleable AppCompatTheme_actionBarSize 3
+int styleable AppCompatTheme_actionBarSplitStyle 4
+int styleable AppCompatTheme_actionBarStyle 5
+int styleable AppCompatTheme_actionBarTabBarStyle 6
+int styleable AppCompatTheme_actionBarTabStyle 7
+int styleable AppCompatTheme_actionBarTabTextStyle 8
+int styleable AppCompatTheme_actionBarTheme 9
+int styleable AppCompatTheme_actionBarWidgetTheme 10
+int styleable AppCompatTheme_actionButtonStyle 11
+int styleable AppCompatTheme_actionDropDownStyle 12
+int styleable AppCompatTheme_actionMenuTextAppearance 13
+int styleable AppCompatTheme_actionMenuTextColor 14
+int styleable AppCompatTheme_actionModeBackground 15
+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
+int styleable AppCompatTheme_actionModeCloseContentDescription 17
+int styleable AppCompatTheme_actionModeCloseDrawable 18
+int styleable AppCompatTheme_actionModeCopyDrawable 19
+int styleable AppCompatTheme_actionModeCutDrawable 20
+int styleable AppCompatTheme_actionModeFindDrawable 21
+int styleable AppCompatTheme_actionModePasteDrawable 22
+int styleable AppCompatTheme_actionModePopupWindowStyle 23
+int styleable AppCompatTheme_actionModeSelectAllDrawable 24
+int styleable AppCompatTheme_actionModeShareDrawable 25
+int styleable AppCompatTheme_actionModeSplitBackground 26
+int styleable AppCompatTheme_actionModeStyle 27
+int styleable AppCompatTheme_actionModeTheme 28
+int styleable AppCompatTheme_actionModeWebSearchDrawable 29
+int styleable AppCompatTheme_actionOverflowButtonStyle 30
+int styleable AppCompatTheme_actionOverflowMenuStyle 31
+int styleable AppCompatTheme_activityChooserViewStyle 32
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
+int styleable AppCompatTheme_alertDialogCenterButtons 34
+int styleable AppCompatTheme_alertDialogStyle 35
+int styleable AppCompatTheme_alertDialogTheme 36
+int styleable AppCompatTheme_android_windowAnimationStyle 37
+int styleable AppCompatTheme_android_windowIsFloating 38
+int styleable AppCompatTheme_autoCompleteTextViewStyle 39
+int styleable AppCompatTheme_borderlessButtonStyle 40
+int styleable AppCompatTheme_buttonBarButtonStyle 41
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44
+int styleable AppCompatTheme_buttonBarStyle 45
+int styleable AppCompatTheme_buttonStyle 46
+int styleable AppCompatTheme_buttonStyleSmall 47
+int styleable AppCompatTheme_checkboxStyle 48
+int styleable AppCompatTheme_checkedTextViewStyle 49
+int styleable AppCompatTheme_colorAccent 50
+int styleable AppCompatTheme_colorBackgroundFloating 51
+int styleable AppCompatTheme_colorButtonNormal 52
+int styleable AppCompatTheme_colorControlActivated 53
+int styleable AppCompatTheme_colorControlHighlight 54
+int styleable AppCompatTheme_colorControlNormal 55
+int styleable AppCompatTheme_colorError 56
+int styleable AppCompatTheme_colorPrimary 57
+int styleable AppCompatTheme_colorPrimaryDark 58
+int styleable AppCompatTheme_colorSwitchThumbNormal 59
+int styleable AppCompatTheme_controlBackground 60
+int styleable AppCompatTheme_dialogCornerRadius 61
+int styleable AppCompatTheme_dialogPreferredPadding 62
+int styleable AppCompatTheme_dialogTheme 63
+int styleable AppCompatTheme_dividerHorizontal 64
+int styleable AppCompatTheme_dividerVertical 65
+int styleable AppCompatTheme_dropDownListViewStyle 66
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67
+int styleable AppCompatTheme_editTextBackground 68
+int styleable AppCompatTheme_editTextColor 69
+int styleable AppCompatTheme_editTextStyle 70
+int styleable AppCompatTheme_homeAsUpIndicator 71
+int styleable AppCompatTheme_imageButtonStyle 72
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73
+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74
+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75
+int styleable AppCompatTheme_listDividerAlertDialog 76
+int styleable AppCompatTheme_listMenuViewStyle 77
+int styleable AppCompatTheme_listPopupWindowStyle 78
+int styleable AppCompatTheme_listPreferredItemHeight 79
+int styleable AppCompatTheme_listPreferredItemHeightLarge 80
+int styleable AppCompatTheme_listPreferredItemHeightSmall 81
+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83
+int styleable AppCompatTheme_listPreferredItemPaddingRight 84
+int styleable AppCompatTheme_listPreferredItemPaddingStart 85
+int styleable AppCompatTheme_panelBackground 86
+int styleable AppCompatTheme_panelMenuListTheme 87
+int styleable AppCompatTheme_panelMenuListWidth 88
+int styleable AppCompatTheme_popupMenuStyle 89
+int styleable AppCompatTheme_popupWindowStyle 90
+int styleable AppCompatTheme_radioButtonStyle 91
+int styleable AppCompatTheme_ratingBarStyle 92
+int styleable AppCompatTheme_ratingBarStyleIndicator 93
+int styleable AppCompatTheme_ratingBarStyleSmall 94
+int styleable AppCompatTheme_searchViewStyle 95
+int styleable AppCompatTheme_seekBarStyle 96
+int styleable AppCompatTheme_selectableItemBackground 97
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98
+int styleable AppCompatTheme_spinnerDropDownItemStyle 99
+int styleable AppCompatTheme_spinnerStyle 100
+int styleable AppCompatTheme_switchStyle 101
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102
+int styleable AppCompatTheme_textAppearanceListItem 103
+int styleable AppCompatTheme_textAppearanceListItemSecondary 104
+int styleable AppCompatTheme_textAppearanceListItemSmall 105
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109
+int styleable AppCompatTheme_textColorAlertDialogListItem 110
+int styleable AppCompatTheme_textColorSearchUrl 111
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112
+int styleable AppCompatTheme_toolbarStyle 113
+int styleable AppCompatTheme_tooltipForegroundColor 114
+int styleable AppCompatTheme_tooltipFrameBackground 115
+int styleable AppCompatTheme_viewInflaterClass 116
+int styleable AppCompatTheme_windowActionBar 117
+int styleable AppCompatTheme_windowActionBarOverlay 118
+int styleable AppCompatTheme_windowActionModeOverlay 119
+int styleable AppCompatTheme_windowFixedHeightMajor 120
+int styleable AppCompatTheme_windowFixedHeightMinor 121
+int styleable AppCompatTheme_windowFixedWidthMajor 122
+int styleable AppCompatTheme_windowFixedWidthMinor 123
+int styleable AppCompatTheme_windowMinWidthMajor 124
+int styleable AppCompatTheme_windowMinWidthMinor 125
+int styleable AppCompatTheme_windowNoTitle 126
+int[] styleable ButtonBarLayout { 0x0 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 }
+int styleable CheckedTextView_android_checkMark 0
+int styleable CheckedTextView_checkMarkCompat 1
+int styleable CheckedTextView_checkMarkTint 2
+int styleable CheckedTextView_checkMarkTintMode 3
+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonCompat 1
+int styleable CompoundButton_buttonTint 2
+int styleable CompoundButton_buttonTintMode 3
+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable DrawerArrowToggle_arrowHeadLength 0
+int styleable DrawerArrowToggle_arrowShaftLength 1
+int styleable DrawerArrowToggle_barLength 2
+int styleable DrawerArrowToggle_color 3
+int styleable DrawerArrowToggle_drawableSize 4
+int styleable DrawerArrowToggle_gapBetweenBars 5
+int styleable DrawerArrowToggle_spinBars 6
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 }
+int styleable LinearLayoutCompat_android_baselineAligned 0
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
+int styleable LinearLayoutCompat_android_gravity 2
+int styleable LinearLayoutCompat_android_orientation 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 1
+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
+int styleable LinearLayoutCompat_Layout_android_layout_width 3
+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
+int styleable MenuGroup_android_checkableBehavior 0
+int styleable MenuGroup_android_enabled 1
+int styleable MenuGroup_android_id 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 5
+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable MenuItem_actionLayout 0
+int styleable MenuItem_actionProviderClass 1
+int styleable MenuItem_actionViewClass 2
+int styleable MenuItem_alphabeticModifiers 3
+int styleable MenuItem_android_alphabeticShortcut 4
+int styleable MenuItem_android_checkable 5
+int styleable MenuItem_android_checked 6
+int styleable MenuItem_android_enabled 7
+int styleable MenuItem_android_icon 8
+int styleable MenuItem_android_id 9
+int styleable MenuItem_android_menuCategory 10
+int styleable MenuItem_android_numericShortcut 11
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 13
+int styleable MenuItem_android_title 14
+int styleable MenuItem_android_titleCondensed 15
+int styleable MenuItem_android_visible 16
+int styleable MenuItem_contentDescription 17
+int styleable MenuItem_iconTint 18
+int styleable MenuItem_iconTintMode 19
+int styleable MenuItem_numericModifiers 20
+int styleable MenuItem_showAsAction 21
+int styleable MenuItem_tooltipText 22
+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 }
+int styleable MenuView_android_headerBackground 0
+int styleable MenuView_android_horizontalDivider 1
+int styleable MenuView_android_itemBackground 2
+int styleable MenuView_android_itemIconDisabledAlpha 3
+int styleable MenuView_android_itemTextAppearance 4
+int styleable MenuView_android_verticalDivider 5
+int styleable MenuView_android_windowAnimationStyle 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 }
+int styleable PopupWindow_android_popupAnimationStyle 0
+int styleable PopupWindow_android_popupBackground 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x0 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecycleListView { 0x0, 0x0 }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 1
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 3
+int styleable SearchView_closeIcon 4
+int styleable SearchView_commitIcon 5
+int styleable SearchView_defaultQueryHint 6
+int styleable SearchView_goIcon 7
+int styleable SearchView_iconifiedByDefault 8
+int styleable SearchView_layout 9
+int styleable SearchView_queryBackground 10
+int styleable SearchView_queryHint 11
+int styleable SearchView_searchHintIcon 12
+int styleable SearchView_searchIcon 13
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 15
+int styleable SearchView_voiceIcon 16
+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 }
+int styleable Spinner_android_dropDownWidth 0
+int styleable Spinner_android_entries 1
+int styleable Spinner_android_popupBackground 2
+int styleable Spinner_android_prompt 3
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable SwitchCompat_android_textOff 0
+int styleable SwitchCompat_android_textOn 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 }
+int styleable TextAppearance_android_fontFamily 0
+int styleable TextAppearance_android_shadowColor 1
+int styleable TextAppearance_android_shadowDx 2
+int styleable TextAppearance_android_shadowDy 3
+int styleable TextAppearance_android_shadowRadius 4
+int styleable TextAppearance_android_textColor 5
+int styleable TextAppearance_android_textColorHint 6
+int styleable TextAppearance_android_textColorLink 7
+int styleable TextAppearance_android_textFontWeight 8
+int styleable TextAppearance_android_textSize 9
+int styleable TextAppearance_android_textStyle 10
+int styleable TextAppearance_android_typeface 11
+int styleable TextAppearance_fontFamily 12
+int styleable TextAppearance_fontVariationSettings 13
+int styleable TextAppearance_textAllCaps 14
+int styleable TextAppearance_textLocale 15
+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_buttonGravity 2
+int styleable Toolbar_collapseContentDescription 3
+int styleable Toolbar_collapseIcon 4
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetEndWithActions 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 9
+int styleable Toolbar_contentInsetStartWithNavigation 10
+int styleable Toolbar_logo 11
+int styleable Toolbar_logoDescription 12
+int styleable Toolbar_maxButtonHeight 13
+int styleable Toolbar_menu 14
+int styleable Toolbar_navigationContentDescription 15
+int styleable Toolbar_navigationIcon 16
+int styleable Toolbar_popupTheme 17
+int styleable Toolbar_subtitle 18
+int styleable Toolbar_subtitleTextAppearance 19
+int styleable Toolbar_subtitleTextColor 20
+int styleable Toolbar_title 21
+int styleable Toolbar_titleMargin 22
+int styleable Toolbar_titleMarginBottom 23
+int styleable Toolbar_titleMarginEnd 24
+int styleable Toolbar_titleMarginStart 25
+int styleable Toolbar_titleMarginTop 26
+int styleable Toolbar_titleMargins 27
+int styleable Toolbar_titleTextAppearance 28
+int styleable Toolbar_titleTextColor 29
+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 }
+int styleable View_android_focusable 0
+int styleable View_android_theme 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 1
+int styleable ViewStubCompat_android_layout 2
diff --git a/obj/Debug/net8.0-android/lp/127/jl/annotations.zip b/obj/Debug/net8.0-android/lp/127/jl/annotations.zip
new file mode 100644
index 0000000..7499952
Binary files /dev/null and b/obj/Debug/net8.0-android/lp/127/jl/annotations.zip differ
diff --git a/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt b/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt
new file mode 100644
index 0000000..6f386cf
--- /dev/null
+++ b/obj/Debug/net8.0-android/lp/127/jl/baseline-prof.txt
@@ -0,0 +1,596 @@
+# Baseline profiles for androidx.appcompat
+
+HSPLandroidx/appcompat/R$styleable;->()V
+HSPLandroidx/appcompat/app/ActionBar$LayoutParams;->(II)V
+HSPLandroidx/appcompat/app/ActionBar;->()V
+HSPLandroidx/appcompat/app/AppCompatActivity$1;->(Landroidx/appcompat/app/AppCompatActivity;)V
+HSPLandroidx/appcompat/app/AppCompatActivity$2;->(Landroidx/appcompat/app/AppCompatActivity;)V
+HSPLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V
+HSPLandroidx/appcompat/app/AppCompatActivity;->()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V
+HSPLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate;
+HSPLandroidx/appcompat/app/AppCompatActivity;->getMenuInflater()Landroid/view/MenuInflater;
+HSPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources;
+HSPLandroidx/appcompat/app/AppCompatActivity;->initDelegate()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onStart()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onSupportContentChanged()V
+HSPLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V
+HSPLandroidx/appcompat/app/AppCompatActivity;->setContentView(I)V
+HSPLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegate;->()V
+HSPLandroidx/appcompat/app/AppCompatDelegate;->()V
+HSPLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
+HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext(Landroid/content/Context;)V
+HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
+HSPLandroidx/appcompat/app/AppCompatDelegate;->create(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)Landroidx/appcompat/app/AppCompatDelegate;
+HSPLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I
+HSPLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;->(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;->run()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;->(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;->(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onAttachedFromWindow()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$ActionMenuPresenterCallback;->(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;->createConfigurationContext(Landroid/content/Context;Landroid/content/res/Configuration;)Landroid/content/Context;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelMenu(ILandroid/view/Menu;)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onCreatePanelView(I)Landroid/view/View;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;->(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;->setMenu(Landroidx/appcompat/view/menu/MenuBuilder;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight()Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyDayNight(Z)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyFixedSizeWindow()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateNightMode()I
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideConfigurationForDayNight(Landroid/content/Context;ILandroid/content/res/Configuration;)Landroid/content/res/Configuration;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createSubDecor()Landroid/view/ViewGroup;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getMenuInflater()Landroid/view/MenuInflater;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(IZ)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getSupportActionBar()Landroidx/appcompat/app/ActionBar;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getTitle()Ljava/lang/CharSequence;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getWindowCallback()Landroid/view/Window$Callback;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initializePanelMenu(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->invalidatePanelMenu(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->isActivityManifestHandlingUiMode()Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate(Landroid/os/Bundle;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate(Landroid/os/Bundle;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onSubDecorInstalled(Landroid/view/ViewGroup;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->peekSupportActionBar()Landroidx/appcompat/app/ActionBar;
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->preparePanel(Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;Landroid/view/KeyEvent;)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->sanitizeWindowFeatureId(I)I
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V
+HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateForNightMode(IZ)Z
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->()V
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->()V
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->backportAccessibilityAttributes(Landroid/content/Context;Landroid/view/View;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->checkOnClickListener(Landroid/view/View;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->createButton(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatButton;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->createEditText(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatEditText;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->createTextView(Landroid/content/Context;Landroid/util/AttributeSet;)Landroidx/appcompat/widget/AppCompatTextView;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;ZZZZ)Landroid/view/View;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->themifyContext(Landroid/content/Context;Landroid/util/AttributeSet;ZZ)Landroid/content/Context;
+HSPLandroidx/appcompat/app/AppCompatViewInflater;->verifyNotNull(Landroid/view/View;Ljava/lang/String;)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar$1;->(Landroidx/appcompat/app/WindowDecorActionBar;)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar$2;->(Landroidx/appcompat/app/WindowDecorActionBar;)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar$3;->(Landroidx/appcompat/app/WindowDecorActionBar;)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->()V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->(Landroid/app/Activity;Z)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar;
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->getNavigationMode()I
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->getThemedContext()Landroid/content/Context;
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->init(Landroid/view/View;)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->onWindowVisibilityChanged(I)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDefaultDisplayHomeAsUpEnabled(Z)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayHomeAsUpEnabled(Z)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setDisplayOptions(II)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setElevation(F)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHasEmbeddedTabs(Z)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setHomeButtonEnabled(Z)V
+HSPLandroidx/appcompat/app/WindowDecorActionBar;->setShowHideAnimationEnabled(Z)V
+HSPLandroidx/appcompat/view/ActionBarPolicy;->(Landroid/content/Context;)V
+HSPLandroidx/appcompat/view/ActionBarPolicy;->enableHomeButtonByDefault()Z
+HSPLandroidx/appcompat/view/ActionBarPolicy;->get(Landroid/content/Context;)Landroidx/appcompat/view/ActionBarPolicy;
+HSPLandroidx/appcompat/view/ActionBarPolicy;->getEmbeddedMenuWidthLimit()I
+HSPLandroidx/appcompat/view/ActionBarPolicy;->getMaxActionButtons()I
+HSPLandroidx/appcompat/view/ActionBarPolicy;->hasEmbeddedTabs()Z
+HSPLandroidx/appcompat/view/ActionBarPolicy;->showsOverflowMenuButton()Z
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->(Landroid/content/Context;I)V
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources;
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResourcesInternal()Landroid/content/res/Resources;
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme;
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V
+HSPLandroidx/appcompat/view/ContextThemeWrapper;->onApplyThemeResource(Landroid/content/res/Resources$Theme;IZ)V
+HSPLandroidx/appcompat/view/SupportMenuInflater;->()V
+HSPLandroidx/appcompat/view/SupportMenuInflater;->(Landroid/content/Context;)V
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->(Landroid/view/Window$Callback;)V
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchTouchEvent(Landroid/view/MotionEvent;)Z
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback;
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelMenu(ILandroid/view/Menu;)Z
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onCreatePanelView(I)Landroid/view/View;
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V
+HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V
+HSPLandroidx/appcompat/view/menu/ActionMenuItem;->(Landroid/content/Context;IIIILjava/lang/CharSequence;)V
+HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->(Landroid/content/Context;II)V
+HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V
+HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setCallback(Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V
+HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->setId(I)V
+HSPLandroidx/appcompat/view/menu/BaseMenuPresenter;->updateMenuView(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->()V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->(Landroid/content/Context;)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->addMenuPresenter(Landroidx/appcompat/view/menu/MenuPresenter;Landroid/content/Context;)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->dispatchPresenterUpdate(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->flagActionItems()V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->getActionItems()Ljava/util/ArrayList;
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->getNonActionItems()Ljava/util/ArrayList;
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->getVisibleItems()Ljava/util/ArrayList;
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->hasVisibleItems()Z
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->onItemsChanged(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->setCallback(Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->setOverrideVisibleItems(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->setQwertyMode(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->setShortcutsVisibleInner(Z)V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->size()I
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->startDispatchingItemsChanged()V
+HSPLandroidx/appcompat/view/menu/MenuBuilder;->stopDispatchingItemsChanged()V
+HSPLandroidx/appcompat/widget/AbsActionBarView$VisibilityAnimListener;->(Landroidx/appcompat/widget/AbsActionBarView;)V
+HSPLandroidx/appcompat/widget/AbsActionBarView;->(Landroid/content/Context;Landroid/util/AttributeSet;I)V
+HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->(Landroidx/appcompat/widget/ActionBarContainer;)V
+HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->draw(Landroid/graphics/Canvas;)V
+HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOpacity()I
+HSPLandroidx/appcompat/widget/ActionBarBackgroundDrawable;->getOutline(Landroid/graphics/Outline;)V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->drawableStateChanged()V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->jumpDrawablesToCurrentState()V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->onFinishInflate()V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->onLayout(ZIIII)V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->onMeasure(II)V
+HSPLandroidx/appcompat/widget/ActionBarContainer;->setTabContainer(Landroidx/appcompat/widget/ScrollingTabContainerView;)V
+HSPLandroidx/appcompat/widget/ActionBarContextView;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/widget/ActionBarContextView;->(Landroid/content/Context;Landroid/util/AttributeSet;I)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$1;->(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$2;->(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$3;->(Landroidx/appcompat/widget/ActionBarOverlayLayout;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->()V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->applyInsets(Landroid/view/View;Landroid/graphics/Rect;ZZZZ)Z
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->checkLayoutParams(Landroid/view/ViewGroup$LayoutParams;)Z
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroid/view/ViewGroup$LayoutParams;
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->generateLayoutParams(Landroid/util/AttributeSet;)Landroidx/appcompat/widget/ActionBarOverlayLayout$LayoutParams;
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->getDecorToolbar(Landroid/view/View;)Landroidx/appcompat/widget/DecorToolbar;
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->init(Landroid/content/Context;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onLayout(ZIIII)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onMeasure(II)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;I)Z
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onStartNestedScroll(Landroid/view/View;Landroid/view/View;II)Z
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->onWindowVisibilityChanged(I)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->pullChildren()V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setActionBarVisibilityCallback(Landroidx/appcompat/widget/ActionBarOverlayLayout$ActionBarVisibilityCallback;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setHasNonEmbeddedTabs(Z)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenu(Landroid/view/Menu;Landroidx/appcompat/view/menu/MenuPresenter$Callback;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setMenuPrepared()V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowCallback(Landroid/view/Window$Callback;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->setWindowTitle(Ljava/lang/CharSequence;)V
+HSPLandroidx/appcompat/widget/ActionBarOverlayLayout;->shouldDelayChildPressedState()Z
+HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton$1;->(Landroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;Landroid/view/View;Landroidx/appcompat/widget/ActionMenuPresenter;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter$OverflowMenuButton;->(Landroidx/appcompat/widget/ActionMenuPresenter;Landroid/content/Context;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter$PopupPresenterCallback;->(Landroidx/appcompat/widget/ActionMenuPresenter;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->(Landroid/content/Context;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->flagActionItems()Z
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->initForMenu(Landroid/content/Context;Landroidx/appcompat/view/menu/MenuBuilder;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setExpandedActionViewsExclusive(Z)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->setMenuView(Landroidx/appcompat/widget/ActionMenuView;)V
+HSPLandroidx/appcompat/widget/ActionMenuPresenter;->updateMenuView(Z)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->(Landroid/content/Context;)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->(Landroid/content/Context;Landroid/util/AttributeSet;)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->initialize(Landroidx/appcompat/view/menu/MenuBuilder;)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->onLayout(ZIIII)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->onMeasure(II)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->peekMenu()Landroidx/appcompat/view/menu/MenuBuilder;
+HSPLandroidx/appcompat/widget/ActionMenuView;->setMenuCallbacks(Landroidx/appcompat/view/menu/MenuPresenter$Callback;Landroidx/appcompat/view/menu/MenuBuilder$Callback;)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->setOnMenuItemClickListener(Landroidx/appcompat/widget/ActionMenuView$OnMenuItemClickListener;)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->setOverflowReserved(Z)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->setPopupTheme(I)V
+HSPLandroidx/appcompat/widget/ActionMenuView;->setPresenter(Landroidx/appcompat/widget/ActionMenuPresenter;)V
+HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->