From ec7dc3677ebad7234d11de4c170473e302626986 Mon Sep 17 00:00:00 2001 From: "tineshkumar.sf4652" Date: Fri, 25 Apr 2025 18:46:05 +0530 Subject: [PATCH 1/2] change the framework --- Maui_ChartTooltip/App.xaml | 14 - Maui_ChartTooltip/App.xaml.cs | 11 - Maui_ChartTooltip/AppShell.xaml | 14 - Maui_ChartTooltip/AppShell.xaml.cs | 9 - Maui_ChartTooltip/MainPage.xaml | 47 --- Maui_ChartTooltip/MainPage.xaml.cs | 10 - Maui_ChartTooltip/MauiProgram.cs | 21 - Maui_ChartTooltip/Maui_ChartTooltip.csproj | 55 --- Maui_ChartTooltip/Maui_ChartTooltip.sln | 16 +- Maui_ChartTooltip/Model/Model.cs | 10 - .../Platforms/Android/AndroidManifest.xml | 6 - .../Platforms/Android/MainActivity.cs | 10 - .../Platforms/Android/MainApplication.cs | 15 - .../Android/Resources/values/colors.xml | 6 - .../Platforms/MacCatalyst/AppDelegate.cs | 9 - .../Platforms/MacCatalyst/Info.plist | 30 -- .../Platforms/MacCatalyst/Program.cs | 15 - Maui_ChartTooltip/Platforms/Tizen/Main.cs | 16 - .../Platforms/Tizen/tizen-manifest.xml | 15 - Maui_ChartTooltip/Platforms/Windows/App.xaml | 8 - .../Platforms/Windows/App.xaml.cs | 24 -- .../Platforms/Windows/Package.appxmanifest | 43 -- .../Platforms/Windows/app.manifest | 15 - .../Platforms/iOS/AppDelegate.cs | 9 - Maui_ChartTooltip/Platforms/iOS/Info.plist | 32 -- Maui_ChartTooltip/Platforms/iOS/Program.cs | 15 - .../Properties/launchSettings.json | 8 - .../Resources/AppIcon/appicon.svg | 4 - .../Resources/AppIcon/appiconfg.svg | 8 - .../Resources/Fonts/OpenSans-Regular.ttf | Bin 107152 -> 0 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 111048 -> 0 bytes .../Resources/Images/dotnet_bot.svg | 93 ----- .../Resources/Raw/AboutAssets.txt | 15 - Maui_ChartTooltip/Resources/Splash/splash.svg | 8 - .../Resources/Styles/Colors.xaml | 44 -- .../Resources/Styles/Styles.xaml | 384 ------------------ Maui_ChartTooltip/ViewModel/ViewModel.cs | 21 - 37 files changed, 7 insertions(+), 1053 deletions(-) delete mode 100644 Maui_ChartTooltip/App.xaml delete mode 100644 Maui_ChartTooltip/App.xaml.cs delete mode 100644 Maui_ChartTooltip/AppShell.xaml delete mode 100644 Maui_ChartTooltip/AppShell.xaml.cs delete mode 100644 Maui_ChartTooltip/MainPage.xaml delete mode 100644 Maui_ChartTooltip/MainPage.xaml.cs delete mode 100644 Maui_ChartTooltip/MauiProgram.cs delete mode 100644 Maui_ChartTooltip/Maui_ChartTooltip.csproj delete mode 100644 Maui_ChartTooltip/Model/Model.cs delete mode 100644 Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml delete mode 100644 Maui_ChartTooltip/Platforms/Android/MainActivity.cs delete mode 100644 Maui_ChartTooltip/Platforms/Android/MainApplication.cs delete mode 100644 Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml delete mode 100644 Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs delete mode 100644 Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist delete mode 100644 Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs delete mode 100644 Maui_ChartTooltip/Platforms/Tizen/Main.cs delete mode 100644 Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml delete mode 100644 Maui_ChartTooltip/Platforms/Windows/App.xaml delete mode 100644 Maui_ChartTooltip/Platforms/Windows/App.xaml.cs delete mode 100644 Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest delete mode 100644 Maui_ChartTooltip/Platforms/Windows/app.manifest delete mode 100644 Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs delete mode 100644 Maui_ChartTooltip/Platforms/iOS/Info.plist delete mode 100644 Maui_ChartTooltip/Platforms/iOS/Program.cs delete mode 100644 Maui_ChartTooltip/Properties/launchSettings.json delete mode 100644 Maui_ChartTooltip/Resources/AppIcon/appicon.svg delete mode 100644 Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg delete mode 100644 Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf delete mode 100644 Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf delete mode 100644 Maui_ChartTooltip/Resources/Images/dotnet_bot.svg delete mode 100644 Maui_ChartTooltip/Resources/Raw/AboutAssets.txt delete mode 100644 Maui_ChartTooltip/Resources/Splash/splash.svg delete mode 100644 Maui_ChartTooltip/Resources/Styles/Colors.xaml delete mode 100644 Maui_ChartTooltip/Resources/Styles/Styles.xaml delete mode 100644 Maui_ChartTooltip/ViewModel/ViewModel.cs diff --git a/Maui_ChartTooltip/App.xaml b/Maui_ChartTooltip/App.xaml deleted file mode 100644 index dea41f7..0000000 --- a/Maui_ChartTooltip/App.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/Maui_ChartTooltip/App.xaml.cs b/Maui_ChartTooltip/App.xaml.cs deleted file mode 100644 index 3c69e75..0000000 --- a/Maui_ChartTooltip/App.xaml.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class App : Application -{ - public App() - { - InitializeComponent(); - - MainPage = new AppShell(); - } -} diff --git a/Maui_ChartTooltip/AppShell.xaml b/Maui_ChartTooltip/AppShell.xaml deleted file mode 100644 index 9ab6213..0000000 --- a/Maui_ChartTooltip/AppShell.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - diff --git a/Maui_ChartTooltip/AppShell.xaml.cs b/Maui_ChartTooltip/AppShell.xaml.cs deleted file mode 100644 index 8ffab85..0000000 --- a/Maui_ChartTooltip/AppShell.xaml.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class AppShell : Shell -{ - public AppShell() - { - InitializeComponent(); - } -} diff --git a/Maui_ChartTooltip/MainPage.xaml b/Maui_ChartTooltip/MainPage.xaml deleted file mode 100644 index 9180dc6..0000000 --- a/Maui_ChartTooltip/MainPage.xaml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Maui_ChartTooltip/MainPage.xaml.cs b/Maui_ChartTooltip/MainPage.xaml.cs deleted file mode 100644 index d7489c6..0000000 --- a/Maui_ChartTooltip/MainPage.xaml.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class MainPage : ContentPage -{ - public MainPage() - { - InitializeComponent(); - } -} - diff --git a/Maui_ChartTooltip/MauiProgram.cs b/Maui_ChartTooltip/MauiProgram.cs deleted file mode 100644 index 5af35fc..0000000 --- a/Maui_ChartTooltip/MauiProgram.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Syncfusion.Maui.Core.Hosting; - -namespace Maui_ChartTooltip; - -public static class MauiProgram -{ - public static MauiApp CreateMauiApp() - { - var builder = MauiApp.CreateBuilder(); - builder - .UseMauiApp() - .ConfigureSyncfusionCore() - .ConfigureFonts(fonts => - { - fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); - fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); - }); - - return builder.Build(); - } -} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip.csproj b/Maui_ChartTooltip/Maui_ChartTooltip.csproj deleted file mode 100644 index ba76d4e..0000000 --- a/Maui_ChartTooltip/Maui_ChartTooltip.csproj +++ /dev/null @@ -1,55 +0,0 @@ - - - - net6.0-android;net6.0-ios;net6.0-maccatalyst - $(TargetFrameworks);net6.0-windows10.0.19041.0 - - - Exe - Maui_ChartTooltip - true - true - enable - - - Maui_ChartTooltip - - - com.companyname.maui_charttooltip - f0c97090-4758-44bb-92cc-36364d664cae - - - 1.0 - 1 - - 14.2 - 14.0 - 21.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Maui_ChartTooltip/Maui_ChartTooltip.sln b/Maui_ChartTooltip/Maui_ChartTooltip.sln index 553aaf7..5b7f4eb 100644 --- a/Maui_ChartTooltip/Maui_ChartTooltip.sln +++ b/Maui_ChartTooltip/Maui_ChartTooltip.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.0.31611.283 +VisualStudioVersion = 17.13.35919.96 d17.13 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maui_ChartTooltip", "Maui_ChartTooltip.csproj", "{7A0639F6-D847-4249-95FF-9059D1A823A8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maui_ChartTooltip", "Maui_ChartTooltip\Maui_ChartTooltip.csproj", "{D98110D2-6A26-4187-B870-7F2E0BDCF46C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,17 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Build.0 = Release|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Deploy.0 = Release|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + SolutionGuid = {E8A59F04-6EEF-42F7-AAC8-EA312C15238F} EndGlobalSection EndGlobal diff --git a/Maui_ChartTooltip/Model/Model.cs b/Maui_ChartTooltip/Model/Model.cs deleted file mode 100644 index 0772b41..0000000 --- a/Maui_ChartTooltip/Model/Model.cs +++ /dev/null @@ -1,10 +0,0 @@ - -namespace Maui_ChartTooltip -{ - public class Model - { - public string Country { get; set; } - - public double Population { get; set; } - } -} diff --git a/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml b/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml deleted file mode 100644 index e9937ad..0000000 --- a/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Platforms/Android/MainActivity.cs b/Maui_ChartTooltip/Platforms/Android/MainActivity.cs deleted file mode 100644 index 079531c..0000000 --- a/Maui_ChartTooltip/Platforms/Android/MainActivity.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Android.App; -using Android.Content.PM; -using Android.OS; - -namespace Maui_ChartTooltip; - -[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/Maui_ChartTooltip/Platforms/Android/MainApplication.cs b/Maui_ChartTooltip/Platforms/Android/MainApplication.cs deleted file mode 100644 index 67f4293..0000000 --- a/Maui_ChartTooltip/Platforms/Android/MainApplication.cs +++ /dev/null @@ -1,15 +0,0 @@ -using Android.App; -using Android.Runtime; - -namespace Maui_ChartTooltip; - -[Application] -public class MainApplication : MauiApplication -{ - public MainApplication(IntPtr handle, JniHandleOwnership ownership) - : base(handle, ownership) - { - } - - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} diff --git a/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml b/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml deleted file mode 100644 index c04d749..0000000 --- a/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - #512BD4 - #2B0B98 - #2B0B98 - \ No newline at end of file diff --git a/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs b/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs deleted file mode 100644 index e994d3a..0000000 --- a/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Foundation; - -namespace Maui_ChartTooltip; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} diff --git a/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist b/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist deleted file mode 100644 index c96dd0a..0000000 --- a/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - UIDeviceFamily - - 1 - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - diff --git a/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs b/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs deleted file mode 100644 index 1c9db69..0000000 --- a/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs +++ /dev/null @@ -1,15 +0,0 @@ -using ObjCRuntime; -using UIKit; - -namespace Maui_ChartTooltip; - -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/Maui_ChartTooltip/Platforms/Tizen/Main.cs b/Maui_ChartTooltip/Platforms/Tizen/Main.cs deleted file mode 100644 index af78614..0000000 --- a/Maui_ChartTooltip/Platforms/Tizen/Main.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using Microsoft.Maui; -using Microsoft.Maui.Hosting; - -namespace Maui_ChartTooltip; - -class Program : MauiApplication -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - - static void Main(string[] args) - { - var app = new Program(); - app.Run(args); - } -} diff --git a/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml b/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml deleted file mode 100644 index 9a2af1b..0000000 --- a/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - maui-appicon-placeholder - - - - - http://tizen.org/privilege/internet - - - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Platforms/Windows/App.xaml b/Maui_ChartTooltip/Platforms/Windows/App.xaml deleted file mode 100644 index 6b5979d..0000000 --- a/Maui_ChartTooltip/Platforms/Windows/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs b/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs deleted file mode 100644 index 345efe4..0000000 --- a/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs +++ /dev/null @@ -1,24 +0,0 @@ -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 Maui_ChartTooltip.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/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest b/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest deleted file mode 100644 index 2bcb11e..0000000 --- a/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - $placeholder$ - User Name - $placeholder$.png - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Maui_ChartTooltip/Platforms/Windows/app.manifest b/Maui_ChartTooltip/Platforms/Windows/app.manifest deleted file mode 100644 index 3bd2848..0000000 --- a/Maui_ChartTooltip/Platforms/Windows/app.manifest +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - diff --git a/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs b/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs deleted file mode 100644 index e994d3a..0000000 --- a/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Foundation; - -namespace Maui_ChartTooltip; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} diff --git a/Maui_ChartTooltip/Platforms/iOS/Info.plist b/Maui_ChartTooltip/Platforms/iOS/Info.plist deleted file mode 100644 index 0004a4f..0000000 --- a/Maui_ChartTooltip/Platforms/iOS/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - LSRequiresIPhoneOS - - UIDeviceFamily - - 1 - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - diff --git a/Maui_ChartTooltip/Platforms/iOS/Program.cs b/Maui_ChartTooltip/Platforms/iOS/Program.cs deleted file mode 100644 index 1c9db69..0000000 --- a/Maui_ChartTooltip/Platforms/iOS/Program.cs +++ /dev/null @@ -1,15 +0,0 @@ -using ObjCRuntime; -using UIKit; - -namespace Maui_ChartTooltip; - -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/Maui_ChartTooltip/Properties/launchSettings.json b/Maui_ChartTooltip/Properties/launchSettings.json deleted file mode 100644 index edf8aad..0000000 --- a/Maui_ChartTooltip/Properties/launchSettings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "profiles": { - "Windows Machine": { - "commandName": "MsixPackage", - "nativeDebugging": false - } - } -} \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/AppIcon/appicon.svg b/Maui_ChartTooltip/Resources/AppIcon/appicon.svg deleted file mode 100644 index 9d63b65..0000000 --- a/Maui_ChartTooltip/Resources/AppIcon/appicon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg b/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg deleted file mode 100644 index 21dfb25..0000000 --- a/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf b/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf deleted file mode 100644 index 6cbaf4b89861a4b103c332ba7e4ad8c1211a3e5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107152 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 VIzmv%$fF0;mm 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 C5j>{= diff --git a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf b/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf deleted file mode 100644 index 554d68ad702badfc7f294b30881b0d0fb878b541..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 111048 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.XA6nG$zqZ@C5dVT%yi-OBMmn!6jh@;9NpV`FYS>Pjjzvic6^iq=QmM z9}Tlvm{nCV3%nOI{Q(WLSy~C>S~26CbAt1*&iG&9JS@YKD>!#QoB|D>*&3XPd+{;o zHGF2vZ`tA4?Xz0BiZnQLuzFD~SG)V*cxZ6uXyxkFS}s9xJLgC=9Rx~`gzO5+bJ=a3 z>EQK3Z&ab7HVyig%ebf=Je@Y@Hw6scZ95Fu z$gT(os+knn0fPLRf!9od1!~>9f}V`3%Pe@U<1m^;jS_eu4TfQYzY!We{X}V6;mnZL zxd29kG`{$W^6(n2!a*84oEQxb$EQNnOckGc`R%{NXPl^+Dx7*vPFnF1lo2&kg)>v$ zXNS{X!$;6Y)Jzr5Obt%gR(v>DMa={p!s{Ej%4=rJ9YJXpBEUKLENUj8iIj)cn)$P+ znH?NF6LW2X?^x%;xhkC#kXrc;7ca~#_>NCSip78k$uMd#Fj30a%0%(CGF;ZAi$bQ> zEA@1n?hia4V1K?`Jgrgk-7s)a&N{B|fu-WT|lK{|+A^St^{F8l04S zBx|;iEEUd74WHINNbp2R7T^#_7Uzj*^LfodTdp=}cFCG8Bn!}ZN*U30c$@DgBrD2^ z;`&Aokv+&Ek!i5JaY(Ec678fmTh0f$!f?VW<;=oFW_sZ`IUt&^-A* zER=d4B}aw8s90^S>V-c8h}F2IGSuMp20Q9mYe+b=0lpUXGY z^vJ)PsKZDv>PLaVkgDnoAR3bIm#p&IKs-r(0MCm4N5>VJfRSR}6sEW+=_g7ZsY0e+2BA!t#dR4h2Z1Qy^I zXdv*s7Y65-fPwFqsW8;8U8ROz7X0Ec&p*%i(&d?`{a zQcJ1v3%7v5`&t2`wXgNM2ZrctISiB%3OPy{>Y!7(azMVxOG)^QfPrKX^bmyIc?~gf zP9P?Z3oH#DZ+LKLTRbG~aqb~k^;8WHKA5%V?v-(+49YwZ_De`ff}*!y$Y)bNO7iQm zGc(9>My&Bc^4XSO^mDPp6;X^3OV$N`xn0cr_1L?d)aGMEwnvyeWMG4#mIrc8P4W+b zSD++6+$q1zom^5=Jb!bK+XZv;hb5lKS~Xifn>(tkchH-K^B#Y{q{44>4aYnmnE!@6 z+%d969@saEe?I%&5y#s(5AKu*h^twp;)H?(+|8RjFa+@D7S~LuoS#2y*?<$tgXCL} zl*G(?Jg9eBQTD;gGQX-Z_L97;{|zMxCDwGaY0U_xo_nZ(%d14d)vP3@jM-95C zXnSVsD_nbb85wB{>T%SmfOP7_;Jz~r5#g!EN0w^MIbKBPW+hncXO+VJ;{1B~Nq*_R0XcsA!-51cV#jEq2@x_O$@~Fm@9@XT z?V0cv32Ql=@%T7%L`i7dFDoOYU3-r*=-1nCE zT-O(LUyYjT_fU~?>8Z!pu3fX4Hp25_M5RO&|#6#y6%w;0DRVIA6OoRvCD-#fiG5<*> zR7AN^kyFZ9D9Z9%g`(`6jV~JK8%CFxjCPspx?P_Hv1pe#u3m^mMXmDungxA&_UzNJ zoLi)nSjt;CZ+H;I9yo-|mEhE)2rNUqEyPB)8(b3N13HUX*xY%b-B5g{f7be(o)PsG z*}YRbMaErEnUc|^Uw+5p8t*4OJEGwuzOW!3M+87O;hhi@b%^qc6^<_MuqwqRnm+_= zK1&BvjtWsVCG8lRmD**}SL>9_z;}EW(-F$%O;5K%JNEw$T2JK-6&m(`vTd-In0QNq zurV%hF6QPc8z@$R24d$8-v|Wsgdb%rsYD29%mdLRw(W*7Xwa_dbmt+d>BW*ZnJdh0KsoA_>?)dmo+Hx9>PQ zJqizVguNwK{6&e(e^VlZDA8NjjcJ)LPp5m2u+R@4>z*)c9hN_+@MIH8)P}^S2N-;V z81wLLgXQO5rh$cCQ8Z{!AqVRylDgcJ`}s(wJ>f=}8%)&+8WB)I7hsi5cVp@N7e~cZ zm5tppWcG|p51+U^{|!Z9tZD}hnpHS7x$lqxy*E|lzw+d?JrBQzzK@a-N~7EnI0%bj zFoB&}Hn;~wz+xx`1O^5SE({DbwQUd_5%t z)%oZK7wTPnd?YLfZ!6@@KDF;OGt8H#V*8M~%~ymXhpjx-hLsp{^`TqM53(KC4=MQw z+|_Z2vOO3ZEo+~VcHEsrL%UMaWyEA96%?!k1!I6q2%D(4X3VcCGsMs9gtd9CZR zc9mV&Z_S@sZDlO;#?fz;--n#(*!l6LRPXEBlYMkjS*!PgJ~kG$rkCz0X4s(!0^9ze zTn}KYhs^mo#RYFGma+}P&Lp5HW)fOAUZO!)Lxf{#MMkqx`nmZ4pxpZ8nLjQe2fi9G zP2>>Fbu38KRyh?C6^NEPGu;;A9bu1+9vy|X44&bGvD8!Y^9veS=ocj!2Nz0zA_|{k zb)G5441wBwdHXmbZu5|o-p(PnqvTWtPFojsEgbp7x2|q!&(|I}PwBrmUz?+_nUB=Z zn!YV_Hnvv`QAU^#1!1+FPvOv;|GG>)Hz?T`mPj(j}?(&xjX?~0bCe|ogZ zC(vCE39rhc0u8#wfQpNnceGd*B{lt9z!u7KkFa%Va^yP_b-<|w?nkn#L^X>0n-1E(XwcEGs zjybaXgLjk#TbDiuH`E@`pE^IY;?A>5Smx0YtCyD`YRgAmJ%D_<=N^f8y#)se zRDup6_CsU4K9`jPSoQTsf8g5k2U1?(qf-f^Z`dRHC{L*4LT%LbI+(K2DaEvwe)pzm z!4Qh=ZcRaR5vAZ>D=9^a8ovI^p34N~OQhhddNs>q%WFvU0Ux`mX|QMaLluf+op{R~ zq?pN90@_myR6bWz=Eqrw5DLJsCLI6QAiaYr_VkA7P~X*NjLLZb1!k-wq&&7Zfd2TVH;n4W)u z`~L$P{D1Pz{rRo}hOvBHtx^rP%x!Afj1HQ-28-lAjV7?H@DR2fUug$vApWSII@C)u zJSp-qvqZjuT;VOoS?a$B$ZT?l*3+A85_^=r#?DJ-si*XyG)>wdy(Rr7TjVl%zs{%| zp?gjDnZ6gSKA#%QhAxJ2h6clBW0i5Ii_s;=Wv}&-rgGCp(|*$*u7R!(x^8m4 z;1=dq=eFP7+daj7g8OFopFBEvjPzLU(d2R5<44ax&rY6$Ja@uDZ#VOD^Vew5-uC+4 zJKnqAdyn@CpD3RPeYW`g?AzCOy6*>m2EX2Zll>0+Q~%!nQ~eM6e-RKHFd6^01^f~? zAn=92yFu2VCxcG48Q5k^n=jhj4VHtK2R{@1MTlR>;E*jL?}f^tsiB3TD?;~#{uI_e zEIn*^*h68*!oCdqK1>Ps47Y|ShA#_WAHF?&Z}>;yUxt4lu2?)RR!gmAp=GV*dCP9g z5z7}=7i+C`p>?hGdFvkQ(FpH|IT4RXG)C-c~oQ6 z&ZzgIPDEXZ`YD=4dq>-%)WoNT}8Y4c1zoB zYWGsR-R%yy`@G%tm~Jso#q5lEFXm*-#h6>|rS=}}gW9)m-@E<5_J!>yw4c>}ar;&6 zkGKDK`ybo?5vz|4h>eKt6x%g+dhDyQ`(sbVeieHy_V*4h9sD{JcX+wOI~|U9_;-gN zI+BiF9qT&Y>EzZaq*J?2ojYZ98s4eA)3i>DJFV~ZOs7{n?eBE5)45JpI{ilNc@#*mc;tS#{<7dV%i+?iymH2n#KZ!pde=~t5cqMdA zSeEFUcqsAH#H)$FB^i@^lERV(Bt4w8DrtYxh0bj{_wBr}^Xr|@Bu6HvBo`!4NPal^ z@#HPZyOQ5eK9l@a^5qmM#WlqzB{;>FQlBzEWogR3l=o9UN@c00)VS2t)aj{nQx~WH z-i3A<+~v70ySp6ia<;GW?7y6&=e=*mP>zNyn+dVfk_l4Y7b1w`C9WZdfk^vtN^cpy5;O2q959%{0f6(DU zpAC*2+;MR7;J$+g4}Nj*-63O#R1KLke^`k(V3%X zjb1!@_2~CTUm0T<6Eh}v%)BxC$I4@ekDW30{DTR9|F5X3=#!%JMOTX_7QZsiXI$HH z$>VyD8#u0T+=g+Vj=M7McFCZU9VNe&4lEr}`e12A>0_nOm+me-Qu=x6wX$(#yUTsb zOUn<94p#H*7^CVf#g zxa#fdDU*XI@0!wXO68OtQ+}_p)r_clq-JOB2UCluep=V3ZhhSk(*{j@XWB2*J4}CM z`pFp`W-OVpX2#YTm+PbJC)MwpX_z^3=BAmS&kC6Jz^qlXjz1jz@XXn|*~@2doc-MF zPv;otnCE29X_)iLT>rUa=RP_2?7X(~s^%S;Z<#-4{`yDcN9rEAv7ltZLkk{WuzbPg zg~lU4T)b{A4M?YL_T^zHx>*D^4M=zeVxNh<6#g8v;T>Sl#?n?$O zd2q>;B@33UUGn^r+e`Z{Em&Hybmr1!OP^Z0vq5TjprNv1X2W9*Pc`gpc(>tX!^MW5 zm&wcgmqjldwruXQmCK%4_Uf{KEIYjH^kWf^O?+(oV@=E5m(N)K@5g&RzTxp3D>7HC zUvcG$8pmWDp^&xYVoR#t6p05&Z-luF0Q)0 z+O#@kb*I(otMgWuuAa7f$?8q3UtN80^@-KzR^M3NyvAcq*qZn?8Ef*_l&_hwreV$I zH9OZFT=UtQYioXAt6S@}Hgs*w+OBJJ*N$0Ry>|ZE)oY(yyL;`?wddB}Tqm#dTNk-5 zWnK2V2i8@rt6#Tt-P(0euX|%-Q^txsP+bbayqN$cy^FIvBH z{kHY5um52Ezt&&a;JTs5hRGXtZS>rjxpCUYcQ&=zl(VUN)4EOXZfbcl`pL>CKiF*A zT)4S-bHnCUn}6Ee{M78HmOi!isoRbEM*qg>#?;0Ejbj?C8s|2yY~0rPdgBL;CmJs_ z-e~-N3*F+gC3s86Ey-JYY#Fp=q}uNi8gyTlJHG9G2>YQj!ig5;uwJ=8b=+Du{iiQ{QU@?o~4mqxGus` z&d<_TVm8E)Y8~cKbvfh!`~lVL&XWW3bQ~GDKSApC@R`jnk^Zc-rBoM+=Of4g!#Hw4 zpNV4tsmJVvIE#1Xq*Pu^LUlLE8#1(21L8d3Ec5woc@xQC&yr0XXPlGd0VGtaMpTfu z=>+*%;C`2Emu>^EyErzJa(0#27T4Pi&y(%^Ip*zn`tAH1 zsTSW~CgU*BjK;f08MDUvr3B*{5+tL1(rJ<@1(1$%1wG4t!Mr<*rV zBQsJ9+#>bcNh!NU(tt}I-W74$^Jg+?`9qpSCW&WPNfPkw$jbscY}fT5Q#ifpKJfM` z$(P)~zgjXx|19Z_qZ5u)&^}erozwol!!V#l;k*!h;JmOO;6rD@i%Ts(;M`Srmc%*u zzpOY{r=%SLJi0T;l`h zh4aDX4ELND&Ijj(;F-P5JbzyPd(J33&!5xaFV9>?!E;`Iog4Dy^x=5^mot}VAya>I z=CaPqgEPU|ja_Q_4&_`g=-#d60?t0Te@F138;Q4{x1;X#NB!Ky>j>U27Igu#Dlf-@ z`U09c&SUPm{|(Pa5)U@I1#?gKyze{fJ|mL$j@LKPRMb1Cvtb>nH|zvGP(OJ+u%CwFe+!}-T$=>Oo%>$|9PyuNdu+Uq^9d%XTTpVBjOl?@vBlEUEZlpzYGYP=+8}fGWzL8#+8_9KD|CU?4 z-pNYKUj4e3z0zkb2lN|SKGmISc~xK9@+rI9^0}j}!%DsbXuINs%m6ped!9GvDW{tb zGT>dQggl0$9p~-WUGl6> zCY$&(T{Oy_NA$p5yq9j^8E?xzLz{hWbccv^Lmbc+6bBDeUY2MfwyU~__iAL@E~B@>%;wL zQ7?G?AS4eOgE*xAEqCcM*fMZ17)$wC>S#ZjfWJ4HB}bB35<|PboGfzrf#gx>2V8Gp zP0$gV$Pkom5j+G=moh=Kl_Ud4e|;nHd6x9j*Q4y%;bR1S^g$$;%c}efX!$JZjiVzD z-an1N`o|%>UO@kN3vFu}@89H75~+Kh)Jk!X+m&Rrc&6$XMOb|~4*a+A19fm4rwf8( z*5WAV2l~Hg9A+FjIAU?6;fTW#jq<~_s-S~7vmNL!aZg9!Sv{_kaJ>l+Ffrr!A$>kS zcs_I~F@yg>@=?^)k;KO3Pv{1mwvZkDeB}keEN7d@Vxx)J_@SSGJ~0~Q-i$WwHEsvG z+Zo3XgxqPy`6eOFCQ)A?*Mk3$FKBPG^{23Jy_A@A9f`?M4>^wn-?t&3QEO*Rj@J;Hd8ioDy*ShHub5>ML+w2b?)9UY`$w?$8bS zx4iA*GT=Bn`WNuFNwgtxWEtKUA!e*NJMwbS1#4V0phL!p_6;(iogIC!otGL<(Qfg! zgST_Mt@+d0jwAZ}1H3)q?VV_I9Q>&edU6o@5+>Rxf_57^j$r_)He}YzHy|XQMF{{HU|@BN_ZSkG6IZ_;3UL68ay#H|WLbb{{?NyB9jBGrjJ6uhH@E zp7T1x>G~heet7Tqcke}i)QwEHpV#yL_OEmu`*Z8xzIW8`|8l-xr*X6g|Lv@`-CVvo zP3>o{hoTLEW&AGY2=3&o=ewBHzRRz*gFZ__>0RQ>4`~7F+8bn&G=(Iie@#ZaIznCn zz2+~*Z_r(B=)Xp2IvQky%ZKv;JNE%LrR5KtU&r}PoGH$);kbk23)~Oj@6ewfkjyPe zi*YEQf#AmhvWftEZY?%0Z{CjOo}qX0m06|${>1qwJwqhwku+x8D;oHzChTI>BPc!Znxtw5_%8oL-3%bSs$+Wl7+_QtiVF(7XD7ogUy~0 z3oO@E+MhsdMl2jxfQ74k~? zJ$b+U3H)38gwe2GVT-~JhkX?GQ`pa8zlRUBxLW)yVU`F>lqKGhWa(<@ZppMvw$xkZ zTAsDMV0qc9v-(*5trly9HOkt_IyQnu=p#H~HEt6T77-hf6HydV7WvT~D5fpVm|x(f z><2GFTgk`dByES42;*oe%CVKcigNtH0!2AKL^(c3Ij}F=UXF#L9FLM zP!1w{pd3TxF>;Z-M1DeEg>oE_Psk_3NLbIXd0|__j==hTE9@7PgIIhl0TzoWN1`Ro zUXH0K$1^C$OZSyyl)W5YPUR>?IS9&e7c(lCq=7A$THa^JTHeRJ$@{Eh%lj=&W<@m)yV3xcKA6A1;1>@!N|R zFJ8EK?&230PhUKC@yNxE7pGmEO31~)i>?=4zOK5UT)1=LmkUQOL|%xv(B?wW1@8-< z7o_u7&!0Sh{L4z%1O~HVkTmBXM(p?f-o5YsKi^`_vG}2v{hOa7#oxTv9#7M*{__P| z82*!jy^-5rO(ml z=?koqJw$KQ|B<#!*{BWW}7&bP&@2HW51;g`)ynz1oDd(^sbhzB(NU3YZ4uV+KwmGjrw5`9x)=?51o&f=bg(qh zqO2w<(&Cj}Y|FA0=XC5~$qKBBuCkD@CJ`;#Z8tXOH&k1#ZHfl zn$nT7{JxawYRYsiB{f^RlkPkVo2BV^rp>a4jvQKm>*blYLQB*4;(DOCmZQXtJ8rC2 zd?B#n*jlohvZqxvWEBBNy35tn$JVFJ)UgBEWpc%(E3TT_*(UFz?Rrvi!P;eY-NlH} zoo9=ZW)+t<4H;UHm5H^Dg&jNeYx1xG5?+x$0%ViEPm@7_v{a&0&<-rSI_z(FY>%0Y zD~fe1wUri+E@+a9@oj^Y)zGlG$t$)g#+KO>GxM83(5S4bgDo?wDV9Uc&C~M9ZOsz1 z%8_Q9rQuhC;@G~wfpR!KDYie+N1A^n{ACmC(?s(Mto#?84X!jaWZNv+4Mh#bds^m= zvsuixhFxxM4U@A#ZZf2xiQ@UbWx-9^j}Gjvoz6N}8YR1||4 z_}|NB?GkMD($WCHU%w_G3y1>>TdkZ7%l4#`aky!kH?%;#w~%qcuaWe)*uo}O#NX_9 zyzv{(-^_Eo(LOJ-fw#HC3L2W^$bO}^EKqz|anrnUkgf@wF*b9P$L(ONt-;&Nk`@OX zk=6pF`;}H&nsiYJFp006KY&c~Pa5zCEb+Llp1u!822oz#mNXl{a5!1EtRnmWX%&IU z(E>u}#HxajU(l4E35ul`+l3@+S9~14C@uoSDmh<=7Bt1#CO7%oGE^zT1CCZ!<*)+r ziTX6F$+u4vDJrpl)fAV7Zz1|w4P4SV3LKVgXu)2%dbqHwvnBZTBrI?#%*5j+|2~ki zsH}#9((*x-E+9MnP%OwwenIXqTkg=21>mZ+ zP`u$UI5;^n>pn2Hf?yR41hB~%X|xouV5txZ&3ItR#)U1TJN`BqB8@oAAh>wS1vjI+ zrGN$#M{1za6l2LM%e1HC_xAwBjTG4@#{o^xZvm%IPOueKT>LtAV0dk@XN=E{oTxec z9e;&p3a^cj&p!N_O3Oel^p*l!nXS-PVQESqQou>X$s?$2Cx)Q8%9Y&w0_Qs?Vu4J= zir0d2c49VV$7(d>#BJ&;?j5v-%-s9BpX0Tq!D!1J*1$PovjZf+yk8UHBAnjE3&lpw z=M~z9w%1}tl@=AcVOM%Ougn!)A&m{Tex(hzVFleqYP2V_gJ<%*y-6<3&ClrA0Zm)R zE*o7kbXPiEGHhhQUNdxNB%Qw<}6ylnz5d$sSpKlkR{Z@aMhw^Iqz6J%4VnWi(->Dn6fwdN-tr;&1+_0xPPdrOnac z2J`ovQ-x?$8qAkFra$Lm&9Mx((6Hg*IXJ?oCzRP&!=%C4A>o4t28R#KZWA8W**rY5 zZBBTQPfNH#ZVA^*E#U)lL&9^jgTsB2yoc+kG+a)ShKEatD$+}ORg#YNKiB`e{?f62 zG$-3Tyf2P^+0>R3F+3zGc({L(-*7MLIozD&IsAkt4fmv;p65MVJS9E){^2x<46i10 z$*bf?BAW@F=TCKX4}D@+{;=5C+&zXCbQdl|Mm5nTO_9U+-}Ip)oAgVX$ncS)3U*QY zc;TYu%SlFPZd2m0f+kC7VQy0?F3h33{7FV(ZEbAq*xIR6WBCt%Yin!OYw-Yo#BJbM zcN5K%S*0`?Zm@qdV=_uA~e7)PC(oMl%olwL7jS*sncc zcl*$Ojc|@q8~e2vF-sjtCaEOjaZJTAla!HCjB-jzG46|TRRaH0lSw_P5veNh)Iwgw zkx1f60{(Ttbzh{Z28@aL+Cuu^x(46yzZ^;>uBs3Nd@!Ds;mSgW;dvFQ6<1|s5>jL! z%|zsyhZN&U9j=SQ4(gDVFV2aJw*elLs>xUT_pHD8Mc<-dRFNa2iO zrNEO@VyY-lsmP6E_Yj^{!+LOk`FYtm4JV-t^*E2i7Z#-FCF9Vh3j9<$R|iq;zfYZAca4Nw82MudMkKTC7)AKxdIscB{oKsUl@vc}?7DuLwf1QxSy3 ze4d1q|F_>wMOit2IaZwZxgeE@qr3&}__ii{>> z$XN0qDFQcMMyt1wEF$lab!d?uC6AM3XcAz9yGwADT(CXg0j&Tor;vZp8d^)I(mHa5T&2^<^K?3$f%T&^=_~}$n@#7C&&fsd1vy8)BwvvW@FRR4 z7P)zJK7E8PpbO!B>rn(CT0)o72E^)p46d3Urz_|abS11^tLYlLmae1g=?1!yZlX`N z+9+Vr+tzBMpxfz-hz0NxeVM+3aOtl?P1;3Yqp#C9=$rH{x|=)+ePS=&NB=?Jrti>q z>3eiPJwV^52k8g&5dDxIrbp;e`Vpcsd`yqiPv{AHlAfafq^Ie>=o$Jc{fvGN2fSa< zbM#C475z6oPcP7m^lN&FenT(QEA%S8Mz7Ov>38%7{ht0ne}t9pCwhziOn;%ja_b5G zjs8ympm*q9+DsK#A_??j#w3Jv&@nwTKBWY-JJ5#@aIY+Gf$L9gAV@Su8Y!*I5VFk-SBAlMh%Y@&hb0MHP73UaU7#^+VQH)@>xPi7J>Ye7JM@N)P|BWz z<##iAfvkW&vX<;+Jy|c7&U&*9)`w-XESAmsvK-cr^=G+k02{~#vB8KGF_h)8VJx2w zXCv4Htbi4=k!%zj&Fx0)K~}_y**I3hN?92zXX9A~>`W8bLu?|}9aphxHknOfHLR9R zWp!*Co6csidNz~IVh^*~Yz~{t=CS$g5w?IWWQ(v)c`;kUma+!6j6KGdv&Y#A_5@qW zR=m|? zy~>){F06ijoxQ={WN)$EY!BPZ_OXA!di)N1m%YdKvjgmXc94C*4zUkmQ9c4&>__Yv z`u`}#b_8IK7XW19*9QzWM=YO;F>;k*UzGj!$H|#RI!mhGw z>^l3FeaCLF@7WLRM|P9_#BQ;l*)Qx@#FP6U_8a@1{lV_AyR4ZhtOYh-Dlyo7Wl1OL zC4*#y1=u9H!mE`#0s(qr)wY-9E%`{klAq)+!F`z&B(;%(r4T7p3X{Smi)57|B%9P$ zij<8YzvEMoVL) zu~<)DBo#~Jq!OuADwE2k@lu6UDNT?bk|s)%q$;Uenk-F`YNT3es#J%y=hLMbQoS@& znk79f&6eg!bESFGeCZKsfwWLsBt0rEmX-(`{xVqcmrIXJE2Jl+mC`C{wX{ZBE3K2( z3)}uC=}Bp`^pw;H+h+&p)E`5){zTdeoBuYm!((as=A32 zb^SUOPn>F~tE!BT@15yVJ*}*!wxqhI%+zmuP4Toc{?gR1xTJ2Xxb*B-Qdv_{H>rGL z*$n>59Y&(EnzGu;S^=f^q~emA>MBFAde-+IS5r2vOkXTchThfVtEWJ(DtfCRu7GW#VMY!gs|bC1q7pO=a4p zAb0q#K%YO-SBgv5ek!hND)risprXuCAS0Q$4w&Ovq~j>GM<^YE&HZoU(PRak|mxsW{ZAr(x<> zwc_MDtd(@GwXN4~`Az`braIl|^HnfY#YxWRT%U?R`r(4r`Z{qk47Zo6&R(kFYN_hP zNjJQvvTD4pj{kKZ?p!AKI_EpXaJv-Osb|**S}}B;?sQ$~bY0(itskkDb*4C(MryKT znyFptCRSICuQm1NxTwjBwM#?qEb+)tTqe%0gKH-i*H)<4)vecV!<-1@hSo%@I=ZRV zRn@ibjy6NwnR-v0Tv048U5cx!r>V-g>WOPAvE%F2ZJ z_{1c~RdRxMm8e~{zU}O8{~|e=lU2J*;dfg4RPCyZc9rJ1N{QF5w7gOrc_nmCcDzl{ zpd@He5;Q1@8k9s0N}>Zwd}3z@ltc|)Vv6=mgPf>APShYLX^@jN$VnRHB#jnHS{_MS z9!XjrNm?FBS{_MS9-Xy3I%|1!*7E4A<HOQ$N(ZJkqp0(zHC%v^>(ZJkqp0Qd^-o@<2_o%TPkR<84B` zBM9XHW^N*%feu1(g|mX+!!RaQYG z)z_AlR9BU{l+7qXvxQVHRkd}K%W5jCYg9O0(mE&TCzsXoHZH5Krdm8rNl3KIBd+ZH zNl8dbPIM`&oeFhqYFViZ^whG-@z_q~Hnjq3l6qb1T3$KLaqU(MT&nCZcypPZ5uac` zC%Tu^*HliNSXma?VM>QBXh$ zJ;Tf}qXNPNK}iAv5(Fe?7zR*8gh5eM1Ox#yD2f5y7MYK>Ah zi_PX!Hk$z{6Qu}|&BsMZ*8F_Ll*z{jl#dT6ABV^?WufH(<<~=G3FHNoU!KS&3+f}W zO~nKKA)sxHO1MgSa$^OM|#H zh)aXGbcjQTIKYWRuP-tk;?N-u9k!DW@#qkb4)N#^j}GzZ5RVS==n&5ew$lo>(+c8S zL3}HSZw2wKAifpEw}SXq5Z?;oTS0s)h;Ie)tsuS?#J7g{))3zs;#)&}Ylv?R@vR}g zHN>}u_|_2L8sb|+e5j9PYlv?R@vYgC{C;I1s2?ThV+NFg0cBu785mFo29$vTWne%V z7*GZVlz{8{)GeJ{#h*AwC=8vmw46|k%9jsNzI=f4 zsUp^vBpr?RBe1V<<9^wo16z~vVpr?R`_yRozJj561 zDc~W#Ku-Y=@dbJcc!2b zJSc}iS3wyl2Ltv41Ii)LQzA>Cr+`8^1bPa1D2G5#0T1O6=qcdgI0*C<@NgUidJ1?r z4gx&|Jj561DUl`6Q$XQ32=o;2a2y1B3V1jU0zCyh90!4(0v?WoKu-Y=+b_^lz{Bd z!mo0uAM;x=elQBnli@q2KWh@OKP!>uADuW~aPa4;audESdOR{Hm@7Y#u^f2JAa4od z_Z&Nh7;vbKW1|zIL{XpCI3`{M%>aa(gmPkhFB|+2MZH`;1r9EH9Qd~AalTuN{@{DG zXaUrj1r!$?j7|k4A_)<54G0PZUbnv(7yb|qK`&X^Ng-X7mk8lE5B({I26xdPa+71a zXoiR&YAXsuwIYJ>tSF4h;%pa+qahrAkU|LkC50vvw>0oJ3!zNhTp<+xKqF*5|0$9mL-}EC6*3-qn8anvyD_A{8 z_Xuh5^CiG4y9hWc1?rXstLn;NHGK*^0>04>kfedEa$vPx1+21z752!m5P!^xKc!%- zF*T8s)0lurOk*TJjY0D-Ois~j1JgP=jR&KEY5!9ij}Sr5pHmX12jomnO)(Ea&d-#K z*8F&K3fhYWtwU2$eu{2P66`KO^Uw$L(ESK#AEN)!6s71mh=8`MfIR^zV72f%Sn+*@ z#ewx}CsQ*t zbqH8x1}nhm^ABMCX#uDc3s!k5_;R4KfN#-YMDVd_J{SSbN%=T1eiC5a==W8lwV*5> zlvM;}mBAV4b;AQaAZVeWzG%RKw{1?!oA)($5-0L?D_R1aH*ppp4WkHhe&2C{N}Pe; z{3pp|z_To1xznh=|Y1w8{J^jTOa}@bpfB ztP?mamMDuzi-`MW+F*n5LO8Jh0*Momm@NW6V9YbaVTDQp5P!sQQjX?6?KJQTME;*6 z*n|-ewoss(wa~3d7U&;B{H;PEg8AmcPfzq-Hf(ya=iG-_R`od3XQ5Y8r^cML)2 ziXw`*B`!ooL>^_t6eZk2JRU^u!MsG2LuAlQQAJVbpui{)CLwAgnrM!MqOv_2vW|}l z<`Nh&oY)wSKQ|1Vp^wZ&kK+}mPCgzOL;x{uFx`d_oETOF5<(;*+N#pvebO`{iD+g@ zGbMWhmW0rW6v!g!8~!5#f&hg;K!aZbnsNdOPW~M3N`h5vEQq-9n*y2@6$>m(G#BAv zr%&!ZFv@ry*uDbtC2%|}7SrGtoBgEI>H+J;RN-4ehZNqOxp6mlmHQ^^n`~Lyf$e9V zdA-9*`g^AtGiMR{udfO>I6*RMla@C8VSi=EY?Jk^`!x!RZQO!RTkVIeF41LsP>M)c zsP*Z7&db19(Sg=OE|(mtZ!-?RWP0|iSDw5ck}Or3WGppLG(YN2{d^0q_4M{!bH!IP zr?oAg&;CfU8w#1yTfKKPceJ4C(YcSrYTeMs(wYqqbp7+I=8h-1xMog?S(-T`-+*Wz zFK6Tx-;wBE@^HFdL32UXGN;%#;y66eoBcd&D(I191Z;*~qBTQE4N>`d-P_4yMZ|zs z2n&mXcRp&N1!RO&gp`JN7@zVvSl(s1>qVMa)tA89D_ShX2|X+?WQ!~)V<8Np0iuTv zn4}`%*MK>K03Cmj;t5U(K^$%j!8t4-hNyxlp+$uirAekl3W+ou1WCxis`Dk%K_yC4 zvWX6S;w0R~JFIGEHvM$eq1FW4HpCT$oGN6GEJAEc7L>3u8KGQm>>Lx5q@*O{sEG^R z7A&PT7tMBizj#l zm&y9K0H9g%{|17KNTGr&VzEDjz_yji*C^0%JP(J(Ea+0VJjm#0R)-Kby1YM?x~#Zf zkBkk<`fm86;C9-JK~E3KcZOjc6BKaUABcMBKvxe8BB4n ztz4GbT=!+EjD4SqXX~_=a;<0bEF?PW_jwyUbbY$iOcJFH6!GZU7m1~QO_K*7cM1CO}QUgPE^v|5GeHs6>Ln~tCTWUl4c!B!) z4V&+M?Vfk_gQ9e#(XHM{M*X~ct(+a}Y78Hh8b#dDj_x_#uwm600~a`B%X)l`H^;RF zAK>eokZt{%7Afssvxv(IJ(6!|7q*L>xJti`RU%qA7f(PdE}f+7>lB z$GcQzj9uSP3p^SfNLg{PBtX`vYkvOtqlco>x4l;$ur+ul-CUxW)LdZx`pcu)o^n&| z-Sqb*bNUtL)Y>lV85v>ZW!zm=wJLMUU5k^OeTK3e*J`{gHCg&Ncdk*TsmG;Si|?ea zYP|W$s^eQ}shzvi4BtDreir|<2Q^N=JZFl=_7@XnLHEofF^TpHdmb&;i z9m!rMw{;%H`p7P3CsmJQ1{#mzc)s_~DOWd5xwT}`GkU4)a~<18wKL2V*5mUnoaBDa zGu^(k?CqCcU(j^FpOO92-WDl8vZe2(*WTk_drt%po-ayYHPSt@=$WlSxuX8T^3@?} zPd6@K;ag?0_Ky25@3Tqz`fo>~TJ&=abLN{lo*!7p%(^IUcj?vvh6#7u$LR4D1P?<+ zAHQuoEF4YO-aD~D_2C|evBDFL?2^dh&i?KVn*%p9;ph+~O;$)ZeKXoY~a`d2f@w{fwYn81Vpfh7WZ3$zv}>rZ3n ziP~7jjQp32bhZ{0| zr(~i0K)}}R)`hD(S4!oc5AroOv>0#UbVOx*Z?+tgXq|g@LB;;ju=@dLr&A6T`2?-a zUA>9zw4_IBYf7iaBF)ix)|;H$Pkf7bWFcy7u=A<;lmoX;Yb6!X2cHLCW16o>))`e? zeK41skv-Nn6UUx)VWV6_S%t9F&XLg1p~l-vW?9aP@URV-DjpW?SzP!yW9(ecD0}w9 zuXEd*D6gYuR6aSbH`3laDsz0heo?W#jJf1Hv8?W?EhM$UHl-YN0bo`x4=?=YtKMoYNzw!yNdgLX# zYrTa?68H+w$%Ls&&HnzU-#oZHMX0&Y>WYm1tA{}*FN;2udKdO!x=YzjOGk?ih%d5{ z+nzSH9b<6mX9!Cbkg4M89y6QyQpaJMZyY=m&0b; zSE?=g(Os<*n(*}a=dYVyNTv;k%{~4V84x%YfiR8;si=XgcwWT!ufJoQZo zPklYOQAEpoGwJjSChksh(|rQxU^#9Zpi~poQ@Fh^({Edw}Fmktqu0Qi1nn?rHEvNRHBro z03L=w6^#Q_4!t`L#&AnD(!gs;|Jos+tajkWOo#_Q*08YU{%P~UVV6@&-VGg+RVd3< zWM@5Y_g5;~%k#|J>Si>Y>i#XIQDbS<0m6AED`PaN-BkUlq$Bm}hTxFhy&-7~xh}MVzbDIX}BA*D=1Gp%T2O zQc8zw+TNWRr#DjRlBK8Yl}7phg5DoZI;opDB1^3sYcvqB4Q8aW7gp1a<*ZwEnW z2j!vloLa7|?0ik_rh|Xjg^VwM|21PFZ#pHry|n8SPx}F-)nv0~X?PXy%z?1oQ)Y%& zr3ch}$tlw;Rj|LzT=_cuNYI9%AMr1WW~a}nY@PnYuQ@|UrIe?tjPO+De|9b&k0tU{ zu?SD)+s_d~qZlf$K-Mr0i~rXs1`q2YA~|st$bmox54!;LEd!V|OK>&As@E=+z+?X+ zVi7$ptm5GLa6QFGg!bJFgOBgI<$O3)^mgLYsk~ho_tvv;BFn2q-2$GdDUc9w*KbAw zt3O0Kg=$Qqcp^e+IP6$SdQVyUZ6v+(KN18mLS_SN0`4hwf8A5sa)Qu}tb|GTmUdxL zVPGc*aVDZGD6Zui>JN5d5L{hc2rL(eIS7qRG9p{Es74GD-HJE^(Lu}M6*YfV>lzjn zWaPs2kBTL@1aT6>0)k3-@n|mS!5TymtO47AXhb^rHWJ?@2iqM;RLK6X94Fw<|Gl5z9JWF|z#PB7Ltbos zdM;*OW%(ys^3K7Ya|b2Eut7nIU5D$nGOrE3Ot4`uOjj9b+$X&-xbf6|`I*~m!$!N# zbjfY7df%vYprPdT6aP)FSmBzjyNyXth4hv@4k=%s-C}&mI#zPat#EeS1JSZ@#&`9% zl~Sfnd3m|4*J20tvj)WVhJ#zyoeE38B$Ie~b==pOu626z4ZHnAH z&QaZ~?85fdVRTA9|3qIs?WE(hl_9kUY%-1)&$3*$W7t|pDerMwS5Mm2!7)x6jujDFEqHBU`8ZDogF`A4ys(^r%VUkwH@Fkd?g#Km%4Gtazc4_`7-(`4kt5`g0EAi~6@y zg**^9#I?k^#3|F^zcP8h#h?UH*cl|`*Hi--pt>Lho;spWG~j#akrN&+@X-B`Wr+6# z4?J|Ie~UHYr2pTc{T`VDpBzGCf>MaY1SnqYw;7J_FxMSPb-AmsALDBOBS~#b{G}UR z_g5T-h7u`IM{thRhfl=e4W662XNYY9sL8?>dKAI(c#&ys%W|b6=&W$|eYTw$cZRsksVmDD7G{(Uyh+oM_I4yre>E?2c79iL==6#!GgWF| z-)uQJB-Tz1@V~s^_W8#C-E-<%>slp-lJ1)x_jQPzY0KUEy!D-%q=_sO(Pf)n%`o)sD`!co;_VBvpF0C1s+SFII>Q;C6i1*OQ zN0FmoehS-c zp{IIpS%3BDY{|m%ozu_muHBfo|Kzyvz-zR;m#AoGMWjQ*)mDo82ke^2h5ds~br!0Ara!zLuLOVG z<`U;Qn7YvO`x$D;I<}6~>1@TDNu+afYD0dj!<{pjwFkGbBSe)(FD1Uubb4@}c{R>^ zG106N+tF}vdDS0vgV`G% z7aqkfY-oi zc2B%H!{NLs-EIr6(K^&vZg}lt_FzX-xSFRwHoi4v-?BUUiMT;iHO`%K!kY`96(sHi z#7JGE25#~yIhZlc#~0z|6%_Q;Ien7M@*ky&P}J5gxc^{E$G56mnwKIzcsnolQMf;& z{EzaxgPtF(Dspg-Xr+i<-?24GOn&pZkteW@Q>zCcj*`vYti z(D>MdHR}b|>@K44Grj_%R^X#&V1WlXw?89UICS-9R=M-{z>7PYd3p2L6oZ>`KTL#P zO)`UjY3008LqLGbAyP0fW|y%V+#p;1_kuV~G>GFI1fKp1c5Dk{kd-LZ__8==Un^pU zy_IS#92NwwI4P1}WKJ|aO}}#?j%s-?Ffye*fgaT$OMHAG=SyTqX@T1GSI>h(=D67R z7T4Ekujru~@2cRrVelt}o3n<(`s>ACt?CPpX*Ot!?yRHd;NQS3hNLRO3cTU(yy`a_NA8%|Ju`1fqP<(~b^Sr7GuRh!TT&c#F zd1;;IPZwGQ&vk6b{7llgTR4{UArJfE#%1oe4|bdwxg!b4CGv^n9;fdT9=-GDU2%=t z9l*6QJn68&=)96p+}XfSy3O%Xty{#Ks*W?=91R5TdTH zTTffGBl^oU*NAYI{DO+NwUt+gvX(jS?rgV9Jnil(eliTpOid~EkBt8=(eTnL*gWi8 z+j%S7)YSauw(+@-Yn9KQx?ypExOi>jS=@QvzE!GP%30a5-=Cds*Vo9B%%R?^xBIm7 zhs1O8xGp7RcE9wQr<=ET4@@6^qi1bCqu?o*>lNOy$6_S4glM|DvF-V)v$R-dNABCJ zN9JstBes0a-PiyZ`|MY|r~|@s=i@}eRh%t@$7$e|F)NbtU4`^Tn3)$Y`}vQo`JOQ)W3&W>lhf16QvYFlJ!!iJ z_*N}W81r<4Pc$-JP4;KVga&p`kUf89P!T}}!bRr%iq8mPiH685L;_X-mZuO=kl=8t zbofJ_EI67~`3gNsopde^-Ouqe$cILIa3vCm7h`LWl(it$X2z4EXN z5sjY_IuLx7{!*z}>lD0?vo!46s-R(QX=%d<$ltw-(;ItKO~mjXlKy#8 z1vnF8`Y@9I3`u{Cq&Eo>E*icmQH(B`nt0({%_0^5o9VZw%)StuqDFmYS{Auurw5W= z{69bs{<`BpaM`XA?|yV0Z_Mri#^Or1>li(tQ^Qws+Ous%HwJdLE>N0$L4p995D$kj zk!Hw(cWB7(T3e-(HGHNbwo!M_;DtqZ@&*-D-wGvs!@CVTw2D4$eS7Topt#hid778d zc4g6)!zD3Vv1N|)=!N3?N{Y(i%XZ5o+L|T3eo^n^;HLi85HYgct8@OE9=4#{} zoKmyJkX&%fM)f0U6Hz;MJ=t8ZGt_->;S|j;OsnLGmIROVIfzSY?h{)~N2pSS-PF<~ zgYouddcq;Q9&BRVW)`u&vE3yrPrqE$z@$aEs+n9fX3w1I;+&(FE8OhR>(_H*xhqjp zXKtW^wXC>q?b8Qhsb^9ay^u6WJaqj{pCRKFVKymEW&jJyLTo zfNp(%eVr;-#= - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt b/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt deleted file mode 100644 index 15d6244..0000000 --- a/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt +++ /dev/null @@ -1,15 +0,0 @@ -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/Maui_ChartTooltip/Resources/Splash/splash.svg b/Maui_ChartTooltip/Resources/Splash/splash.svg deleted file mode 100644 index 21dfb25..0000000 --- a/Maui_ChartTooltip/Resources/Splash/splash.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/Styles/Colors.xaml b/Maui_ChartTooltip/Resources/Styles/Colors.xaml deleted file mode 100644 index 245758b..0000000 --- a/Maui_ChartTooltip/Resources/Styles/Colors.xaml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - #512BD4 - #DFD8F7 - #2B0B98 - White - Black - #E1E1E1 - #C8C8C8 - #ACACAC - #919191 - #6E6E6E - #404040 - #212121 - #141414 - - - - - - - - - - - - - - - #F7B548 - #FFD590 - #FFE5B9 - #28C2D1 - #7BDDEF - #C3F2F4 - #3E8EED - #72ACF1 - #A7CBF6 - - \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/Styles/Styles.xaml b/Maui_ChartTooltip/Resources/Styles/Styles.xaml deleted file mode 100644 index 1ec9d55..0000000 --- a/Maui_ChartTooltip/Resources/Styles/Styles.xaml +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Maui_ChartTooltip/ViewModel/ViewModel.cs b/Maui_ChartTooltip/ViewModel/ViewModel.cs deleted file mode 100644 index ade36fe..0000000 --- a/Maui_ChartTooltip/ViewModel/ViewModel.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.Collections.ObjectModel; - -namespace Maui_ChartTooltip -{ - public class ViewModel - { - public ObservableCollection Data { get; set; } - - public ViewModel() - { - Data = new ObservableCollection() - { - new Model(){ Country = "India", Population = 234 }, - new Model(){ Country = "United States", Population = 156 }, - new Model(){ Country = "China", Population = 280 }, - new Model(){ Country = "Australia", Population = 134 }, - new Model(){ Country = "Kuwait", Population = 80 } - }; - } - } -} From cc152b08de170a3805ca5f69980ea97ea148dd34 Mon Sep 17 00:00:00 2001 From: "tineshkumar.sf4652" Date: Fri, 25 Apr 2025 19:02:51 +0530 Subject: [PATCH 2/2] version 9 --- Maui_ChartTooltip/Maui_ChartTooltip/App.xaml | 14 + .../Maui_ChartTooltip/App.xaml.cs | 15 + .../Maui_ChartTooltip/AppShell.xaml | 15 + .../Maui_ChartTooltip/AppShell.xaml.cs | 10 + .../Maui_ChartTooltip/MainPage.xaml | 47 + .../Maui_ChartTooltip/MainPage.xaml.cs | 11 + .../Maui_ChartTooltip/MauiProgram.cs | 27 + .../Maui_ChartTooltip.csproj | 68 + .../Maui_ChartTooltip.csproj.user | 8 + .../Maui_ChartTooltip/Model/Model.cs | 10 + .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + .../Platforms/MacCatalyst/Info.plist | 38 + .../Platforms/MacCatalyst/Program.cs | 16 + .../Maui_ChartTooltip/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + .../Platforms/Windows/App.xaml | 8 + .../Platforms/Windows/App.xaml.cs | 25 + .../Platforms/Windows/Package.appxmanifest | 46 + .../Platforms/Windows/app.manifest | 15 + .../Platforms/iOS/AppDelegate.cs | 10 + .../Platforms/iOS/Info.plist | 32 + .../Platforms/iOS/Program.cs | 16 + .../iOS/Resources/PrivacyInfo.xcprivacy | 51 + .../Properties/launchSettings.json | 8 + .../Resources/AppIcon/appicon.svg | 4 + .../Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/FluentUI.cs | 7921 ++++ .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107280 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111164 bytes .../Resources/Images/dotnet_bot.png | Bin 0 -> 93437 bytes .../Resources/Raw/AboutAssets.txt | 15 + .../Resources/Splash/splash.svg | 8 + .../Resources/Styles/Colors.xaml | 45 + .../Resources/Styles/Styles.xaml | 451 + .../Maui_ChartTooltip/ViewModel/ViewModel.cs | 21 + ...CoreApp,Version=v9.0.AssemblyAttributes.cs | 4 + .../Maui_ChartTooltip.AssemblyInfo.cs | 25 + ...Maui_ChartTooltip.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 49 + .../Maui_ChartTooltip.GlobalUsings.g.cs | 26 + .../Maui_ChartTooltip.assets.cache | Bin 0 -> 111275 bytes ...hartTooltip.csproj.AssemblyReference.cache | Bin 0 -> 61271 bytes .../obj/Debug/net9.0-android/R.txt | 7226 ++++ .../_Microsoft.Android.Resource.Designer.dll | Bin 0 -> 701952 bytes .../__Microsoft.Android.Resource.Designer.cs | 18 + .../obj/Debug/net9.0-android/case_map.txt | 22 + .../net9.0-android/designtime/build.props | 31 + .../designtime/libraryimports.cache | 1 + .../designtime/libraryprojectimports.cache | 1 + .../stamp/_BuildLibraryImportsCache.stamp | 0 .../stamp/_ResolveLibraryProjectImports.stamp | 0 .../obj/Debug/net9.0-android/lp/103.stamp | 1 + .../lp/103/jl/AndroidManifest.xml | 25 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/103/jl/R.txt | 0 .../versionedparcelable/ParcelImpl.aidl | 19 + .../net9.0-android/lp/103/jl/classes.jar | Bin 0 -> 33348 bytes .../net9.0-android/lp/103/jl/proguard.txt | 4 + .../Debug/net9.0-android/lp/103/jl/public.txt | 0 .../Debug/net9.0-android/lp/103/jl/res.zip | Bin 0 -> 204 bytes .../lp/103/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/104.stamp | 1 + .../lp/104/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/104/jl/R.txt | 0 .../net9.0-android/lp/104/jl/classes.jar | Bin 0 -> 4175 bytes .../Debug/net9.0-android/lp/104/jl/public.txt | 0 .../Debug/net9.0-android/lp/104/jl/res.zip | Bin 0 -> 204 bytes .../lp/104/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/105.stamp | 1 + .../lp/105/jl/AndroidManifest.xml | 33 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/105/jl/R.txt | 1 + .../lp/105/jl/baseline-prof.txt | 4 + .../net9.0-android/lp/105/jl/classes.jar | Bin 0 -> 6788 bytes .../net9.0-android/lp/105/jl/proguard.txt | 12 + .../Debug/net9.0-android/lp/105/jl/public.txt | 0 .../Debug/net9.0-android/lp/105/jl/res.zip | Bin 0 -> 261 bytes .../lp/105/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/106.stamp | 1 + .../lp/106/jl/AndroidManifest.xml | 55 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/106/jl/R.txt | 0 .../net9.0-android/lp/106/jl/annotations.zip | Bin 0 -> 1300 bytes .../net9.0-android/lp/106/jl/classes.jar | Bin 0 -> 47517 bytes .../Debug/net9.0-android/lp/106/jl/public.txt | 0 .../Debug/net9.0-android/lp/106/jl/res.zip | Bin 0 -> 204 bytes .../lp/106/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/107.stamp | 1 + .../lp/107/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/107/jl/R.txt | 0 .../net9.0-android/lp/107/jl/classes.jar | Bin 0 -> 6270 bytes .../Debug/net9.0-android/lp/107/jl/public.txt | 0 .../Debug/net9.0-android/lp/107/jl/res.zip | Bin 0 -> 204 bytes .../lp/107/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/108.stamp | 1 + .../lp/108/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/108/jl/R.txt | 1 + .../lp/108/jl/baseline-prof.txt | 95 + .../net9.0-android/lp/108/jl/classes.jar | Bin 0 -> 53840 bytes .../net9.0-android/lp/108/jl/proguard.txt | 26 + .../Debug/net9.0-android/lp/108/jl/public.txt | 0 .../Debug/net9.0-android/lp/108/jl/res.zip | Bin 0 -> 240 bytes .../lp/108/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/109.stamp | 1 + .../lp/109/jl/AndroidManifest.xml | 5 + .../obj/Debug/net9.0-android/lp/110.stamp | 1 + .../lp/110/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/110/jl/R.txt | 0 .../net9.0-android/lp/110/jl/classes.jar | Bin 0 -> 7661 bytes .../obj/Debug/net9.0-android/lp/111.stamp | 1 + .../lp/111/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/111/jl/R.txt | 0 .../net9.0-android/lp/111/jl/classes.jar | Bin 0 -> 6304 bytes .../Debug/net9.0-android/lp/111/jl/public.txt | 0 .../Debug/net9.0-android/lp/111/jl/res.zip | Bin 0 -> 204 bytes .../lp/111/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/112.stamp | 1 + .../lp/112/jl/AndroidManifest.xml | 30 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/112/jl/R.txt | 207 + .../android/support/v4/os/ResultReceiver.aidl | 19 + .../net9.0-android/lp/112/jl/annotations.zip | Bin 0 -> 14126 bytes .../net9.0-android/lp/112/jl/classes.jar | Bin 0 -> 1261352 bytes .../net9.0-android/lp/112/jl/proguard.txt | 16 + .../Debug/net9.0-android/lp/112/jl/public.txt | 21 + .../Debug/net9.0-android/lp/112/jl/res.zip | Bin 0 -> 101585 bytes .../drawable-anydpi-v21/ic_call_answer.xml | 36 + .../ic_call_answer_low.xml | 33 + .../ic_call_answer_video.xml | 29 + .../ic_call_answer_video_low.xml | 26 + .../drawable-anydpi-v21/ic_call_decline.xml | 38 + .../ic_call_decline_low.xml | 35 + .../res/drawable-hdpi-v4/ic_call_answer.png | Bin 0 -> 583 bytes .../drawable-hdpi-v4/ic_call_answer_low.png | Bin 0 -> 583 bytes .../drawable-hdpi-v4/ic_call_answer_video.png | Bin 0 -> 279 bytes .../ic_call_answer_video_low.png | Bin 0 -> 279 bytes .../res/drawable-hdpi-v4/ic_call_decline.png | Bin 0 -> 421 bytes .../drawable-hdpi-v4/ic_call_decline_low.png | Bin 0 -> 421 bytes .../notification_bg_low_normal.9.png | Bin 0 -> 176 bytes .../notification_bg_low_pressed.9.png | Bin 0 -> 181 bytes .../notification_bg_normal.9.png | Bin 0 -> 176 bytes .../notification_bg_normal_pressed.9.png | Bin 0 -> 180 bytes .../notification_oversize_large_icon_bg.png | Bin 0 -> 1099 bytes .../notify_panel_notification_icon_bg.png | Bin 0 -> 107 bytes .../res/drawable-ldpi-v4/ic_call_answer.png | Bin 0 -> 313 bytes .../drawable-ldpi-v4/ic_call_answer_low.png | Bin 0 -> 313 bytes .../drawable-ldpi-v4/ic_call_answer_video.png | Bin 0 -> 205 bytes .../ic_call_answer_video_low.png | Bin 0 -> 205 bytes .../res/drawable-ldpi-v4/ic_call_decline.png | Bin 0 -> 238 bytes .../drawable-ldpi-v4/ic_call_decline_low.png | Bin 0 -> 238 bytes .../res/drawable-mdpi-v4/ic_call_answer.png | Bin 0 -> 389 bytes .../drawable-mdpi-v4/ic_call_answer_low.png | Bin 0 -> 389 bytes .../drawable-mdpi-v4/ic_call_answer_video.png | Bin 0 -> 206 bytes .../ic_call_answer_video_low.png | Bin 0 -> 206 bytes .../res/drawable-mdpi-v4/ic_call_decline.png | Bin 0 -> 303 bytes .../drawable-mdpi-v4/ic_call_decline_low.png | Bin 0 -> 303 bytes .../notification_bg_low_normal.9.png | Bin 0 -> 165 bytes .../notification_bg_low_pressed.9.png | Bin 0 -> 169 bytes .../notification_bg_normal.9.png | Bin 0 -> 165 bytes .../notification_bg_normal_pressed.9.png | Bin 0 -> 171 bytes .../notify_panel_notification_icon_bg.png | Bin 0 -> 98 bytes .../notification_action_background.xml | 36 + .../res/drawable-xhdpi-v4/ic_call_answer.png | Bin 0 -> 740 bytes .../drawable-xhdpi-v4/ic_call_answer_low.png | Bin 0 -> 740 bytes .../ic_call_answer_video.png | Bin 0 -> 329 bytes .../ic_call_answer_video_low.png | Bin 0 -> 329 bytes .../res/drawable-xhdpi-v4/ic_call_decline.png | Bin 0 -> 545 bytes .../drawable-xhdpi-v4/ic_call_decline_low.png | Bin 0 -> 545 bytes .../notification_bg_low_normal.9.png | Bin 0 -> 200 bytes .../notification_bg_low_pressed.9.png | Bin 0 -> 210 bytes .../notification_bg_normal.9.png | Bin 0 -> 200 bytes .../notification_bg_normal_pressed.9.png | Bin 0 -> 207 bytes .../notify_panel_notification_icon_bg.png | Bin 0 -> 138 bytes .../res/drawable-xxhdpi-v4/ic_call_answer.png | Bin 0 -> 1150 bytes .../drawable-xxhdpi-v4/ic_call_answer_low.png | Bin 0 -> 1150 bytes .../ic_call_answer_video.png | Bin 0 -> 447 bytes .../ic_call_answer_video_low.png | Bin 0 -> 447 bytes .../drawable-xxhdpi-v4/ic_call_decline.png | Bin 0 -> 793 bytes .../ic_call_decline_low.png | Bin 0 -> 793 bytes .../drawable-xxxhdpi-v4/ic_call_answer.png | Bin 0 -> 1529 bytes .../ic_call_answer_low.png | Bin 0 -> 1529 bytes .../ic_call_answer_video.png | Bin 0 -> 632 bytes .../ic_call_answer_video_low.png | Bin 0 -> 632 bytes .../drawable-xxxhdpi-v4/ic_call_decline.png | Bin 0 -> 1054 bytes .../ic_call_decline_low.png | Bin 0 -> 1054 bytes .../112/jl/res/drawable/notification_bg.xml | 24 + .../jl/res/drawable/notification_bg_low.xml | 23 + .../drawable/notification_icon_background.xml | 22 + .../jl/res/drawable/notification_tile_bg.xml | 22 + .../jl/res/layout-v21/notification_action.xml | 41 + .../notification_action_tombstone.xml | 48 + .../notification_template_custom_big.xml | 90 + .../notification_template_icon_group.xml | 42 + .../lp/112/jl/res/layout/custom_dialog.xml | 14 + .../layout/ime_base_split_test_activity.xml | 22 + .../ime_secondary_split_test_activity.xml | 38 + .../112/jl/res/layout/notification_action.xml | 44 + .../layout/notification_action_tombstone.xml | 51 + .../notification_template_custom_big.xml | 117 + .../notification_template_icon_group.xml | 24 + ...notification_template_part_chronometer.xml | 23 + .../notification_template_part_time.xml | 23 + .../lp/112/jl/res/values-af/values-af.xml | 11 + .../lp/112/jl/res/values-am/values-am.xml | 11 + .../lp/112/jl/res/values-ar/values-ar.xml | 11 + .../lp/112/jl/res/values-as/values-as.xml | 11 + .../lp/112/jl/res/values-az/values-az.xml | 11 + .../res/values-b+sr+Latn/values-b+sr+Latn.xml | 11 + .../lp/112/jl/res/values-be/values-be.xml | 11 + .../lp/112/jl/res/values-bg/values-bg.xml | 11 + .../lp/112/jl/res/values-bn/values-bn.xml | 11 + .../lp/112/jl/res/values-bs/values-bs.xml | 11 + .../lp/112/jl/res/values-ca/values-ca.xml | 11 + .../lp/112/jl/res/values-cs/values-cs.xml | 11 + .../lp/112/jl/res/values-da/values-da.xml | 11 + .../lp/112/jl/res/values-de/values-de.xml | 11 + .../lp/112/jl/res/values-el/values-el.xml | 11 + .../jl/res/values-en-rAU/values-en-rAU.xml | 11 + .../jl/res/values-en-rCA/values-en-rCA.xml | 11 + .../jl/res/values-en-rGB/values-en-rGB.xml | 11 + .../jl/res/values-en-rIN/values-en-rIN.xml | 11 + .../jl/res/values-en-rXC/values-en-rXC.xml | 11 + .../jl/res/values-es-rUS/values-es-rUS.xml | 11 + .../lp/112/jl/res/values-es/values-es.xml | 11 + .../lp/112/jl/res/values-et/values-et.xml | 11 + .../lp/112/jl/res/values-eu/values-eu.xml | 11 + .../lp/112/jl/res/values-fa/values-fa.xml | 11 + .../lp/112/jl/res/values-fi/values-fi.xml | 11 + .../jl/res/values-fr-rCA/values-fr-rCA.xml | 11 + .../lp/112/jl/res/values-fr/values-fr.xml | 11 + .../lp/112/jl/res/values-gl/values-gl.xml | 11 + .../lp/112/jl/res/values-gu/values-gu.xml | 11 + .../lp/112/jl/res/values-hi/values-hi.xml | 11 + .../lp/112/jl/res/values-hr/values-hr.xml | 11 + .../lp/112/jl/res/values-hu/values-hu.xml | 11 + .../lp/112/jl/res/values-hy/values-hy.xml | 11 + .../lp/112/jl/res/values-in/values-in.xml | 11 + .../lp/112/jl/res/values-is/values-is.xml | 11 + .../lp/112/jl/res/values-it/values-it.xml | 11 + .../lp/112/jl/res/values-iw/values-iw.xml | 11 + .../lp/112/jl/res/values-ja/values-ja.xml | 11 + .../lp/112/jl/res/values-ka/values-ka.xml | 11 + .../lp/112/jl/res/values-kk/values-kk.xml | 11 + .../lp/112/jl/res/values-km/values-km.xml | 11 + .../lp/112/jl/res/values-kn/values-kn.xml | 11 + .../lp/112/jl/res/values-ko/values-ko.xml | 11 + .../lp/112/jl/res/values-ky/values-ky.xml | 11 + .../lp/112/jl/res/values-lo/values-lo.xml | 11 + .../lp/112/jl/res/values-lt/values-lt.xml | 11 + .../lp/112/jl/res/values-lv/values-lv.xml | 11 + .../lp/112/jl/res/values-mk/values-mk.xml | 11 + .../lp/112/jl/res/values-ml/values-ml.xml | 11 + .../lp/112/jl/res/values-mn/values-mn.xml | 11 + .../lp/112/jl/res/values-mr/values-mr.xml | 11 + .../lp/112/jl/res/values-ms/values-ms.xml | 11 + .../lp/112/jl/res/values-my/values-my.xml | 11 + .../lp/112/jl/res/values-nb/values-nb.xml | 11 + .../lp/112/jl/res/values-ne/values-ne.xml | 11 + .../lp/112/jl/res/values-nl/values-nl.xml | 11 + .../lp/112/jl/res/values-or/values-or.xml | 11 + .../lp/112/jl/res/values-pa/values-pa.xml | 11 + .../lp/112/jl/res/values-pl/values-pl.xml | 11 + .../jl/res/values-pt-rBR/values-pt-rBR.xml | 11 + .../jl/res/values-pt-rPT/values-pt-rPT.xml | 11 + .../lp/112/jl/res/values-pt/values-pt.xml | 11 + .../lp/112/jl/res/values-ro/values-ro.xml | 11 + .../lp/112/jl/res/values-ru/values-ru.xml | 11 + .../lp/112/jl/res/values-si/values-si.xml | 11 + .../lp/112/jl/res/values-sk/values-sk.xml | 11 + .../lp/112/jl/res/values-sl/values-sl.xml | 11 + .../lp/112/jl/res/values-sq/values-sq.xml | 11 + .../lp/112/jl/res/values-sr/values-sr.xml | 11 + .../lp/112/jl/res/values-sv/values-sv.xml | 11 + .../lp/112/jl/res/values-sw/values-sw.xml | 11 + .../lp/112/jl/res/values-ta/values-ta.xml | 11 + .../lp/112/jl/res/values-te/values-te.xml | 11 + .../lp/112/jl/res/values-th/values-th.xml | 11 + .../lp/112/jl/res/values-tl/values-tl.xml | 11 + .../lp/112/jl/res/values-tr/values-tr.xml | 11 + .../lp/112/jl/res/values-uk/values-uk.xml | 11 + .../lp/112/jl/res/values-ur/values-ur.xml | 11 + .../lp/112/jl/res/values-uz/values-uz.xml | 11 + .../lp/112/jl/res/values-v21/values-v21.xml | 19 + .../lp/112/jl/res/values-vi/values-vi.xml | 11 + .../jl/res/values-zh-rCN/values-zh-rCN.xml | 11 + .../jl/res/values-zh-rHK/values-zh-rHK.xml | 11 + .../jl/res/values-zh-rTW/values-zh-rTW.xml | 11 + .../lp/112/jl/res/values-zu/values-zu.xml | 11 + .../lp/112/jl/res/values/values.xml | 216 + .../obj/Debug/net9.0-android/lp/113.stamp | 1 + .../lp/113/jl/AndroidManifest.xml | 24 + .../obj/Debug/net9.0-android/lp/113/jl/R.txt | 171 + .../net9.0-android/lp/113/jl/classes.jar | Bin 0 -> 33345 bytes .../obj/Debug/net9.0-android/lp/114.stamp | 1 + .../lp/114/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/114/jl/R.txt | 131 + .../net9.0-android/lp/114/jl/classes.jar | Bin 0 -> 55298 bytes .../obj/Debug/net9.0-android/lp/115.stamp | 1 + .../lp/115/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/115/jl/R.txt | 1 + .../net9.0-android/lp/115/jl/classes.jar | Bin 0 -> 19555 bytes .../net9.0-android/lp/115/jl/proguard.txt | 17 + .../Debug/net9.0-android/lp/115/jl/public.txt | 0 .../Debug/net9.0-android/lp/115/jl/res.zip | Bin 0 -> 249 bytes .../lp/115/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/116.stamp | 1 + .../lp/116/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/116/jl/R.txt | 0 .../net9.0-android/lp/116/jl/classes.jar | Bin 0 -> 188652 bytes .../Debug/net9.0-android/lp/116/jl/public.txt | 0 .../Debug/net9.0-android/lp/116/jl/res.zip | Bin 0 -> 204 bytes .../lp/116/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/117.stamp | 1 + .../lp/117/jl/AndroidManifest.xml | 23 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/117/jl/R.txt | 2 + .../net9.0-android/lp/117/jl/classes.jar | Bin 0 -> 5171 bytes .../Debug/net9.0-android/lp/117/jl/public.txt | 0 .../Debug/net9.0-android/lp/117/jl/res.zip | Bin 0 -> 266 bytes .../lp/117/jl/res/values/values.xml | 5 + .../obj/Debug/net9.0-android/lp/118.stamp | 1 + .../lp/118/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/118/jl/R.txt | 30 + .../net9.0-android/lp/118/jl/annotations.zip | Bin 0 -> 1216 bytes .../lp/118/jl/baseline-prof.txt | 548 + .../net9.0-android/lp/118/jl/classes.jar | Bin 0 -> 419008 bytes .../net9.0-android/lp/118/jl/proguard.txt | 25 + .../Debug/net9.0-android/lp/118/jl/public.txt | 9 + .../Debug/net9.0-android/lp/118/jl/res.zip | Bin 0 -> 602 bytes .../lp/118/jl/res/values/values.xml | 32 + .../obj/Debug/net9.0-android/lp/119.stamp | 1 + .../lp/119/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/119/jl/R.txt | 1 + .../lp/119/jl/baseline-prof.txt | 15 + .../net9.0-android/lp/119/jl/classes.jar | Bin 0 -> 62097 bytes .../net9.0-android/lp/119/jl/proguard.txt | 7 + .../Debug/net9.0-android/lp/119/jl/public.txt | 0 .../Debug/net9.0-android/lp/119/jl/res.zip | Bin 0 -> 244 bytes .../lp/119/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/120.stamp | 1 + .../lp/120/jl/AndroidManifest.xml | 5 + .../obj/Debug/net9.0-android/lp/121.stamp | 1 + .../lp/121/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/121/jl/R.txt | 0 .../lp/121/jl/baseline-prof.txt | 40 + .../net9.0-android/lp/121/jl/classes.jar | Bin 0 -> 11849 bytes .../Debug/net9.0-android/lp/121/jl/public.txt | 0 .../Debug/net9.0-android/lp/121/jl/res.zip | Bin 0 -> 204 bytes .../lp/121/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/122.stamp | 1 + .../lp/122/jl/AndroidManifest.xml | 24 + .../obj/Debug/net9.0-android/lp/122/jl/R.txt | 131 + .../net9.0-android/lp/122/jl/classes.jar | Bin 0 -> 31439 bytes .../obj/Debug/net9.0-android/lp/123.stamp | 1 + .../lp/123/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/123/jl/R.txt | 0 .../net9.0-android/lp/123/jl/classes.jar | Bin 0 -> 39025 bytes .../net9.0-android/lp/123/jl/proguard.txt | 7 + .../Debug/net9.0-android/lp/123/jl/public.txt | 0 .../Debug/net9.0-android/lp/123/jl/res.zip | Bin 0 -> 204 bytes .../lp/123/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/124.stamp | 1 + .../lp/124/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/124/jl/R.txt | 2 + .../lp/124/jl/baseline-prof.txt | 230 + .../net9.0-android/lp/124/jl/classes.jar | Bin 0 -> 218779 bytes .../Debug/net9.0-android/lp/124/jl/public.txt | 0 .../Debug/net9.0-android/lp/124/jl/res.zip | Bin 0 -> 276 bytes .../lp/124/jl/res/values/values.xml | 5 + .../obj/Debug/net9.0-android/lp/125.stamp | 1 + .../lp/125/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/125/jl/R.txt | 17 + .../net9.0-android/lp/125/jl/annotations.zip | Bin 0 -> 610 bytes .../lp/125/jl/baseline-prof.txt | 477 + .../net9.0-android/lp/125/jl/classes.jar | Bin 0 -> 331948 bytes .../net9.0-android/lp/125/jl/proguard.txt | 29 + .../Debug/net9.0-android/lp/125/jl/public.txt | 0 .../Debug/net9.0-android/lp/125/jl/res.zip | Bin 0 -> 5667 bytes .../fragment_fast_out_extra_slow_in.xml | 19 + .../jl/res/animator/fragment_close_enter.xml | 43 + .../jl/res/animator/fragment_close_exit.xml | 43 + .../jl/res/animator/fragment_fade_enter.xml | 21 + .../jl/res/animator/fragment_fade_exit.xml | 21 + .../jl/res/animator/fragment_open_enter.xml | 44 + .../jl/res/animator/fragment_open_exit.xml | 43 + .../lp/125/jl/res/values/values.xml | 15 + .../obj/Debug/net9.0-android/lp/126.stamp | 1 + .../lp/126/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/126/jl/R.txt | 2 + .../net9.0-android/lp/126/jl/annotations.zip | Bin 0 -> 740 bytes .../net9.0-android/lp/126/jl/classes.jar | Bin 0 -> 72357 bytes .../Debug/net9.0-android/lp/126/jl/public.txt | 0 .../Debug/net9.0-android/lp/126/jl/res.zip | Bin 0 -> 272 bytes .../lp/126/jl/res/values/values.xml | 6 + .../obj/Debug/net9.0-android/lp/127.stamp | 1 + .../lp/127/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/127/jl/R.txt | 0 .../net9.0-android/lp/127/jl/classes.jar | Bin 0 -> 33971 bytes .../Debug/net9.0-android/lp/127/jl/public.txt | 0 .../Debug/net9.0-android/lp/127/jl/res.zip | Bin 0 -> 204 bytes .../lp/127/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/128.stamp | 1 + .../lp/128/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/128/jl/R.txt | 0 .../net9.0-android/lp/128/jl/classes.jar | Bin 0 -> 35516 bytes .../net9.0-android/lp/128/jl/proguard.txt | 19 + .../Debug/net9.0-android/lp/128/jl/public.txt | 0 .../Debug/net9.0-android/lp/128/jl/res.zip | Bin 0 -> 204 bytes .../lp/128/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/129.stamp | 1 + .../lp/129/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/129/jl/R.txt | 0 .../net9.0-android/lp/129/jl/annotations.zip | Bin 0 -> 550 bytes .../net9.0-android/lp/129/jl/classes.jar | Bin 0 -> 15476 bytes .../obj/Debug/net9.0-android/lp/130.stamp | 1 + .../lp/130/jl/AndroidManifest.xml | 24 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/130/jl/R.txt | 0 .../net9.0-android/lp/130/jl/classes.jar | Bin 0 -> 6706 bytes .../Debug/net9.0-android/lp/130/jl/public.txt | 0 .../Debug/net9.0-android/lp/130/jl/res.zip | Bin 0 -> 204 bytes .../lp/130/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/131.stamp | 1 + .../lp/131/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/131/jl/R.txt | 0 .../net9.0-android/lp/131/jl/classes.jar | Bin 0 -> 11334 bytes .../obj/Debug/net9.0-android/lp/132.stamp | 1 + .../lp/132/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/132/jl/R.txt | 131 + .../net9.0-android/lp/132/jl/classes.jar | Bin 0 -> 2042 bytes .../obj/Debug/net9.0-android/lp/133.stamp | 1 + .../lp/133/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/133/jl/R.txt | 131 + .../net9.0-android/lp/133/jl/classes.jar | Bin 0 -> 38168 bytes .../obj/Debug/net9.0-android/lp/134.stamp | 1 + .../lp/134/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/134/jl/R.txt | 13 + .../net9.0-android/lp/134/jl/annotations.zip | Bin 0 -> 657 bytes .../net9.0-android/lp/134/jl/classes.jar | Bin 0 -> 194092 bytes .../net9.0-android/lp/134/jl/proguard.txt | 18 + .../Debug/net9.0-android/lp/134/jl/public.txt | 0 .../Debug/net9.0-android/lp/134/jl/res.zip | Bin 0 -> 349 bytes .../lp/134/jl/res/values/values.xml | 16 + .../obj/Debug/net9.0-android/lp/135.stamp | 1 + .../lp/135/jl/AndroidManifest.xml | 35 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/135/jl/R.txt | 0 .../lp/135/jl/baseline-prof.txt | 41 + .../net9.0-android/lp/135/jl/classes.jar | Bin 0 -> 14538 bytes .../net9.0-android/lp/135/jl/proguard.txt | 2 + .../Debug/net9.0-android/lp/135/jl/public.txt | 0 .../Debug/net9.0-android/lp/135/jl/res.zip | Bin 0 -> 204 bytes .../lp/135/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/136.stamp | 1 + .../lp/136/jl/AndroidManifest.xml | 35 + .../androidx/emoji2/emoji2/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/136/jl/R.txt | 0 .../net9.0-android/lp/136/jl/annotations.zip | Bin 0 -> 800 bytes .../net9.0-android/lp/136/jl/classes.jar | Bin 0 -> 89035 bytes .../lp/136/jl/libs/repackaged.jar | Bin 0 -> 68235 bytes .../Debug/net9.0-android/lp/136/jl/public.txt | 0 .../Debug/net9.0-android/lp/136/jl/res.zip | Bin 0 -> 204 bytes .../lp/136/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/137.stamp | 1 + .../lp/137/jl/AndroidManifest.xml | 7 + .../emoji2/emoji2-views-helper/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/137/jl/R.txt | 0 .../net9.0-android/lp/137/jl/classes.jar | Bin 0 -> 21176 bytes .../Debug/net9.0-android/lp/137/jl/public.txt | 0 .../Debug/net9.0-android/lp/137/jl/res.zip | Bin 0 -> 204 bytes .../lp/137/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/138.stamp | 1 + .../lp/138/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/138/jl/R.txt | 5 + .../net9.0-android/lp/138/jl/annotations.zip | Bin 0 -> 885 bytes .../net9.0-android/lp/138/jl/classes.jar | Bin 0 -> 33156 bytes .../Debug/net9.0-android/lp/138/jl/public.txt | 2 + .../Debug/net9.0-android/lp/138/jl/res.zip | Bin 0 -> 322 bytes .../lp/138/jl/res/values/values.xml | 10 + .../obj/Debug/net9.0-android/lp/139.stamp | 1 + .../lp/139/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/139/jl/R.txt | 0 .../net9.0-android/lp/139/jl/classes.jar | Bin 0 -> 11504 bytes .../obj/Debug/net9.0-android/lp/140.stamp | 1 + .../lp/140/jl/AndroidManifest.xml | 24 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/140/jl/R.txt | 28 + .../net9.0-android/lp/140/jl/annotations.zip | Bin 0 -> 493 bytes .../net9.0-android/lp/140/jl/classes.jar | Bin 0 -> 41621 bytes .../net9.0-android/lp/140/jl/proguard.txt | 25 + .../Debug/net9.0-android/lp/140/jl/public.txt | 9 + .../Debug/net9.0-android/lp/140/jl/res.zip | Bin 0 -> 1492 bytes .../lp/140/jl/res/values/values.xml | 106 + .../obj/Debug/net9.0-android/lp/141.stamp | 1 + .../lp/141/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/141/jl/R.txt | 25 + .../net9.0-android/lp/141/jl/classes.jar | Bin 0 -> 67902 bytes .../Debug/net9.0-android/lp/141/jl/public.txt | 0 .../Debug/net9.0-android/lp/141/jl/res.zip | Bin 0 -> 1134 bytes .../141/jl/res/drawable/abc_vector_test.xml | 25 + .../lp/141/jl/res/values/values.xml | 55 + .../obj/Debug/net9.0-android/lp/142.stamp | 1 + .../lp/142/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/142/jl/R.txt | 1475 + .../net9.0-android/lp/142/jl/annotations.zip | Bin 0 -> 2394 bytes .../lp/142/jl/baseline-prof.txt | 596 + .../net9.0-android/lp/142/jl/classes.jar | Bin 0 -> 791932 bytes .../net9.0-android/lp/142/jl/proguard.txt | 18 + .../Debug/net9.0-android/lp/142/jl/public.txt | 369 + .../Debug/net9.0-android/lp/142/jl/res.zip | Bin 0 -> 341528 bytes .../lp/142/jl/res/anim/abc_fade_in.xml | 20 + .../lp/142/jl/res/anim/abc_fade_out.xml | 20 + .../res/anim/abc_grow_fade_in_from_bottom.xml | 30 + .../lp/142/jl/res/anim/abc_popup_enter.xml | 21 + .../lp/142/jl/res/anim/abc_popup_exit.xml | 21 + .../anim/abc_shrink_fade_out_from_bottom.xml | 27 + .../142/jl/res/anim/abc_slide_in_bottom.xml | 19 + .../lp/142/jl/res/anim/abc_slide_in_top.xml | 19 + .../142/jl/res/anim/abc_slide_out_bottom.xml | 19 + .../lp/142/jl/res/anim/abc_slide_out_top.xml | 19 + .../lp/142/jl/res/anim/abc_tooltip_enter.xml | 21 + .../lp/142/jl/res/anim/abc_tooltip_exit.xml | 21 + ..._to_checked_box_inner_merged_animation.xml | 40 + ..._to_checked_box_outer_merged_animation.xml | 49 + ...heckbox_to_checked_icon_null_animation.xml | 47 + ...o_unchecked_box_inner_merged_animation.xml | 49 + ..._unchecked_check_path_merged_animation.xml | 40 + ...ckbox_to_unchecked_icon_null_animation.xml | 47 + ..._radio_to_off_mtrl_dot_group_animation.xml | 65 + ...radio_to_off_mtrl_ring_outer_animation.xml | 66 + ..._to_off_mtrl_ring_outer_path_animation.xml | 42 + ...n_radio_to_on_mtrl_dot_group_animation.xml | 65 + ..._radio_to_on_mtrl_ring_outer_animation.xml | 65 + ...o_to_on_mtrl_ring_outer_path_animation.xml | 42 + ...c_btn_colored_borderless_text_material.xml | 23 + ...c_btn_colored_borderless_text_material.xml | 21 + .../abc_btn_colored_text_material.xml | 23 + .../abc_color_highlight_material.xml | 23 + .../res/color-v23/abc_tint_btn_checkable.xml | 21 + .../142/jl/res/color-v23/abc_tint_default.xml | 25 + .../jl/res/color-v23/abc_tint_edittext.xml | 21 + .../jl/res/color-v23/abc_tint_seek_thumb.xml | 20 + .../142/jl/res/color-v23/abc_tint_spinner.xml | 21 + .../res/color-v23/abc_tint_switch_track.xml | 21 + ...ound_cache_hint_selector_material_dark.xml | 20 + ...und_cache_hint_selector_material_light.xml | 20 + .../color/abc_btn_colored_text_material.xml | 24 + .../abc_hint_foreground_material_dark.xml | 24 + .../abc_hint_foreground_material_light.xml | 24 + ...rimary_text_disable_only_material_dark.xml | 20 + ...imary_text_disable_only_material_light.xml | 20 + .../color/abc_primary_text_material_dark.xml | 20 + .../color/abc_primary_text_material_light.xml | 20 + .../142/jl/res/color/abc_search_url_text.xml | 21 + .../abc_secondary_text_material_dark.xml | 20 + .../abc_secondary_text_material_light.xml | 20 + .../jl/res/color/abc_tint_btn_checkable.xml | 22 + .../lp/142/jl/res/color/abc_tint_default.xml | 26 + .../lp/142/jl/res/color/abc_tint_edittext.xml | 24 + .../142/jl/res/color/abc_tint_seek_thumb.xml | 21 + .../lp/142/jl/res/color/abc_tint_spinner.xml | 22 + .../jl/res/color/abc_tint_switch_track.xml | 22 + .../res/color/switch_thumb_material_dark.xml | 20 + .../res/color/switch_thumb_material_light.xml | 20 + .../abc_ab_share_pack_mtrl_alpha.9.png | Bin 0 -> 112 bytes .../abc_btn_check_to_on_mtrl_000.png | Bin 0 -> 227 bytes .../abc_btn_check_to_on_mtrl_015.png | Bin 0 -> 404 bytes .../abc_btn_radio_to_on_mtrl_000.png | Bin 0 -> 464 bytes .../abc_btn_radio_to_on_mtrl_015.png | Bin 0 -> 563 bytes .../abc_btn_switch_to_on_mtrl_00001.9.png | Bin 0 -> 1062 bytes .../abc_btn_switch_to_on_mtrl_00012.9.png | Bin 0 -> 1249 bytes .../abc_cab_background_top_mtrl_alpha.9.png | Bin 0 -> 107 bytes .../abc_ic_commit_search_api_mtrl_alpha.png | Bin 0 -> 171 bytes .../abc_list_divider_mtrl_alpha.9.png | Bin 0 -> 76 bytes .../abc_list_focused_holo.9.png | Bin 0 -> 106 bytes .../abc_list_longpressed_holo.9.png | Bin 0 -> 93 bytes .../abc_list_pressed_holo_dark.9.png | Bin 0 -> 90 bytes .../abc_list_pressed_holo_light.9.png | Bin 0 -> 90 bytes ...abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 108 bytes ...bc_list_selector_disabled_holo_light.9.png | Bin 0 -> 108 bytes .../abc_menu_hardkey_panel_mtrl_mult.9.png | Bin 0 -> 615 bytes .../abc_popup_background_mtrl_mult.9.png | Bin 0 -> 1026 bytes .../abc_scrubber_control_off_mtrl_alpha.png | Bin 0 -> 201 bytes ...c_scrubber_control_to_pressed_mtrl_000.png | Bin 0 -> 196 bytes ...c_scrubber_control_to_pressed_mtrl_005.png | Bin 0 -> 272 bytes .../abc_scrubber_primary_mtrl_alpha.9.png | Bin 0 -> 102 bytes .../abc_scrubber_track_mtrl_alpha.9.png | Bin 0 -> 96 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 232 bytes .../abc_switch_track_mtrl_alpha.9.png | Bin 0 -> 318 bytes .../abc_tab_indicator_mtrl_alpha.9.png | Bin 0 -> 93 bytes .../abc_text_select_handle_left_mtrl.png | Bin 0 -> 278 bytes .../abc_text_select_handle_middle_mtrl.png | Bin 0 -> 396 bytes .../abc_text_select_handle_right_mtrl.png | Bin 0 -> 262 bytes .../abc_textfield_activated_mtrl_alpha.9.png | Bin 0 -> 88 bytes .../abc_textfield_default_mtrl_alpha.9.png | Bin 0 -> 91 bytes ...extfield_search_activated_mtrl_alpha.9.png | Bin 0 -> 86 bytes ..._textfield_search_default_mtrl_alpha.9.png | Bin 0 -> 87 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 230 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 200 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 300 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 419 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 354 bytes .../abc_ab_share_pack_mtrl_alpha.9.png | Bin 0 -> 108 bytes .../abc_btn_check_to_on_mtrl_000.png | Bin 0 -> 214 bytes .../abc_btn_check_to_on_mtrl_015.png | Bin 0 -> 321 bytes .../abc_btn_radio_to_on_mtrl_000.png | Bin 0 -> 324 bytes .../abc_btn_radio_to_on_mtrl_015.png | Bin 0 -> 356 bytes .../abc_btn_switch_to_on_mtrl_00001.9.png | Bin 0 -> 671 bytes .../abc_btn_switch_to_on_mtrl_00012.9.png | Bin 0 -> 762 bytes .../abc_cab_background_top_mtrl_alpha.9.png | Bin 0 -> 95 bytes .../abc_ic_commit_search_api_mtrl_alpha.png | Bin 0 -> 173 bytes .../abc_list_divider_mtrl_alpha.9.png | Bin 0 -> 76 bytes .../abc_list_focused_holo.9.png | Bin 0 -> 97 bytes .../abc_list_longpressed_holo.9.png | Bin 0 -> 92 bytes .../abc_list_pressed_holo_dark.9.png | Bin 0 -> 89 bytes .../abc_list_pressed_holo_light.9.png | Bin 0 -> 89 bytes ...abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 94 bytes ...bc_list_selector_disabled_holo_light.9.png | Bin 0 -> 94 bytes .../abc_menu_hardkey_panel_mtrl_mult.9.png | Bin 0 -> 421 bytes .../abc_popup_background_mtrl_mult.9.png | Bin 0 -> 680 bytes .../abc_scrubber_control_off_mtrl_alpha.png | Bin 0 -> 159 bytes ...c_scrubber_control_to_pressed_mtrl_000.png | Bin 0 -> 145 bytes ...c_scrubber_control_to_pressed_mtrl_005.png | Bin 0 -> 197 bytes .../abc_scrubber_primary_mtrl_alpha.9.png | Bin 0 -> 99 bytes .../abc_scrubber_track_mtrl_alpha.9.png | Bin 0 -> 94 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 203 bytes .../abc_switch_track_mtrl_alpha.9.png | Bin 0 -> 240 bytes .../abc_tab_indicator_mtrl_alpha.9.png | Bin 0 -> 89 bytes .../abc_text_select_handle_left_mtrl.png | Bin 0 -> 203 bytes .../abc_text_select_handle_middle_mtrl.png | Bin 0 -> 310 bytes .../abc_text_select_handle_right_mtrl.png | Bin 0 -> 186 bytes .../abc_textfield_activated_mtrl_alpha.9.png | Bin 0 -> 84 bytes .../abc_textfield_default_mtrl_alpha.9.png | Bin 0 -> 87 bytes ...extfield_search_activated_mtrl_alpha.9.png | Bin 0 -> 84 bytes ..._textfield_search_default_mtrl_alpha.9.png | Bin 0 -> 85 bytes ...bc_action_bar_item_background_material.xml | 18 + .../drawable-v21/abc_btn_colored_material.xml | 50 + .../abc_dialog_material_background.xml | 26 + .../drawable-v21/abc_edit_text_material.xml | 37 + .../abc_list_divider_material.xml | 24 + .../abc_control_background_material.xml | 19 + .../abc_dialog_material_background.xml | 19 + .../abc_ab_share_pack_mtrl_alpha.9.png | Bin 0 -> 117 bytes .../abc_btn_check_to_on_mtrl_000.png | Bin 0 -> 281 bytes .../abc_btn_check_to_on_mtrl_015.png | Bin 0 -> 432 bytes .../abc_btn_radio_to_on_mtrl_000.png | Bin 0 -> 651 bytes .../abc_btn_radio_to_on_mtrl_015.png | Bin 0 -> 785 bytes .../abc_btn_switch_to_on_mtrl_00001.9.png | Bin 0 -> 1536 bytes .../abc_btn_switch_to_on_mtrl_00012.9.png | Bin 0 -> 1832 bytes .../abc_cab_background_top_mtrl_alpha.9.png | Bin 0 -> 114 bytes .../abc_ic_commit_search_api_mtrl_alpha.png | Bin 0 -> 228 bytes .../abc_list_divider_mtrl_alpha.9.png | Bin 0 -> 76 bytes .../abc_list_focused_holo.9.png | Bin 0 -> 111 bytes .../abc_list_longpressed_holo.9.png | Bin 0 -> 94 bytes .../abc_list_pressed_holo_dark.9.png | Bin 0 -> 91 bytes .../abc_list_pressed_holo_light.9.png | Bin 0 -> 91 bytes ...abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 115 bytes ...bc_list_selector_disabled_holo_light.9.png | Bin 0 -> 113 bytes .../abc_menu_hardkey_panel_mtrl_mult.9.png | Bin 0 -> 876 bytes .../abc_popup_background_mtrl_mult.9.png | Bin 0 -> 1469 bytes .../abc_scrubber_control_off_mtrl_alpha.png | Bin 0 -> 267 bytes ...c_scrubber_control_to_pressed_mtrl_000.png | Bin 0 -> 267 bytes ...c_scrubber_control_to_pressed_mtrl_005.png | Bin 0 -> 391 bytes .../abc_scrubber_primary_mtrl_alpha.9.png | Bin 0 -> 105 bytes .../abc_scrubber_track_mtrl_alpha.9.png | Bin 0 -> 101 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 303 bytes .../abc_switch_track_mtrl_alpha.9.png | Bin 0 -> 418 bytes .../abc_tab_indicator_mtrl_alpha.9.png | Bin 0 -> 97 bytes .../abc_text_select_handle_left_mtrl.png | Bin 0 -> 335 bytes .../abc_text_select_handle_middle_mtrl.png | Bin 0 -> 585 bytes .../abc_text_select_handle_right_mtrl.png | Bin 0 -> 318 bytes .../abc_textfield_activated_mtrl_alpha.9.png | Bin 0 -> 90 bytes .../abc_textfield_default_mtrl_alpha.9.png | Bin 0 -> 93 bytes ...extfield_search_activated_mtrl_alpha.9.png | Bin 0 -> 91 bytes ..._textfield_search_default_mtrl_alpha.9.png | Bin 0 -> 92 bytes .../abc_ab_share_pack_mtrl_alpha.9.png | Bin 0 -> 129 bytes .../abc_btn_check_to_on_mtrl_000.png | Bin 0 -> 307 bytes .../abc_btn_check_to_on_mtrl_015.png | Bin 0 -> 593 bytes .../abc_btn_radio_to_on_mtrl_000.png | Bin 0 -> 984 bytes .../abc_btn_radio_to_on_mtrl_015.png | Bin 0 -> 1208 bytes .../abc_btn_switch_to_on_mtrl_00001.9.png | Bin 0 -> 2537 bytes .../abc_btn_switch_to_on_mtrl_00012.9.png | Bin 0 -> 3160 bytes .../abc_cab_background_top_mtrl_alpha.9.png | Bin 0 -> 123 bytes .../abc_ic_commit_search_api_mtrl_alpha.png | Bin 0 -> 224 bytes .../abc_list_divider_mtrl_alpha.9.png | Bin 0 -> 78 bytes .../abc_list_focused_holo.9.png | Bin 0 -> 112 bytes .../abc_list_longpressed_holo.9.png | Bin 0 -> 101 bytes .../abc_list_pressed_holo_dark.9.png | Bin 0 -> 92 bytes .../abc_list_pressed_holo_light.9.png | Bin 0 -> 92 bytes ...abc_list_selector_disabled_holo_dark.9.png | Bin 0 -> 138 bytes ...bc_list_selector_disabled_holo_light.9.png | Bin 0 -> 134 bytes .../abc_menu_hardkey_panel_mtrl_mult.9.png | Bin 0 -> 1460 bytes .../abc_popup_background_mtrl_mult.9.png | Bin 0 -> 2242 bytes .../abc_scrubber_control_off_mtrl_alpha.png | Bin 0 -> 322 bytes ...c_scrubber_control_to_pressed_mtrl_000.png | Bin 0 -> 403 bytes ...c_scrubber_control_to_pressed_mtrl_005.png | Bin 0 -> 595 bytes .../abc_scrubber_primary_mtrl_alpha.9.png | Bin 0 -> 110 bytes .../abc_scrubber_track_mtrl_alpha.9.png | Bin 0 -> 110 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 419 bytes .../abc_switch_track_mtrl_alpha.9.png | Bin 0 -> 607 bytes .../abc_tab_indicator_mtrl_alpha.9.png | Bin 0 -> 106 bytes .../abc_text_select_handle_left_mtrl.png | Bin 0 -> 420 bytes .../abc_text_select_handle_middle_mtrl.png | Bin 0 -> 753 bytes .../abc_text_select_handle_right_mtrl.png | Bin 0 -> 422 bytes .../abc_textfield_activated_mtrl_alpha.9.png | Bin 0 -> 101 bytes .../abc_textfield_default_mtrl_alpha.9.png | Bin 0 -> 105 bytes ...extfield_search_activated_mtrl_alpha.9.png | Bin 0 -> 92 bytes ..._textfield_search_default_mtrl_alpha.9.png | Bin 0 -> 95 bytes .../abc_btn_check_to_on_mtrl_000.png | Bin 0 -> 275 bytes .../abc_btn_check_to_on_mtrl_015.png | Bin 0 -> 476 bytes .../abc_btn_radio_to_on_mtrl_000.png | Bin 0 -> 785 bytes .../abc_btn_radio_to_on_mtrl_015.png | Bin 0 -> 946 bytes .../abc_btn_switch_to_on_mtrl_00001.9.png | Bin 0 -> 2491 bytes .../abc_btn_switch_to_on_mtrl_00012.9.png | Bin 0 -> 2799 bytes ...c_scrubber_control_to_pressed_mtrl_000.png | Bin 0 -> 415 bytes ...c_scrubber_control_to_pressed_mtrl_005.png | Bin 0 -> 631 bytes .../abc_spinner_mtrl_am_alpha.9.png | Bin 0 -> 352 bytes .../abc_switch_track_mtrl_alpha.9.png | Bin 0 -> 522 bytes .../abc_tab_indicator_mtrl_alpha.9.png | Bin 0 -> 111 bytes .../abc_text_select_handle_left_mtrl.png | Bin 0 -> 513 bytes .../abc_text_select_handle_right_mtrl.png | Bin 0 -> 513 bytes .../drawable/abc_btn_borderless_material.xml | 22 + .../res/drawable/abc_btn_check_material.xml | 20 + .../drawable/abc_btn_check_material_anim.xml | 37 + .../drawable/abc_btn_default_mtrl_shape.xml | 32 + .../res/drawable/abc_btn_radio_material.xml | 20 + .../drawable/abc_btn_radio_material_anim.xml | 37 + .../abc_cab_background_internal_bg.xml | 23 + .../abc_cab_background_top_material.xml | 20 + .../res/drawable/abc_ic_ab_back_material.xml | 27 + .../abc_ic_arrow_drop_right_black_24dp.xml | 33 + .../jl/res/drawable/abc_ic_clear_material.xml | 26 + .../abc_ic_go_search_api_material.xml | 25 + .../abc_ic_menu_copy_mtrl_am_alpha.xml | 21 + .../drawable/abc_ic_menu_cut_mtrl_alpha.xml | 21 + .../abc_ic_menu_overflow_material.xml | 26 + .../abc_ic_menu_paste_mtrl_am_alpha.xml | 25 + .../abc_ic_menu_selectall_mtrl_alpha.xml | 25 + .../drawable/abc_ic_menu_share_mtrl_alpha.xml | 25 + .../drawable/abc_ic_search_api_material.xml | 26 + .../abc_ic_voice_search_api_material.xml | 26 + .../abc_item_background_holo_dark.xml | 26 + .../abc_item_background_holo_light.xml | 26 + ...lector_background_transition_holo_dark.xml | 20 + ...ector_background_transition_holo_light.xml | 20 + .../drawable/abc_list_selector_holo_dark.xml | 27 + .../drawable/abc_list_selector_holo_light.xml | 28 + .../abc_ratingbar_indicator_material.xml | 18 + .../res/drawable/abc_ratingbar_material.xml | 18 + .../drawable/abc_ratingbar_small_material.xml | 18 + .../drawable/abc_seekbar_thumb_material.xml | 35 + .../abc_seekbar_tick_mark_material.xml | 22 + .../drawable/abc_seekbar_track_material.xml | 40 + ..._spinner_textfield_background_material.xml | 36 + .../jl/res/drawable/abc_star_black_48dp.xml | 25 + .../res/drawable/abc_star_half_black_48dp.xml | 25 + .../drawable/abc_switch_thumb_material.xml | 20 + .../drawable/abc_tab_indicator_material.xml | 20 + .../res/drawable/abc_text_cursor_material.xml | 23 + .../abc_textfield_search_material.xml | 22 + .../drawable/btn_checkbox_checked_mtrl.xml | 50 + ...ox_checked_to_unchecked_mtrl_animation.xml | 32 + .../drawable/btn_checkbox_unchecked_mtrl.xml | 50 + ...ox_unchecked_to_checked_mtrl_animation.xml | 32 + .../jl/res/drawable/btn_radio_off_mtrl.xml | 46 + .../btn_radio_off_to_on_mtrl_animation.xml | 32 + .../142/jl/res/drawable/btn_radio_on_mtrl.xml | 43 + .../btn_radio_on_to_off_mtrl_animation.xml | 32 + .../jl/res/drawable/test_level_drawable.xml | 20 + .../jl/res/drawable/tooltip_frame_dark.xml | 22 + .../jl/res/drawable/tooltip_frame_light.xml | 22 + ..._checked_mtrl_animation_interpolator_0.xml | 20 + ..._checked_mtrl_animation_interpolator_1.xml | 20 + ...nchecked_mtrl_animation_interpolator_0.xml | 20 + ...nchecked_mtrl_animation_interpolator_1.xml | 20 + ...o_to_off_mtrl_animation_interpolator_0.xml | 20 + ...io_to_on_mtrl_animation_interpolator_0.xml | 20 + .../jl/res/interpolator/fast_out_slow_in.xml | 23 + .../jl/res/layout-v26/abc_screen_toolbar.xml | 54 + .../abc_alert_dialog_button_bar_material.xml | 51 + .../abc_alert_dialog_title_material.xml | 58 + .../res/layout/abc_action_bar_title_item.xml | 34 + .../layout/abc_action_bar_up_container.xml | 23 + .../layout/abc_action_menu_item_layout.xml | 30 + .../jl/res/layout/abc_action_menu_layout.xml | 24 + .../142/jl/res/layout/abc_action_mode_bar.xml | 25 + .../abc_action_mode_close_item_material.xml | 30 + .../res/layout/abc_activity_chooser_view.xml | 71 + .../abc_activity_chooser_view_list_item.xml | 53 + .../abc_alert_dialog_button_bar_material.xml | 64 + .../res/layout/abc_alert_dialog_material.xml | 104 + .../abc_alert_dialog_title_material.xml | 62 + .../layout/abc_cascading_menu_item_layout.xml | 82 + .../res/layout/abc_dialog_title_material.xml | 48 + .../res/layout/abc_expanded_menu_layout.xml | 21 + .../layout/abc_list_menu_item_checkbox.xml | 26 + .../jl/res/layout/abc_list_menu_item_icon.xml | 30 + .../res/layout/abc_list_menu_item_layout.xml | 60 + .../res/layout/abc_list_menu_item_radio.xml | 24 + .../abc_popup_menu_header_item_layout.xml | 37 + .../res/layout/abc_popup_menu_item_layout.xml | 88 + .../res/layout/abc_screen_content_include.xml | 26 + .../142/jl/res/layout/abc_screen_simple.xml | 34 + .../abc_screen_simple_overlay_action_mode.xml | 39 + .../142/jl/res/layout/abc_screen_toolbar.xml | 53 + .../abc_search_dropdown_item_icons_2line.xml | 85 + .../lp/142/jl/res/layout/abc_search_view.xml | 137 + .../res/layout/abc_select_dialog_material.xml | 39 + .../lp/142/jl/res/layout/abc_tooltip.xml | 42 + .../layout/select_dialog_item_material.xml | 33 + .../select_dialog_multichoice_material.xml | 33 + .../select_dialog_singlechoice_material.xml | 33 + .../support_simple_spinner_dropdown_item.xml | 25 + .../lp/142/jl/res/values-af/values-af.xml | 31 + .../lp/142/jl/res/values-am/values-am.xml | 31 + .../lp/142/jl/res/values-ar/values-ar.xml | 31 + .../lp/142/jl/res/values-as/values-as.xml | 31 + .../lp/142/jl/res/values-az/values-az.xml | 31 + .../res/values-b+sr+Latn/values-b+sr+Latn.xml | 31 + .../lp/142/jl/res/values-be/values-be.xml | 31 + .../lp/142/jl/res/values-bg/values-bg.xml | 31 + .../lp/142/jl/res/values-bn/values-bn.xml | 31 + .../lp/142/jl/res/values-bs/values-bs.xml | 31 + .../lp/142/jl/res/values-ca/values-ca.xml | 31 + .../lp/142/jl/res/values-cs/values-cs.xml | 31 + .../lp/142/jl/res/values-da/values-da.xml | 31 + .../lp/142/jl/res/values-de/values-de.xml | 31 + .../lp/142/jl/res/values-el/values-el.xml | 31 + .../jl/res/values-en-rAU/values-en-rAU.xml | 31 + .../jl/res/values-en-rCA/values-en-rCA.xml | 31 + .../jl/res/values-en-rGB/values-en-rGB.xml | 31 + .../jl/res/values-en-rIN/values-en-rIN.xml | 31 + .../jl/res/values-en-rXC/values-en-rXC.xml | 31 + .../jl/res/values-es-rUS/values-es-rUS.xml | 31 + .../lp/142/jl/res/values-es/values-es.xml | 31 + .../lp/142/jl/res/values-et/values-et.xml | 31 + .../lp/142/jl/res/values-eu/values-eu.xml | 31 + .../lp/142/jl/res/values-fa/values-fa.xml | 31 + .../lp/142/jl/res/values-fi/values-fi.xml | 31 + .../jl/res/values-fr-rCA/values-fr-rCA.xml | 31 + .../lp/142/jl/res/values-fr/values-fr.xml | 31 + .../lp/142/jl/res/values-gl/values-gl.xml | 31 + .../lp/142/jl/res/values-gu/values-gu.xml | 31 + .../values-h720dp-v13/values-h720dp-v13.xml | 4 + .../jl/res/values-hdpi-v4/values-hdpi-v4.xml | 8 + .../lp/142/jl/res/values-hi/values-hi.xml | 31 + .../lp/142/jl/res/values-hr/values-hr.xml | 31 + .../lp/142/jl/res/values-hu/values-hu.xml | 31 + .../lp/142/jl/res/values-hy/values-hy.xml | 31 + .../lp/142/jl/res/values-in/values-in.xml | 31 + .../lp/142/jl/res/values-is/values-is.xml | 31 + .../lp/142/jl/res/values-it/values-it.xml | 31 + .../lp/142/jl/res/values-iw/values-iw.xml | 31 + .../lp/142/jl/res/values-ja/values-ja.xml | 31 + .../lp/142/jl/res/values-ka/values-ka.xml | 31 + .../lp/142/jl/res/values-kk/values-kk.xml | 31 + .../lp/142/jl/res/values-km/values-km.xml | 31 + .../lp/142/jl/res/values-kn/values-kn.xml | 31 + .../lp/142/jl/res/values-ko/values-ko.xml | 31 + .../lp/142/jl/res/values-ky/values-ky.xml | 31 + .../lp/142/jl/res/values-land/values-land.xml | 6 + .../res/values-large-v4/values-large-v4.xml | 12 + .../res/values-ldltr-v21/values-ldltr-v21.xml | 4 + .../lp/142/jl/res/values-lo/values-lo.xml | 31 + .../lp/142/jl/res/values-lt/values-lt.xml | 31 + .../lp/142/jl/res/values-lv/values-lv.xml | 31 + .../lp/142/jl/res/values-mk/values-mk.xml | 31 + .../lp/142/jl/res/values-ml/values-ml.xml | 31 + .../lp/142/jl/res/values-mn/values-mn.xml | 31 + .../lp/142/jl/res/values-mr/values-mr.xml | 31 + .../lp/142/jl/res/values-ms/values-ms.xml | 31 + .../lp/142/jl/res/values-my/values-my.xml | 31 + .../lp/142/jl/res/values-nb/values-nb.xml | 31 + .../lp/142/jl/res/values-ne/values-ne.xml | 31 + .../res/values-night-v8/values-night-v8.xml | 11 + .../lp/142/jl/res/values-nl/values-nl.xml | 31 + .../lp/142/jl/res/values-or/values-or.xml | 31 + .../lp/142/jl/res/values-pa/values-pa.xml | 31 + .../lp/142/jl/res/values-pl/values-pl.xml | 31 + .../lp/142/jl/res/values-port/values-port.xml | 4 + .../jl/res/values-pt-rBR/values-pt-rBR.xml | 31 + .../jl/res/values-pt-rPT/values-pt-rPT.xml | 31 + .../lp/142/jl/res/values-pt/values-pt.xml | 31 + .../lp/142/jl/res/values-ro/values-ro.xml | 31 + .../lp/142/jl/res/values-ru/values-ru.xml | 31 + .../lp/142/jl/res/values-si/values-si.xml | 31 + .../lp/142/jl/res/values-sk/values-sk.xml | 31 + .../lp/142/jl/res/values-sl/values-sl.xml | 31 + .../lp/142/jl/res/values-sq/values-sq.xml | 31 + .../lp/142/jl/res/values-sr/values-sr.xml | 31 + .../lp/142/jl/res/values-sv/values-sv.xml | 31 + .../lp/142/jl/res/values-sw/values-sw.xml | 31 + .../values-sw600dp-v13/values-sw600dp-v13.xml | 11 + .../lp/142/jl/res/values-ta/values-ta.xml | 31 + .../lp/142/jl/res/values-te/values-te.xml | 31 + .../lp/142/jl/res/values-th/values-th.xml | 31 + .../lp/142/jl/res/values-tl/values-tl.xml | 31 + .../lp/142/jl/res/values-tr/values-tr.xml | 31 + .../lp/142/jl/res/values-uk/values-uk.xml | 31 + .../lp/142/jl/res/values-ur/values-ur.xml | 31 + .../lp/142/jl/res/values-uz/values-uz.xml | 31 + .../lp/142/jl/res/values-v16/values-v16.xml | 7 + .../lp/142/jl/res/values-v17/values-v17.xml | 62 + .../lp/142/jl/res/values-v18/values-v18.xml | 4 + .../lp/142/jl/res/values-v21/values-v21.xml | 261 + .../lp/142/jl/res/values-v22/values-v22.xml | 15 + .../lp/142/jl/res/values-v23/values-v23.xml | 51 + .../lp/142/jl/res/values-v24/values-v24.xml | 5 + .../lp/142/jl/res/values-v25/values-v25.xml | 9 + .../lp/142/jl/res/values-v26/values-v26.xml | 18 + .../lp/142/jl/res/values-v28/values-v28.xml | 13 + .../lp/142/jl/res/values-vi/values-vi.xml | 31 + .../res/values-watch-v20/values-watch-v20.xml | 12 + .../res/values-watch-v21/values-watch-v21.xml | 15 + .../res/values-xlarge-v4/values-xlarge-v4.xml | 9 + .../jl/res/values-zh-rCN/values-zh-rCN.xml | 31 + .../jl/res/values-zh-rHK/values-zh-rHK.xml | 31 + .../jl/res/values-zh-rTW/values-zh-rTW.xml | 31 + .../lp/142/jl/res/values-zu/values-zu.xml | 31 + .../lp/142/jl/res/values/values.xml | 2848 ++ .../obj/Debug/net9.0-android/lp/143.stamp | 1 + .../lp/143/jl/AndroidManifest.xml | 11 + .../build/gradle/aar-metadata.properties | 2 + .../obj/Debug/net9.0-android/lp/143/jl/R.txt | 2899 ++ .../net9.0-android/lp/143/jl/classes.jar | Bin 0 -> 473442 bytes .../Debug/net9.0-android/lp/143/jl/res.zip | Bin 0 -> 6961 bytes .../lp/143/jl/res/values/values.xml | 1563 + .../obj/Debug/net9.0-android/lp/144.stamp | 1 + .../lp/144/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/144/jl/R.txt | 37 + .../net9.0-android/lp/144/jl/classes.jar | Bin 0 -> 21655 bytes .../Debug/net9.0-android/lp/144/jl/res.zip | Bin 0 -> 1169 bytes .../lp/144/jl/res/values-v23/values-v23.xml | 6 + .../lp/144/jl/res/values/values.xml | 54 + .../obj/Debug/net9.0-android/lp/145.stamp | 1 + .../lp/145/jl/AndroidManifest.xml | 24 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/145/jl/R.txt | 6648 ++++ .../net9.0-android/lp/145/jl/annotations.zip | Bin 0 -> 17274 bytes .../net9.0-android/lp/145/jl/classes.jar | Bin 0 -> 1856219 bytes .../net9.0-android/lp/145/jl/proguard.txt | 46 + .../Debug/net9.0-android/lp/145/jl/public.txt | 1146 + .../Debug/net9.0-android/lp/145/jl/res.zip | Bin 0 -> 536586 bytes .../anim-v21/design_bottom_sheet_slide_in.xml | 29 + .../design_bottom_sheet_slide_out.xml | 29 + .../res/anim-v21/m3_bottom_sheet_slide_in.xml | 29 + .../anim-v21/m3_bottom_sheet_slide_out.xml | 31 + .../m3_side_sheet_enter_from_left.xml | 25 + .../m3_side_sheet_enter_from_right.xml | 25 + .../anim-v21/m3_side_sheet_exit_to_left.xml | 25 + .../anim-v21/m3_side_sheet_exit_to_right.xml | 25 + .../anim-v21/mtrl_bottom_sheet_slide_in.xml | 29 + .../anim-v21/mtrl_bottom_sheet_slide_out.xml | 29 + .../res/anim/design_bottom_sheet_slide_in.xml | 29 + .../anim/design_bottom_sheet_slide_out.xml | 29 + .../lp/145/jl/res/anim/design_snackbar_in.xml | 20 + .../145/jl/res/anim/design_snackbar_out.xml | 20 + ..._indeterminate_line1_head_interpolator.xml | 23 + ..._indeterminate_line1_tail_interpolator.xml | 23 + ..._indeterminate_line2_head_interpolator.xml | 23 + ..._indeterminate_line2_tail_interpolator.xml | 23 + .../jl/res/anim/m3_bottom_sheet_slide_in.xml | 29 + .../jl/res/anim/m3_bottom_sheet_slide_out.xml | 31 + .../145/jl/res/anim/m3_motion_fade_enter.xml | 31 + .../145/jl/res/anim/m3_motion_fade_exit.xml | 24 + .../anim/m3_side_sheet_enter_from_left.xml | 25 + .../anim/m3_side_sheet_enter_from_right.xml | 25 + .../res/anim/m3_side_sheet_exit_to_left.xml | 25 + .../res/anim/m3_side_sheet_exit_to_right.xml | 24 + .../res/anim/mtrl_bottom_sheet_slide_in.xml | 29 + .../res/anim/mtrl_bottom_sheet_slide_out.xml | 29 + .../anim/mtrl_card_lowers_interpolator.xml | 22 + .../design_appbar_state_list_animator.xml | 46 + .../m3_appbar_state_list_animator.xml | 46 + .../animator/design_fab_hide_motion_spec.xml | 34 + .../animator/design_fab_show_motion_spec.xml | 34 + .../m3_btn_elevated_btn_state_list_anim.xml | 72 + .../res/animator/m3_btn_state_list_anim.xml | 72 + .../m3_card_elevated_state_list_anim.xml | 67 + .../res/animator/m3_card_state_list_anim.xml | 65 + .../res/animator/m3_chip_state_list_anim.xml | 63 + .../m3_elevated_chip_state_list_anim.xml | 60 + ...d_fab_change_size_collapse_motion_spec.xml | 44 + ...ded_fab_change_size_expand_motion_spec.xml | 44 + .../m3_extended_fab_hide_motion_spec.xml | 35 + .../m3_extended_fab_show_motion_spec.xml | 36 + .../m3_extended_fab_state_list_animator.xml | 109 + .../res/animator/mtrl_btn_state_list_anim.xml | 109 + .../mtrl_btn_unelevated_state_list_anim.xml | 19 + .../animator/mtrl_card_state_list_anim.xml | 49 + .../animator/mtrl_chip_state_list_anim.xml | 49 + ...d_fab_change_size_collapse_motion_spec.xml | 44 + ...ded_fab_change_size_expand_motion_spec.xml | 44 + .../mtrl_extended_fab_hide_motion_spec.xml | 27 + .../mtrl_extended_fab_show_motion_spec.xml | 35 + .../mtrl_extended_fab_state_list_animator.xml | 109 + .../animator/mtrl_fab_hide_motion_spec.xml | 34 + .../animator/mtrl_fab_show_motion_spec.xml | 34 + ...fab_transformation_sheet_collapse_spec.xml | 70 + ...l_fab_transformation_sheet_expand_spec.xml | 70 + .../material_timepicker_button_stroke.xml | 20 + .../material_timepicker_clockface.xml | 19 + .../material_timepicker_modebutton_tint.xml | 20 + ...ynamic_dark_default_color_primary_text.xml | 22 + ...amic_dark_default_color_secondary_text.xml | 22 + .../m3_dynamic_dark_highlighted_text.xml | 20 + .../m3_dynamic_dark_hint_foreground.xml | 25 + ...dynamic_dark_primary_text_disable_only.xml | 21 + .../m3_dynamic_default_color_primary_text.xml | 22 + ...3_dynamic_default_color_secondary_text.xml | 22 + .../color-v31/m3_dynamic_highlighted_text.xml | 20 + .../color-v31/m3_dynamic_hint_foreground.xml | 25 + .../m3_dynamic_primary_text_disable_only.xml | 21 + .../m3_ref_palette_dynamic_neutral12.xml | 22 + .../m3_ref_palette_dynamic_neutral17.xml | 22 + .../m3_ref_palette_dynamic_neutral22.xml | 22 + .../m3_ref_palette_dynamic_neutral24.xml | 22 + .../m3_ref_palette_dynamic_neutral4.xml | 22 + .../m3_ref_palette_dynamic_neutral6.xml | 22 + .../m3_ref_palette_dynamic_neutral87.xml | 22 + .../m3_ref_palette_dynamic_neutral92.xml | 22 + .../m3_ref_palette_dynamic_neutral94.xml | 22 + .../m3_ref_palette_dynamic_neutral96.xml | 22 + .../m3_ref_palette_dynamic_neutral98.xml | 22 + ..._ref_palette_dynamic_neutral_variant12.xml | 19 + ..._ref_palette_dynamic_neutral_variant17.xml | 19 + ..._ref_palette_dynamic_neutral_variant22.xml | 19 + ..._ref_palette_dynamic_neutral_variant24.xml | 19 + ...3_ref_palette_dynamic_neutral_variant4.xml | 19 + ...3_ref_palette_dynamic_neutral_variant6.xml | 19 + ..._ref_palette_dynamic_neutral_variant87.xml | 19 + ..._ref_palette_dynamic_neutral_variant92.xml | 19 + ..._ref_palette_dynamic_neutral_variant94.xml | 19 + ..._ref_palette_dynamic_neutral_variant96.xml | 19 + ..._ref_palette_dynamic_neutral_variant98.xml | 19 + .../jl/res/color/design_box_stroke_color.xml | 22 + .../lp/145/jl/res/color/design_error.xml | 20 + .../lp/145/jl/res/color/design_icon_tint.xml | 19 + .../jl/res/color/m3_appbar_overlay_color.xml | 21 + .../color/m3_assist_chip_icon_tint_color.xml | 24 + .../res/color/m3_assist_chip_stroke_color.xml | 31 + .../m3_bottom_sheet_drag_handle_color.xml | 20 + .../m3_button_background_color_selector.xml | 20 + .../m3_button_foreground_color_selector.xml | 20 + .../m3_button_outline_color_selector.xml | 20 + .../jl/res/color/m3_button_ripple_color.xml | 23 + .../color/m3_button_ripple_color_selector.xml | 22 + .../color/m3_calendar_item_disabled_text.xml | 22 + .../color/m3_calendar_item_stroke_color.xml | 22 + .../jl/res/color/m3_card_foreground_color.xml | 23 + .../145/jl/res/color/m3_card_ripple_color.xml | 62 + .../145/jl/res/color/m3_card_stroke_color.xml | 41 + .../color/m3_checkbox_button_icon_tint.xml | 33 + .../jl/res/color/m3_checkbox_button_tint.xml | 35 + .../res/color/m3_chip_assist_text_color.xml | 21 + .../jl/res/color/m3_chip_background_color.xml | 28 + .../145/jl/res/color/m3_chip_ripple_color.xml | 47 + .../145/jl/res/color/m3_chip_stroke_color.xml | 31 + .../145/jl/res/color/m3_chip_text_color.xml | 28 + .../m3_dark_default_color_primary_text.xml | 22 + .../m3_dark_default_color_secondary_text.xml | 22 + .../jl/res/color/m3_dark_highlighted_text.xml | 20 + .../jl/res/color/m3_dark_hint_foreground.xml | 25 + .../m3_dark_primary_text_disable_only.xml | 21 + .../color/m3_default_color_primary_text.xml | 22 + .../color/m3_default_color_secondary_text.xml | 22 + .../color/m3_efab_ripple_color_selector.xml | 22 + .../m3_elevated_chip_background_color.xml | 28 + .../m3_fab_efab_background_color_selector.xml | 20 + .../m3_fab_efab_foreground_color_selector.xml | 20 + .../color/m3_fab_ripple_color_selector.xml | 22 + ...d_icon_button_container_color_selector.xml | 24 + .../145/jl/res/color/m3_highlighted_text.xml | 20 + .../145/jl/res/color/m3_hint_foreground.xml | 25 + .../m3_icon_button_icon_color_selector.xml | 24 + ...tion_bar_item_with_indicator_icon_tint.xml | 36 + ...ion_bar_item_with_indicator_label_tint.xml | 36 + ...3_navigation_bar_ripple_color_selector.xml | 42 + .../m3_navigation_item_background_color.xml | 21 + .../color/m3_navigation_item_icon_tint.xml | 40 + .../color/m3_navigation_item_ripple_color.xml | 48 + .../color/m3_navigation_item_text_color.xml | 38 + ...ion_rail_item_with_indicator_icon_tint.xml | 20 + ...on_rail_item_with_indicator_label_tint.xml | 20 + ..._navigation_rail_ripple_color_selector.xml | 30 + .../res/color/m3_popupmenu_overlay_color.xml | 19 + .../color/m3_primary_text_disable_only.xml | 21 + .../res/color/m3_radiobutton_button_tint.xml | 45 + .../res/color/m3_radiobutton_ripple_tint.xml | 51 + ...election_control_ripple_color_selector.xml | 49 + .../res/color/m3_simple_item_ripple_color.xml | 23 + .../color/m3_slider_active_track_color.xml | 20 + .../145/jl/res/color/m3_slider_halo_color.xml | 20 + .../color/m3_slider_inactive_track_color.xml | 20 + .../jl/res/color/m3_slider_thumb_color.xml | 25 + .../145/jl/res/color/m3_switch_thumb_tint.xml | 26 + .../145/jl/res/color/m3_switch_track_tint.xml | 23 + .../145/jl/res/color/m3_tabs_icon_color.xml | 28 + .../color/m3_tabs_icon_color_secondary.xml | 28 + .../145/jl/res/color/m3_tabs_ripple_color.xml | 52 + .../color/m3_tabs_ripple_color_secondary.xml | 52 + .../145/jl/res/color/m3_tabs_text_color.xml | 28 + .../color/m3_tabs_text_color_secondary.xml | 28 + ..._text_button_background_color_selector.xml | 21 + ..._text_button_foreground_color_selector.xml | 29 + .../m3_text_button_ripple_color_selector.xml | 71 + .../m3_textfield_filled_background_color.xml | 20 + .../m3_textfield_indicator_text_color.xml | 28 + .../color/m3_textfield_input_text_color.xml | 26 + .../jl/res/color/m3_textfield_label_color.xml | 26 + .../res/color/m3_textfield_stroke_color.xml | 29 + .../m3_timepicker_button_background_color.xml | 20 + .../m3_timepicker_button_ripple_color.xml | 46 + .../color/m3_timepicker_button_text_color.xml | 26 + .../color/m3_timepicker_clock_text_color.xml | 20 + ...m3_timepicker_display_background_color.xml | 23 + .../m3_timepicker_display_ripple_color.xml | 47 + .../m3_timepicker_display_text_color.xml | 25 + ...ker_secondary_text_button_ripple_color.xml | 23 + ...icker_secondary_text_button_text_color.xml | 23 + .../m3_timepicker_time_input_stroke_color.xml | 23 + .../m3_tonal_button_ripple_color_selector.xml | 22 + .../jl/res/color/material_cursor_color.xml | 20 + .../jl/res/color/material_divider_color.xml | 19 + .../color/material_on_background_disabled.xml | 19 + ...erial_on_background_emphasis_high_type.xml | 19 + ...material_on_background_emphasis_medium.xml | 19 + .../color/material_on_primary_disabled.xml | 19 + ...material_on_primary_emphasis_high_type.xml | 19 + .../material_on_primary_emphasis_medium.xml | 19 + .../color/material_on_surface_disabled.xml | 19 + ...material_on_surface_emphasis_high_type.xml | 19 + .../material_on_surface_emphasis_medium.xml | 19 + .../res/color/material_on_surface_stroke.xml | 20 + ...aterial_personalized__highlighted_text.xml | 20 + ...personalized__highlighted_text_inverse.xml | 20 + ...terial_personalized_color_primary_text.xml | 22 + ...ersonalized_color_primary_text_inverse.xml | 22 + ...rial_personalized_color_secondary_text.xml | 22 + ...sonalized_color_secondary_text_inverse.xml | 22 + .../material_personalized_hint_foreground.xml | 25 + ...l_personalized_hint_foreground_inverse.xml | 25 + ...ized_primary_inverse_text_disable_only.xml | 21 + ...personalized_primary_text_disable_only.xml | 21 + ...aterial_slider_active_tick_marks_color.xml | 21 + .../material_slider_active_track_color.xml | 21 + .../res/color/material_slider_halo_color.xml | 21 + ...erial_slider_inactive_tick_marks_color.xml | 21 + .../material_slider_inactive_track_color.xml | 21 + .../res/color/material_slider_thumb_color.xml | 21 + .../material_timepicker_button_background.xml | 21 + .../material_timepicker_button_stroke.xml | 20 + .../material_timepicker_clock_text_color.xml | 20 + .../color/material_timepicker_clockface.xml | 19 + .../material_timepicker_modebutton_tint.xml | 20 + .../res/color/mtrl_btn_bg_color_selector.xml | 21 + .../jl/res/color/mtrl_btn_ripple_color.xml | 26 + .../color/mtrl_btn_stroke_color_selector.xml | 21 + .../mtrl_btn_text_btn_bg_color_selector.xml | 21 + .../color/mtrl_btn_text_btn_ripple_color.xml | 26 + .../color/mtrl_btn_text_color_selector.xml | 21 + .../color/mtrl_calendar_item_stroke_color.xml | 22 + .../color/mtrl_calendar_selected_range.xml | 19 + .../res/color/mtrl_card_view_foreground.xml | 23 + .../jl/res/color/mtrl_card_view_ripple.xml | 25 + .../res/color/mtrl_chip_background_color.xml | 26 + .../res/color/mtrl_chip_close_icon_tint.xml | 28 + .../jl/res/color/mtrl_chip_surface_color.xml | 22 + .../145/jl/res/color/mtrl_chip_text_color.xml | 25 + .../mtrl_choice_chip_background_color.xml | 26 + .../color/mtrl_choice_chip_ripple_color.xml | 26 + .../res/color/mtrl_choice_chip_text_color.xml | 27 + .../lp/145/jl/res/color/mtrl_error.xml | 20 + .../res/color/mtrl_fab_bg_color_selector.xml | 21 + .../mtrl_fab_icon_text_color_selector.xml | 21 + .../jl/res/color/mtrl_fab_ripple_color.xml | 26 + .../color/mtrl_filled_background_color.xml | 22 + .../jl/res/color/mtrl_filled_icon_tint.xml | 21 + .../jl/res/color/mtrl_filled_stroke_color.xml | 23 + .../res/color/mtrl_indicator_text_color.xml | 20 + .../mtrl_navigation_bar_colored_item_tint.xml | 21 + ...rl_navigation_bar_colored_ripple_color.xml | 26 + .../color/mtrl_navigation_bar_item_tint.xml | 21 + .../mtrl_navigation_bar_ripple_color.xml | 36 + .../mtrl_navigation_item_background_color.xml | 22 + .../color/mtrl_navigation_item_icon_tint.xml | 22 + .../color/mtrl_navigation_item_text_color.xml | 22 + ...n_primary_text_btn_text_color_selector.xml | 22 + .../color/mtrl_on_surface_ripple_color.xml | 25 + .../jl/res/color/mtrl_outlined_icon_tint.xml | 21 + .../res/color/mtrl_outlined_stroke_color.xml | 22 + .../color/mtrl_popupmenu_overlay_color.xml | 20 + .../res/color/mtrl_switch_thumb_icon_tint.xml | 48 + .../jl/res/color/mtrl_switch_thumb_tint.xml | 41 + .../mtrl_switch_track_decoration_tint.xml | 24 + .../jl/res/color/mtrl_switch_track_tint.xml | 46 + .../color/mtrl_tabs_colored_ripple_color.xml | 26 + .../color/mtrl_tabs_icon_color_selector.xml | 21 + .../mtrl_tabs_icon_color_selector_colored.xml | 21 + .../mtrl_tabs_legacy_text_color_selector.xml | 21 + .../jl/res/color/mtrl_tabs_ripple_color.xml | 36 + .../mtrl_text_btn_text_color_selector.xml | 23 + .../res/drawable-v21/m3_tabs_background.xml | 32 + .../drawable-v21/material_cursor_drawable.xml | 24 + .../mtrl_navigation_bar_item_background.xml | 19 + .../drawable-v23/m3_radiobutton_ripple.xml | 20 + .../m3_selection_control_ripple.xml | 20 + .../res/drawable-v23/m3_tabs_background.xml | 33 + .../m3_tabs_transparent_background.xml | 24 + .../mtrl_popupmenu_background_overlay.xml | 45 + .../145/jl/res/drawable/avd_hide_password.xml | 88 + .../145/jl/res/drawable/avd_show_password.xml | 87 + .../jl/res/drawable/design_fab_background.xml | 21 + .../jl/res/drawable/design_ic_visibility.xml | 30 + .../res/drawable/design_ic_visibility_off.xml | 30 + .../jl/res/drawable/design_password_eye.xml | 42 + .../drawable/design_snackbar_background.xml | 22 + .../res/drawable/ic_arrow_back_black_24.xml | 26 + .../145/jl/res/drawable/ic_clear_black_24.xml | 28 + .../jl/res/drawable/ic_clock_black_24dp.xml | 26 + .../res/drawable/ic_keyboard_black_24dp.xml | 26 + .../145/jl/res/drawable/ic_m3_chip_check.xml | 30 + .../drawable/ic_m3_chip_checked_circle.xml | 37 + .../145/jl/res/drawable/ic_m3_chip_close.xml | 28 + .../res/drawable/ic_mtrl_checked_circle.xml | 28 + .../drawable/ic_mtrl_chip_checked_black.xml | 28 + .../drawable/ic_mtrl_chip_checked_circle.xml | 36 + .../drawable/ic_mtrl_chip_close_circle.xml | 29 + .../jl/res/drawable/ic_search_black_24.xml | 26 + .../jl/res/drawable/m3_avd_hide_password.xml | 88 + .../jl/res/drawable/m3_avd_show_password.xml | 87 + .../drawable/m3_bottom_sheet_drag_handle.xml | 23 + .../145/jl/res/drawable/m3_password_eye.xml | 42 + .../m3_popupmenu_background_overlay.xml | 30 + .../res/drawable/m3_tabs_line_indicator.xml | 23 + .../m3_tabs_rounded_line_indicator.xml | 34 + .../res/drawable/material_cursor_drawable.xml | 24 + .../material_ic_calendar_black_24dp.xml | 26 + .../drawable/material_ic_clear_black_24dp.xml | 28 + .../drawable/material_ic_edit_black_24dp.xml | 26 + ...rial_ic_keyboard_arrow_left_black_24dp.xml | 29 + ...ial_ic_keyboard_arrow_right_black_24dp.xml | 30 + ...material_ic_menu_arrow_down_black_24dp.xml | 30 + .../material_ic_menu_arrow_up_black_24dp.xml | 29 + .../drawable/mtrl_bottomsheet_drag_handle.xml | 23 + .../jl/res/drawable/mtrl_checkbox_button.xml | 51 + ...mtrl_checkbox_button_checked_unchecked.xml | 55 + .../drawable/mtrl_checkbox_button_icon.xml | 60 + ...kbox_button_icon_checked_indeterminate.xml | 33 + ...checkbox_button_icon_checked_unchecked.xml | 55 + ...kbox_button_icon_indeterminate_checked.xml | 33 + ...ox_button_icon_indeterminate_unchecked.xml | 55 + ...checkbox_button_icon_unchecked_checked.xml | 55 + ...ox_button_icon_unchecked_indeterminate.xml | 55 + ...mtrl_checkbox_button_unchecked_checked.xml | 55 + .../res/drawable/mtrl_dialog_background.xml | 26 + .../jl/res/drawable/mtrl_dropdown_arrow.xml | 27 + .../res/drawable/mtrl_ic_arrow_drop_down.xml | 30 + .../jl/res/drawable/mtrl_ic_arrow_drop_up.xml | 30 + .../lp/145/jl/res/drawable/mtrl_ic_cancel.xml | 30 + .../jl/res/drawable/mtrl_ic_check_mark.xml | 33 + .../res/drawable/mtrl_ic_checkbox_checked.xml | 38 + .../drawable/mtrl_ic_checkbox_unchecked.xml | 29 + .../lp/145/jl/res/drawable/mtrl_ic_error.xml | 30 + .../jl/res/drawable/mtrl_ic_indeterminate.xml | 33 + .../mtrl_navigation_bar_item_background.xml | 29 + .../drawable/mtrl_popupmenu_background.xml | 30 + .../mtrl_popupmenu_background_overlay.xml | 30 + .../145/jl/res/drawable/mtrl_switch_thumb.xml | 83 + .../drawable/mtrl_switch_thumb_checked.xml | 35 + .../mtrl_switch_thumb_checked_pressed.xml | 34 + .../mtrl_switch_thumb_checked_unchecked.xml | 48 + .../drawable/mtrl_switch_thumb_pressed.xml | 35 + .../mtrl_switch_thumb_pressed_checked.xml | 34 + .../mtrl_switch_thumb_pressed_unchecked.xml | 34 + .../drawable/mtrl_switch_thumb_unchecked.xml | 35 + .../mtrl_switch_thumb_unchecked_checked.xml | 48 + .../mtrl_switch_thumb_unchecked_pressed.xml | 34 + .../145/jl/res/drawable/mtrl_switch_track.xml | 30 + .../drawable/mtrl_switch_track_decoration.xml | 31 + .../drawable/mtrl_tabs_default_indicator.xml | 26 + .../jl/res/drawable/navigation_empty_icon.xml | 24 + .../m3_sys_motion_easing_emphasized.xml | 19 + ...ys_motion_easing_emphasized_accelerate.xml | 22 + ...ys_motion_easing_emphasized_decelerate.xml | 22 + .../m3_sys_motion_easing_linear.xml | 22 + .../m3_sys_motion_easing_standard.xml | 22 + ..._sys_motion_easing_standard_accelerate.xml | 22 + ..._sys_motion_easing_standard_decelerate.xml | 22 + .../mtrl_fast_out_linear_in.xml | 22 + .../mtrl_fast_out_slow_in.xml | 22 + .../mtrl_linear_out_slow_in.xml | 22 + .../m3_sys_motion_easing_emphasized.xml | 18 + ...ys_motion_easing_emphasized_accelerate.xml | 18 + ...ys_motion_easing_emphasized_decelerate.xml | 18 + .../m3_sys_motion_easing_linear.xml | 18 + .../m3_sys_motion_easing_standard.xml | 18 + ..._sys_motion_easing_standard_accelerate.xml | 18 + ..._sys_motion_easing_standard_decelerate.xml | 18 + .../interpolator/mtrl_fast_out_linear_in.xml | 19 + .../interpolator/mtrl_fast_out_slow_in.xml | 19 + .../145/jl/res/interpolator/mtrl_linear.xml | 18 + .../interpolator/mtrl_linear_out_slow_in.xml | 19 + .../material_clock_period_toggle_land.xml | 49 + .../res/layout-land/material_timepicker.xml | 57 + .../layout-land/mtrl_picker_header_dialog.xml | 59 + .../design_layout_snackbar.xml | 24 + .../mtrl_layout_snackbar.xml | 23 + .../jl/res/layout-v26/mtrl_calendar_month.xml | 28 + .../layout/design_bottom_navigation_item.xml | 67 + .../res/layout/design_bottom_sheet_dialog.xml | 51 + .../jl/res/layout/design_layout_snackbar.xml | 24 + .../layout/design_layout_snackbar_include.xml | 53 + .../jl/res/layout/design_layout_tab_icon.xml | 22 + .../jl/res/layout/design_layout_tab_text.xml | 23 + .../layout/design_menu_item_action_area.xml | 19 + .../jl/res/layout/design_navigation_item.xml | 28 + .../layout/design_navigation_item_header.xml | 22 + .../design_navigation_item_separator.xml | 26 + .../design_navigation_item_subheader.xml | 25 + .../jl/res/layout/design_navigation_menu.xml | 24 + .../layout/design_navigation_menu_item.xml | 36 + .../res/layout/design_text_input_end_icon.xml | 30 + .../layout/design_text_input_start_icon.xml | 30 + .../lp/145/jl/res/layout/m3_alert_dialog.xml | 103 + .../jl/res/layout/m3_alert_dialog_actions.xml | 64 + .../jl/res/layout/m3_alert_dialog_title.xml | 46 + .../layout/m3_auto_complete_simple_item.xml | 26 + .../jl/res/layout/m3_side_sheet_dialog.xml | 50 + .../res/layout/material_chip_input_combo.xml | 21 + .../jl/res/layout/material_clock_display.xml | 38 + .../layout/material_clock_display_divider.xml | 26 + .../layout/material_clock_period_toggle.xml | 45 + .../layout/material_clockface_textview.xml | 26 + .../jl/res/layout/material_clockface_view.xml | 36 + .../res/layout/material_radial_view_group.xml | 30 + .../layout/material_textinput_timepicker.xml | 33 + .../145/jl/res/layout/material_time_chip.xml | 21 + .../145/jl/res/layout/material_time_input.xml | 36 + .../145/jl/res/layout/material_timepicker.xml | 54 + .../res/layout/material_timepicker_dialog.xml | 100 + .../material_timepicker_textinput_display.xml | 35 + .../145/jl/res/layout/mtrl_alert_dialog.xml | 98 + .../res/layout/mtrl_alert_dialog_actions.xml | 66 + .../jl/res/layout/mtrl_alert_dialog_title.xml | 46 + .../layout/mtrl_alert_select_dialog_item.xml | 32 + .../mtrl_alert_select_dialog_multichoice.xml | 45 + .../mtrl_alert_select_dialog_singlechoice.xml | 45 + .../layout/mtrl_auto_complete_simple_item.xml | 26 + .../145/jl/res/layout/mtrl_calendar_day.xml | 20 + .../res/layout/mtrl_calendar_day_of_week.xml | 21 + .../res/layout/mtrl_calendar_days_of_week.xml | 22 + .../res/layout/mtrl_calendar_horizontal.xml | 50 + .../145/jl/res/layout/mtrl_calendar_month.xml | 27 + .../layout/mtrl_calendar_month_labeled.xml | 33 + .../layout/mtrl_calendar_month_navigation.xml | 69 + .../jl/res/layout/mtrl_calendar_months.xml | 23 + .../jl/res/layout/mtrl_calendar_vertical.xml | 32 + .../145/jl/res/layout/mtrl_calendar_year.xml | 20 + .../jl/res/layout/mtrl_layout_snackbar.xml | 23 + .../layout/mtrl_layout_snackbar_include.xml | 42 + .../res/layout/mtrl_navigation_rail_item.xml | 66 + .../145/jl/res/layout/mtrl_picker_actions.xml | 44 + .../145/jl/res/layout/mtrl_picker_dialog.xml | 50 + .../jl/res/layout/mtrl_picker_fullscreen.xml | 36 + .../res/layout/mtrl_picker_header_dialog.xml | 58 + .../layout/mtrl_picker_header_fullscreen.xml | 105 + .../mtrl_picker_header_selection_text.xml | 28 + .../layout/mtrl_picker_header_title_text.xml | 26 + .../res/layout/mtrl_picker_header_toggle.xml | 25 + .../layout/mtrl_picker_text_input_date.xml | 38 + .../mtrl_picker_text_input_date_range.xml | 62 + .../lp/145/jl/res/layout/mtrl_search_bar.xml | 25 + .../lp/145/jl/res/layout/mtrl_search_view.xml | 126 + .../lp/145/jl/res/values-af/values-af.xml | 75 + .../lp/145/jl/res/values-am/values-am.xml | 75 + .../lp/145/jl/res/values-ar/values-ar.xml | 79 + .../lp/145/jl/res/values-as/values-as.xml | 75 + .../lp/145/jl/res/values-az/values-az.xml | 75 + .../res/values-b+es+419/values-b+es+419.xml | 75 + .../res/values-b+sr+Latn/values-b+sr+Latn.xml | 76 + .../lp/145/jl/res/values-be/values-be.xml | 77 + .../lp/145/jl/res/values-bg/values-bg.xml | 75 + .../lp/145/jl/res/values-bn/values-bn.xml | 75 + .../lp/145/jl/res/values-bs/values-bs.xml | 76 + .../lp/145/jl/res/values-ca/values-ca.xml | 75 + .../lp/145/jl/res/values-cs/values-cs.xml | 77 + .../lp/145/jl/res/values-da/values-da.xml | 75 + .../lp/145/jl/res/values-de/values-de.xml | 75 + .../lp/145/jl/res/values-el/values-el.xml | 75 + .../jl/res/values-en-rGB/values-en-rGB.xml | 75 + .../jl/res/values-es-rUS/values-es-rUS.xml | 75 + .../lp/145/jl/res/values-es/values-es.xml | 75 + .../lp/145/jl/res/values-et/values-et.xml | 75 + .../lp/145/jl/res/values-eu/values-eu.xml | 75 + .../lp/145/jl/res/values-fa/values-fa.xml | 75 + .../lp/145/jl/res/values-fi/values-fi.xml | 75 + .../jl/res/values-fr-rCA/values-fr-rCA.xml | 75 + .../lp/145/jl/res/values-fr/values-fr.xml | 75 + .../lp/145/jl/res/values-gl/values-gl.xml | 75 + .../lp/145/jl/res/values-gu/values-gu.xml | 75 + .../values-h320dp-port-v13.xml | 4 + .../values-h360dp-land-v13.xml | 12 + .../values-h480dp-land-v13.xml | 12 + .../values-h550dp-port-v13.xml | 4 + .../lp/145/jl/res/values-hi/values-hi.xml | 75 + .../lp/145/jl/res/values-hr/values-hr.xml | 76 + .../lp/145/jl/res/values-hu/values-hu.xml | 75 + .../lp/145/jl/res/values-hy/values-hy.xml | 75 + .../lp/145/jl/res/values-in/values-in.xml | 75 + .../lp/145/jl/res/values-is/values-is.xml | 75 + .../lp/145/jl/res/values-it/values-it.xml | 75 + .../lp/145/jl/res/values-iw/values-iw.xml | 76 + .../lp/145/jl/res/values-ja/values-ja.xml | 75 + .../lp/145/jl/res/values-ka/values-ka.xml | 75 + .../lp/145/jl/res/values-kk/values-kk.xml | 75 + .../lp/145/jl/res/values-km/values-km.xml | 75 + .../lp/145/jl/res/values-kn/values-kn.xml | 75 + .../lp/145/jl/res/values-ko/values-ko.xml | 75 + .../lp/145/jl/res/values-ky/values-ky.xml | 75 + .../lp/145/jl/res/values-land/values-land.xml | 44 + .../res/values-large-v4/values-large-v4.xml | 7 + .../res/values-ldrtl-v17/values-ldrtl-v17.xml | 5 + .../lp/145/jl/res/values-lo/values-lo.xml | 75 + .../lp/145/jl/res/values-lt/values-lt.xml | 77 + .../lp/145/jl/res/values-lv/values-lv.xml | 76 + .../lp/145/jl/res/values-mk/values-mk.xml | 75 + .../lp/145/jl/res/values-ml/values-ml.xml | 75 + .../lp/145/jl/res/values-mn/values-mn.xml | 75 + .../lp/145/jl/res/values-mr/values-mr.xml | 75 + .../lp/145/jl/res/values-ms/values-ms.xml | 75 + .../lp/145/jl/res/values-my/values-my.xml | 75 + .../lp/145/jl/res/values-nb/values-nb.xml | 75 + .../lp/145/jl/res/values-ne/values-ne.xml | 75 + .../res/values-night-v8/values-night-v8.xml | 36 + .../lp/145/jl/res/values-nl/values-nl.xml | 75 + .../lp/145/jl/res/values-or/values-or.xml | 75 + .../lp/145/jl/res/values-pa/values-pa.xml | 75 + .../lp/145/jl/res/values-pl/values-pl.xml | 77 + .../jl/res/values-pt-rBR/values-pt-rBR.xml | 75 + .../jl/res/values-pt-rPT/values-pt-rPT.xml | 75 + .../lp/145/jl/res/values-ro/values-ro.xml | 76 + .../lp/145/jl/res/values-ru/values-ru.xml | 77 + .../lp/145/jl/res/values-si/values-si.xml | 75 + .../lp/145/jl/res/values-sk/values-sk.xml | 77 + .../lp/145/jl/res/values-sl/values-sl.xml | 77 + .../res/values-small-v4/values-small-v4.xml | 7 + .../lp/145/jl/res/values-sq/values-sq.xml | 75 + .../lp/145/jl/res/values-sr/values-sr.xml | 76 + .../lp/145/jl/res/values-sv/values-sv.xml | 75 + .../lp/145/jl/res/values-sw/values-sw.xml | 75 + .../values-sw600dp-v13/values-sw600dp-v13.xml | 19 + .../lp/145/jl/res/values-ta/values-ta.xml | 75 + .../lp/145/jl/res/values-te/values-te.xml | 75 + .../lp/145/jl/res/values-th/values-th.xml | 75 + .../lp/145/jl/res/values-tl/values-tl.xml | 75 + .../lp/145/jl/res/values-tr/values-tr.xml | 75 + .../lp/145/jl/res/values-uk/values-uk.xml | 77 + .../lp/145/jl/res/values-ur/values-ur.xml | 75 + .../lp/145/jl/res/values-uz/values-uz.xml | 75 + .../lp/145/jl/res/values-v21/values-v21.xml | 290 + .../lp/145/jl/res/values-v23/values-v23.xml | 37 + .../lp/145/jl/res/values-v24/values-v24.xml | 19 + .../lp/145/jl/res/values-v28/values-v28.xml | 19 + .../lp/145/jl/res/values-v31/values-v31.xml | 475 + .../lp/145/jl/res/values-v34/values-v34.xml | 91 + .../lp/145/jl/res/values-vi/values-vi.xml | 75 + .../values-w320dp-land-v13.xml | 5 + .../values-w360dp-port-v13.xml | 11 + .../values-w400dp-port-v13.xml | 11 + .../values-w600dp-land-v13.xml | 4 + .../jl/res/values-zh-rCN/values-zh-rCN.xml | 75 + .../jl/res/values-zh-rHK/values-zh-rHK.xml | 75 + .../jl/res/values-zh-rTW/values-zh-rTW.xml | 75 + .../lp/145/jl/res/values-zu/values-zu.xml | 75 + .../lp/145/jl/res/values/values.xml | 9166 +++++ .../obj/Debug/net9.0-android/lp/146.stamp | 1 + .../lp/146/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/146/jl/R.txt | 0 .../net9.0-android/lp/146/jl/classes.jar | Bin 0 -> 2293 bytes .../net9.0-android/lp/146/jl/proguard.txt | 24 + .../Debug/net9.0-android/lp/146/jl/public.txt | 0 .../Debug/net9.0-android/lp/146/jl/res.zip | Bin 0 -> 204 bytes .../lp/146/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/147.stamp | 1 + .../lp/147/jl/AndroidManifest.xml | 31 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/147/jl/R.txt | 68 + .../net9.0-android/lp/147/jl/classes.jar | Bin 0 -> 387770 bytes .../net9.0-android/lp/147/jl/proguard.txt | 31 + .../Debug/net9.0-android/lp/147/jl/public.txt | 21 + .../Debug/net9.0-android/lp/147/jl/res.zip | Bin 0 -> 744 bytes .../lp/147/jl/res/values/values.xml | 106 + .../obj/Debug/net9.0-android/lp/148.stamp | 1 + .../lp/148/jl/AndroidManifest.xml | 24 + .../obj/Debug/net9.0-android/lp/148/jl/R.txt | 174 + .../net9.0-android/lp/148/jl/annotations.zip | Bin 0 -> 465 bytes .../net9.0-android/lp/148/jl/classes.jar | Bin 0 -> 36288 bytes .../Debug/net9.0-android/lp/148/jl/res.zip | Bin 0 -> 324 bytes .../lp/148/jl/res/values/values.xml | 7 + .../obj/Debug/net9.0-android/lp/149.stamp | 1 + .../lp/149/jl/AndroidManifest.xml | 24 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/149/jl/R.txt | 0 .../net9.0-android/lp/149/jl/annotations.zip | Bin 0 -> 498 bytes .../net9.0-android/lp/149/jl/classes.jar | Bin 0 -> 39471 bytes .../Debug/net9.0-android/lp/149/jl/public.txt | 0 .../Debug/net9.0-android/lp/149/jl/res.zip | Bin 0 -> 204 bytes .../lp/149/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/150.stamp | 1 + .../lp/150/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/150/jl/R.txt | 0 .../net9.0-android/lp/150/jl/classes.jar | Bin 0 -> 33362 bytes .../Debug/net9.0-android/lp/150/jl/public.txt | 0 .../Debug/net9.0-android/lp/150/jl/res.zip | Bin 0 -> 204 bytes .../lp/150/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/151.stamp | 1 + .../lp/151/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/151/jl/R.txt | 0 .../net9.0-android/lp/151/jl/classes.jar | Bin 0 -> 1536 bytes .../Debug/net9.0-android/lp/151/jl/public.txt | 0 .../Debug/net9.0-android/lp/151/jl/res.zip | Bin 0 -> 204 bytes .../lp/151/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/152.stamp | 1 + .../lp/152/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/152/jl/R.txt | 0 .../net9.0-android/lp/152/jl/classes.jar | Bin 0 -> 222 bytes .../Debug/net9.0-android/lp/152/jl/public.txt | 0 .../Debug/net9.0-android/lp/152/jl/res.zip | Bin 0 -> 204 bytes .../lp/152/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/153.stamp | 1 + .../lp/153/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/153/jl/R.txt | 0 .../net9.0-android/lp/153/jl/classes.jar | Bin 0 -> 218 bytes .../Debug/net9.0-android/lp/153/jl/public.txt | 0 .../Debug/net9.0-android/lp/153/jl/res.zip | Bin 0 -> 204 bytes .../lp/153/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/154.stamp | 1 + .../lp/154/jl/AndroidManifest.xml | 5 + .../obj/Debug/net9.0-android/lp/155.stamp | 1 + .../lp/155/jl/AndroidManifest.xml | 22 + .../navigation/navigation-common/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/155/jl/R.txt | 45 + .../lp/155/jl/baseline-prof.txt | 181 + .../net9.0-android/lp/155/jl/classes.jar | Bin 0 -> 280446 bytes .../net9.0-android/lp/155/jl/proguard.txt | 28 + .../Debug/net9.0-android/lp/155/jl/public.txt | 0 .../Debug/net9.0-android/lp/155/jl/res.zip | Bin 0 -> 492 bytes .../lp/155/jl/res/values/values.xml | 36 + .../obj/Debug/net9.0-android/lp/156.stamp | 1 + .../lp/156/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/156/jl/R.txt | 0 .../net9.0-android/lp/156/jl/classes.jar | Bin 0 -> 198 bytes .../Debug/net9.0-android/lp/156/jl/public.txt | 0 .../Debug/net9.0-android/lp/156/jl/res.zip | Bin 0 -> 204 bytes .../lp/156/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/157.stamp | 1 + .../lp/157/jl/AndroidManifest.xml | 22 + .../navigation/navigation-runtime/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/157/jl/R.txt | 17 + .../lp/157/jl/baseline-prof.txt | 106 + .../net9.0-android/lp/157/jl/classes.jar | Bin 0 -> 135860 bytes .../Debug/net9.0-android/lp/157/jl/public.txt | 0 .../Debug/net9.0-android/lp/157/jl/res.zip | Bin 0 -> 381 bytes .../lp/157/jl/res/values/values.xml | 17 + .../obj/Debug/net9.0-android/lp/158.stamp | 1 + .../lp/158/jl/AndroidManifest.xml | 22 + .../navigation/navigation-ui/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/158/jl/R.txt | 12 + .../net9.0-android/lp/158/jl/classes.jar | Bin 0 -> 45566 bytes .../net9.0-android/lp/158/jl/proguard.txt | 18 + .../Debug/net9.0-android/lp/158/jl/public.txt | 8 + .../Debug/net9.0-android/lp/158/jl/res.zip | Bin 0 -> 35216 bytes .../jl/res/anim/nav_default_enter_anim.xml | 22 + .../158/jl/res/anim/nav_default_exit_anim.xml | 22 + .../res/anim/nav_default_pop_enter_anim.xml | 22 + .../jl/res/anim/nav_default_pop_exit_anim.xml | 22 + .../res/animator/nav_default_enter_anim.xml | 23 + .../jl/res/animator/nav_default_exit_anim.xml | 23 + .../animator/nav_default_pop_enter_anim.xml | 23 + .../animator/nav_default_pop_exit_anim.xml | 23 + .../lp/158/jl/res/values-af/values-af.xml | 5 + .../lp/158/jl/res/values-am/values-am.xml | 5 + .../lp/158/jl/res/values-ar/values-ar.xml | 5 + .../lp/158/jl/res/values-as/values-as.xml | 5 + .../lp/158/jl/res/values-az/values-az.xml | 5 + .../res/values-b+sr+Latn/values-b+sr+Latn.xml | 5 + .../lp/158/jl/res/values-be/values-be.xml | 5 + .../lp/158/jl/res/values-bg/values-bg.xml | 5 + .../lp/158/jl/res/values-bn/values-bn.xml | 5 + .../lp/158/jl/res/values-bs/values-bs.xml | 5 + .../lp/158/jl/res/values-ca/values-ca.xml | 5 + .../lp/158/jl/res/values-cs/values-cs.xml | 5 + .../lp/158/jl/res/values-da/values-da.xml | 5 + .../lp/158/jl/res/values-de/values-de.xml | 5 + .../lp/158/jl/res/values-el/values-el.xml | 5 + .../jl/res/values-en-rAU/values-en-rAU.xml | 5 + .../jl/res/values-en-rGB/values-en-rGB.xml | 5 + .../jl/res/values-en-rIN/values-en-rIN.xml | 5 + .../jl/res/values-es-rUS/values-es-rUS.xml | 5 + .../lp/158/jl/res/values-es/values-es.xml | 5 + .../lp/158/jl/res/values-et/values-et.xml | 5 + .../lp/158/jl/res/values-eu/values-eu.xml | 5 + .../lp/158/jl/res/values-fa/values-fa.xml | 5 + .../lp/158/jl/res/values-fi/values-fi.xml | 5 + .../jl/res/values-fr-rCA/values-fr-rCA.xml | 5 + .../lp/158/jl/res/values-fr/values-fr.xml | 5 + .../lp/158/jl/res/values-gl/values-gl.xml | 5 + .../lp/158/jl/res/values-gu/values-gu.xml | 5 + .../lp/158/jl/res/values-hi/values-hi.xml | 5 + .../lp/158/jl/res/values-hr/values-hr.xml | 5 + .../lp/158/jl/res/values-hu/values-hu.xml | 5 + .../lp/158/jl/res/values-hy/values-hy.xml | 5 + .../lp/158/jl/res/values-in/values-in.xml | 5 + .../lp/158/jl/res/values-is/values-is.xml | 5 + .../lp/158/jl/res/values-it/values-it.xml | 5 + .../lp/158/jl/res/values-iw/values-iw.xml | 5 + .../lp/158/jl/res/values-ja/values-ja.xml | 5 + .../lp/158/jl/res/values-ka/values-ka.xml | 5 + .../lp/158/jl/res/values-kk/values-kk.xml | 5 + .../lp/158/jl/res/values-km/values-km.xml | 5 + .../lp/158/jl/res/values-kn/values-kn.xml | 5 + .../lp/158/jl/res/values-ko/values-ko.xml | 5 + .../lp/158/jl/res/values-ky/values-ky.xml | 5 + .../lp/158/jl/res/values-lo/values-lo.xml | 5 + .../lp/158/jl/res/values-lt/values-lt.xml | 5 + .../lp/158/jl/res/values-lv/values-lv.xml | 5 + .../lp/158/jl/res/values-mk/values-mk.xml | 5 + .../lp/158/jl/res/values-ml/values-ml.xml | 5 + .../lp/158/jl/res/values-mn/values-mn.xml | 5 + .../lp/158/jl/res/values-mr/values-mr.xml | 5 + .../lp/158/jl/res/values-ms/values-ms.xml | 5 + .../lp/158/jl/res/values-my/values-my.xml | 5 + .../lp/158/jl/res/values-nb/values-nb.xml | 5 + .../lp/158/jl/res/values-ne/values-ne.xml | 5 + .../lp/158/jl/res/values-nl/values-nl.xml | 5 + .../lp/158/jl/res/values-or/values-or.xml | 5 + .../lp/158/jl/res/values-pa/values-pa.xml | 5 + .../lp/158/jl/res/values-pl/values-pl.xml | 5 + .../jl/res/values-pt-rBR/values-pt-rBR.xml | 5 + .../jl/res/values-pt-rPT/values-pt-rPT.xml | 5 + .../lp/158/jl/res/values-pt/values-pt.xml | 5 + .../lp/158/jl/res/values-ro/values-ro.xml | 5 + .../lp/158/jl/res/values-ru/values-ru.xml | 5 + .../lp/158/jl/res/values-si/values-si.xml | 5 + .../lp/158/jl/res/values-sk/values-sk.xml | 5 + .../lp/158/jl/res/values-sl/values-sl.xml | 5 + .../lp/158/jl/res/values-sq/values-sq.xml | 5 + .../lp/158/jl/res/values-sr/values-sr.xml | 5 + .../lp/158/jl/res/values-sv/values-sv.xml | 5 + .../lp/158/jl/res/values-sw/values-sw.xml | 5 + .../lp/158/jl/res/values-ta/values-ta.xml | 5 + .../lp/158/jl/res/values-te/values-te.xml | 5 + .../lp/158/jl/res/values-th/values-th.xml | 5 + .../lp/158/jl/res/values-tl/values-tl.xml | 5 + .../lp/158/jl/res/values-tr/values-tr.xml | 5 + .../lp/158/jl/res/values-uk/values-uk.xml | 5 + .../lp/158/jl/res/values-ur/values-ur.xml | 5 + .../lp/158/jl/res/values-uz/values-uz.xml | 5 + .../lp/158/jl/res/values-vi/values-vi.xml | 5 + .../jl/res/values-zh-rCN/values-zh-rCN.xml | 5 + .../jl/res/values-zh-rHK/values-zh-rHK.xml | 5 + .../jl/res/values-zh-rTW/values-zh-rTW.xml | 5 + .../lp/158/jl/res/values-zu/values-zu.xml | 5 + .../lp/158/jl/res/values/values.xml | 7 + .../obj/Debug/net9.0-android/lp/159.stamp | 1 + .../lp/159/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/159/jl/R.txt | 0 .../net9.0-android/lp/159/jl/classes.jar | Bin 0 -> 230 bytes .../Debug/net9.0-android/lp/159/jl/public.txt | 0 .../Debug/net9.0-android/lp/159/jl/res.zip | Bin 0 -> 204 bytes .../lp/159/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/160.stamp | 1 + .../lp/160/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/160/jl/R.txt | 0 .../net9.0-android/lp/160/jl/classes.jar | Bin 0 -> 30934 bytes .../Debug/net9.0-android/lp/160/jl/public.txt | 0 .../Debug/net9.0-android/lp/160/jl/res.zip | Bin 0 -> 204 bytes .../lp/160/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/161.stamp | 1 + .../lp/161/jl/AndroidManifest.xml | 22 + .../navigation-fragment/LICENSE.txt | 178 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/161/jl/R.txt | 11 + .../lp/161/jl/baseline-prof.txt | 52 + .../net9.0-android/lp/161/jl/classes.jar | Bin 0 -> 99269 bytes .../Debug/net9.0-android/lp/161/jl/public.txt | 0 .../Debug/net9.0-android/lp/161/jl/res.zip | Bin 0 -> 388 bytes .../lp/161/jl/res/values/values.xml | 16 + .../obj/Debug/net9.0-android/lp/162.stamp | 1 + .../lp/162/jl/AndroidManifest.xml | 30 + .../build/gradle/aar-metadata.properties | 3 + .../obj/Debug/net9.0-android/lp/162/jl/R.txt | 37 + .../v4/media/MediaDescriptionCompat.aidl | 18 + .../support/v4/media/MediaMetadataCompat.aidl | 18 + .../support/v4/media/RatingCompat.aidl | 18 + .../v4/media/session/MediaSessionCompat.aidl | 20 + .../media/session/ParcelableVolumeInfo.aidl | 18 + .../v4/media/session/PlaybackStateCompat.aidl | 18 + .../net9.0-android/lp/162/jl/annotations.zip | Bin 0 -> 4464 bytes .../net9.0-android/lp/162/jl/classes.jar | Bin 0 -> 354867 bytes .../net9.0-android/lp/162/jl/proguard.txt | 23 + .../Debug/net9.0-android/lp/162/jl/public.txt | 5 + .../Debug/net9.0-android/lp/162/jl/res.zip | Bin 0 -> 11032 bytes .../res/layout/notification_media_action.xml | 25 + .../notification_media_cancel_action.xml | 29 + .../notification_template_big_media.xml | 60 + ...notification_template_big_media_custom.xml | 107 + ...notification_template_big_media_narrow.xml | 68 + ...ation_template_big_media_narrow_custom.xml | 115 + .../notification_template_lines_media.xml | 112 + .../layout/notification_template_media.xml | 51 + .../notification_template_media_custom.xml | 100 + .../lp/162/jl/res/values-v21/values-v21.xml | 15 + .../lp/162/jl/res/values-v24/values-v24.xml | 7 + .../lp/162/jl/res/values/values.xml | 13 + .../obj/Debug/net9.0-android/lp/163.stamp | 1 + .../lp/163/jl/AndroidManifest.xml | 22 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/163/jl/R.txt | 0 .../lp/163/jl/baseline-prof.txt | 25 + .../net9.0-android/lp/163/jl/classes.jar | Bin 0 -> 61029 bytes .../Debug/net9.0-android/lp/163/jl/public.txt | 0 .../Debug/net9.0-android/lp/163/jl/res.zip | Bin 0 -> 204 bytes .../lp/163/jl/res/values/values.xml | 3 + .../obj/Debug/net9.0-android/lp/164.stamp | 1 + .../lp/164/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/164/jl/R.txt | 131 + .../net9.0-android/lp/164/jl/classes.jar | Bin 0 -> 6879 bytes .../obj/Debug/net9.0-android/lp/165.stamp | 1 + .../lp/165/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/165/jl/R.txt | 159 + .../net9.0-android/lp/165/jl/classes.jar | Bin 0 -> 9867 bytes .../obj/Debug/net9.0-android/lp/166.stamp | 1 + .../lp/166/jl/AndroidManifest.xml | 22 + .../obj/Debug/net9.0-android/lp/166/jl/R.txt | 186 + .../net9.0-android/lp/166/jl/classes.jar | Bin 0 -> 238 bytes .../obj/Debug/net9.0-android/lp/167.stamp | 1 + .../lp/167/jl/AndroidManifest.xml | 24 + .../build/gradle/aar-metadata.properties | 2 + .../obj/Debug/net9.0-android/lp/167/jl/R.txt | 0 .../net9.0-android/lp/167/jl/annotations.zip | Bin 0 -> 712 bytes .../net9.0-android/lp/167/jl/classes.jar | Bin 0 -> 64486 bytes .../obj/Debug/net9.0-android/lp/168.stamp | 1 + .../lp/168/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 6 + .../obj/Debug/net9.0-android/lp/168/jl/R.txt | 18 + .../net9.0-android/lp/168/jl/annotations.zip | Bin 0 -> 3175 bytes .../net9.0-android/lp/168/jl/classes.jar | Bin 0 -> 197172 bytes .../Debug/net9.0-android/lp/168/jl/public.txt | 0 .../Debug/net9.0-android/lp/168/jl/res.zip | Bin 0 -> 39718 bytes .../browser_actions_context_menu_page.xml | 53 + .../browser_actions_context_menu_row.xml | 43 + .../lp/168/jl/res/values-af/values-af.xml | 7 + .../lp/168/jl/res/values-am/values-am.xml | 7 + .../lp/168/jl/res/values-ar/values-ar.xml | 7 + .../lp/168/jl/res/values-as/values-as.xml | 7 + .../lp/168/jl/res/values-az/values-az.xml | 7 + .../res/values-b+sr+Latn/values-b+sr+Latn.xml | 7 + .../lp/168/jl/res/values-be/values-be.xml | 7 + .../lp/168/jl/res/values-bg/values-bg.xml | 7 + .../lp/168/jl/res/values-bn/values-bn.xml | 7 + .../lp/168/jl/res/values-bs/values-bs.xml | 7 + .../lp/168/jl/res/values-ca/values-ca.xml | 7 + .../lp/168/jl/res/values-cs/values-cs.xml | 7 + .../lp/168/jl/res/values-da/values-da.xml | 7 + .../lp/168/jl/res/values-de/values-de.xml | 7 + .../lp/168/jl/res/values-el/values-el.xml | 7 + .../jl/res/values-en-rAU/values-en-rAU.xml | 7 + .../jl/res/values-en-rCA/values-en-rCA.xml | 7 + .../jl/res/values-en-rGB/values-en-rGB.xml | 7 + .../jl/res/values-en-rIN/values-en-rIN.xml | 7 + .../jl/res/values-en-rXC/values-en-rXC.xml | 7 + .../jl/res/values-es-rUS/values-es-rUS.xml | 7 + .../lp/168/jl/res/values-es/values-es.xml | 7 + .../lp/168/jl/res/values-et/values-et.xml | 7 + .../lp/168/jl/res/values-eu/values-eu.xml | 7 + .../lp/168/jl/res/values-fa/values-fa.xml | 7 + .../lp/168/jl/res/values-fi/values-fi.xml | 7 + .../jl/res/values-fr-rCA/values-fr-rCA.xml | 7 + .../lp/168/jl/res/values-fr/values-fr.xml | 7 + .../lp/168/jl/res/values-gl/values-gl.xml | 7 + .../lp/168/jl/res/values-gu/values-gu.xml | 7 + .../lp/168/jl/res/values-hi/values-hi.xml | 7 + .../lp/168/jl/res/values-hr/values-hr.xml | 7 + .../lp/168/jl/res/values-hu/values-hu.xml | 7 + .../lp/168/jl/res/values-hy/values-hy.xml | 7 + .../lp/168/jl/res/values-in/values-in.xml | 7 + .../lp/168/jl/res/values-is/values-is.xml | 7 + .../lp/168/jl/res/values-it/values-it.xml | 7 + .../lp/168/jl/res/values-iw/values-iw.xml | 7 + .../lp/168/jl/res/values-ja/values-ja.xml | 7 + .../lp/168/jl/res/values-ka/values-ka.xml | 7 + .../lp/168/jl/res/values-kk/values-kk.xml | 7 + .../lp/168/jl/res/values-km/values-km.xml | 7 + .../lp/168/jl/res/values-kn/values-kn.xml | 7 + .../lp/168/jl/res/values-ko/values-ko.xml | 7 + .../lp/168/jl/res/values-ky/values-ky.xml | 7 + .../lp/168/jl/res/values-lo/values-lo.xml | 7 + .../lp/168/jl/res/values-lt/values-lt.xml | 7 + .../lp/168/jl/res/values-lv/values-lv.xml | 7 + .../lp/168/jl/res/values-mk/values-mk.xml | 7 + .../lp/168/jl/res/values-ml/values-ml.xml | 7 + .../lp/168/jl/res/values-mn/values-mn.xml | 7 + .../lp/168/jl/res/values-mr/values-mr.xml | 7 + .../lp/168/jl/res/values-ms/values-ms.xml | 7 + .../lp/168/jl/res/values-my/values-my.xml | 7 + .../lp/168/jl/res/values-nb/values-nb.xml | 7 + .../lp/168/jl/res/values-ne/values-ne.xml | 7 + .../lp/168/jl/res/values-nl/values-nl.xml | 7 + .../lp/168/jl/res/values-or/values-or.xml | 7 + .../lp/168/jl/res/values-pa/values-pa.xml | 7 + .../lp/168/jl/res/values-pl/values-pl.xml | 7 + .../jl/res/values-pt-rBR/values-pt-rBR.xml | 7 + .../jl/res/values-pt-rPT/values-pt-rPT.xml | 7 + .../lp/168/jl/res/values-pt/values-pt.xml | 7 + .../lp/168/jl/res/values-ro/values-ro.xml | 7 + .../lp/168/jl/res/values-ru/values-ru.xml | 7 + .../lp/168/jl/res/values-si/values-si.xml | 7 + .../lp/168/jl/res/values-sk/values-sk.xml | 7 + .../lp/168/jl/res/values-sl/values-sl.xml | 7 + .../lp/168/jl/res/values-sq/values-sq.xml | 7 + .../lp/168/jl/res/values-sr/values-sr.xml | 7 + .../lp/168/jl/res/values-sv/values-sv.xml | 7 + .../lp/168/jl/res/values-sw/values-sw.xml | 7 + .../lp/168/jl/res/values-ta/values-ta.xml | 7 + .../lp/168/jl/res/values-te/values-te.xml | 7 + .../lp/168/jl/res/values-th/values-th.xml | 7 + .../lp/168/jl/res/values-tl/values-tl.xml | 7 + .../lp/168/jl/res/values-tr/values-tr.xml | 7 + .../lp/168/jl/res/values-uk/values-uk.xml | 7 + .../lp/168/jl/res/values-ur/values-ur.xml | 7 + .../lp/168/jl/res/values-uz/values-uz.xml | 7 + .../lp/168/jl/res/values-vi/values-vi.xml | 7 + .../jl/res/values-zh-rCN/values-zh-rCN.xml | 7 + .../jl/res/values-zh-rHK/values-zh-rHK.xml | 7 + .../jl/res/values-zh-rTW/values-zh-rTW.xml | 7 + .../lp/168/jl/res/values-zu/values-zu.xml | 7 + .../lp/168/jl/res/values/values.xml | 13 + .../168/jl/res/xml/image_share_filepaths.xml | 19 + .../obj/Debug/net9.0-android/lp/169.stamp | 1 + .../lp/169/jl/AndroidManifest.xml | 9 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/169/jl/R.txt | 0 .../net9.0-android/lp/169/jl/annotations.zip | Bin 0 -> 603 bytes .../net9.0-android/lp/169/jl/classes.jar | Bin 0 -> 17833 bytes .../obj/Debug/net9.0-android/lp/170.stamp | 1 + .../lp/170/jl/AndroidManifest.xml | 9 + .../build/gradle/aar-metadata.properties | 4 + .../obj/Debug/net9.0-android/lp/170/jl/R.txt | 1683 + .../net9.0-android/lp/170/jl/classes.jar | Bin 0 -> 784201 bytes .../net9.0-android/lp/170/jl/proguard.txt | 14 + .../Debug/net9.0-android/lp/170/jl/res.zip | Bin 0 -> 253 bytes .../lp/170/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/171.stamp | 1 + .../lp/171/jl/libs/ED64959F88B22E6D.jar | Bin 0 -> 298435 bytes .../obj/Debug/net9.0-android/lp/172.stamp | 1 + .../lp/172/jl/libs/2E7FD15AFA9B216B.jar | Bin 0 -> 19936 bytes .../obj/Debug/net9.0-android/lp/173.stamp | 1 + .../lp/173/jl/.net/__res_name_case_map.txt | 12 + .../Debug/net9.0-android/lp/173/jl/res.zip | Bin 0 -> 2100 bytes .../lp/173/jl/res/anim/enterfromleft.xml | 1 + .../lp/173/jl/res/anim/enterfromright.xml | 1 + .../lp/173/jl/res/anim/exittoleft.xml | 1 + .../lp/173/jl/res/anim/exittoright.xml | 1 + .../lp/173/jl/res/layout/flyoutcontent.xml | 1 + .../lp/173/jl/res/layout/shellcontent.xml | 1 + .../lp/173/jl/res/values/strings.xml | 1 + .../obj/Debug/net9.0-android/lp/174.stamp | 1 + .../lp/174/jl/AndroidManifest.xml | 7 + .../build/gradle/aar-metadata.properties | 5 + .../obj/Debug/net9.0-android/lp/174/jl/R.txt | 6738 ++++ .../net9.0-android/lp/174/jl/classes.jar | Bin 0 -> 52925 bytes .../Debug/net9.0-android/lp/174/jl/res.zip | Bin 0 -> 238 bytes .../lp/174/jl/res/values/values.xml | 4 + .../obj/Debug/net9.0-android/lp/175.stamp | 1 + .../lp/175/jl/.net/__res_name_case_map.txt | 30 + .../Debug/net9.0-android/lp/175/jl/res.zip | Bin 0 -> 5917 bytes .../jl/res/anim/nav_default_enter_anim.xml | 1 + .../175/jl/res/anim/nav_default_exit_anim.xml | 1 + .../res/anim/nav_default_pop_enter_anim.xml | 1 + .../jl/res/anim/nav_default_pop_exit_anim.xml | 1 + .../res/anim/nav_modal_default_enter_anim.xml | 1 + .../res/anim/nav_modal_default_exit_anim.xml | 1 + .../lp/175/jl/res/drawable/maui_splash.xml | 1 + .../175/jl/res/drawable/maui_splash_image.xml | 1 + .../lp/175/jl/res/layout/drawer_layout.xml | 1 + .../175/jl/res/layout/fragment_backstack.xml | 1 + .../lp/175/jl/res/layout/navigationlayout.xml | 1 + .../lp/175/jl/res/values-v35/styles.xml | 1 + .../lp/175/jl/res/values/attr.xml | 4 + .../lp/175/jl/res/values/colors.xml | 1 + .../lp/175/jl/res/values/styles.xml | 13 + .../obj/Debug/net9.0-android/lp/176.stamp | 1 + .../lp/176/jl/.net/__res_name_case_map.txt | 1 + .../Debug/net9.0-android/lp/176/jl/res.zip | Bin 0 -> 303 bytes ...aui_essentials_fileprovider_file_paths.xml | 1 + .../obj/Debug/net9.0-android/lp/177.stamp | 1 + .../lp/177/jl/libs/F975D0960055A5E3.jar | Bin 0 -> 2677754 bytes .../obj/Debug/net9.0-android/lp/178.stamp | 1 + .../lp/178/jl/libs/B71CFF5D5A0B3AEB.jar | Bin 0 -> 19367 bytes .../obj/Debug/net9.0-android/lp/map.cache | 179 + .../obj/Debug/net9.0-android/mauifont.inputs | 3 + .../obj/Debug/net9.0-android/mauifont.stamp | 0 .../obj/Debug/net9.0-android/mauiimage.inputs | 2 + .../Debug/net9.0-android/mauiimage.outputs | 27 + .../obj/Debug/net9.0-android/mauiimage.stamp | 0 .../Debug/net9.0-android/mauisplash.inputs | 1 + .../obj/Debug/net9.0-android/mauisplash.stamp | 0 .../obj/Debug/net9.0-android/res.flag | 0 .../net9.0-android/res/values/colors.xml | 6 + .../net9.0-android/resizetizer/f/FluentUI.cs | 7921 ++++ .../resizetizer/f/OpenSans-Regular.ttf | Bin 0 -> 107280 bytes .../resizetizer/f/OpenSans-Semibold.ttf | Bin 0 -> 111164 bytes .../r/drawable-hdpi/dotnet_bot.png | Bin 0 -> 97244 bytes .../r/drawable-mdpi/dotnet_bot.png | Bin 0 -> 47286 bytes .../r/drawable-xhdpi/dotnet_bot.png | Bin 0 -> 141983 bytes .../r/drawable-xxhdpi/dotnet_bot.png | Bin 0 -> 391083 bytes .../r/drawable-xxxhdpi/dotnet_bot.png | Bin 0 -> 307877 bytes .../r/mipmap-anydpi-v26/appicon.xml | 6 + .../r/mipmap-anydpi-v26/appicon_round.xml | 6 + .../resizetizer/r/mipmap-hdpi/appicon.png | Bin 0 -> 1151 bytes .../r/mipmap-hdpi/appicon_background.png | Bin 0 -> 532 bytes .../r/mipmap-hdpi/appicon_foreground.png | Bin 0 -> 1517 bytes .../r/mipmap-hdpi/appicon_round.png | Bin 0 -> 2440 bytes .../resizetizer/r/mipmap-mdpi/appicon.png | Bin 0 -> 868 bytes .../r/mipmap-mdpi/appicon_background.png | Bin 0 -> 352 bytes .../r/mipmap-mdpi/appicon_foreground.png | Bin 0 -> 1282 bytes .../r/mipmap-mdpi/appicon_round.png | Bin 0 -> 1682 bytes .../resizetizer/r/mipmap-xhdpi/appicon.png | Bin 0 -> 1471 bytes .../r/mipmap-xhdpi/appicon_background.png | Bin 0 -> 702 bytes .../r/mipmap-xhdpi/appicon_foreground.png | Bin 0 -> 2161 bytes .../r/mipmap-xhdpi/appicon_round.png | Bin 0 -> 3173 bytes .../resizetizer/r/mipmap-xxhdpi/appicon.png | Bin 0 -> 1915 bytes .../r/mipmap-xxhdpi/appicon_background.png | Bin 0 -> 1040 bytes .../r/mipmap-xxhdpi/appicon_foreground.png | Bin 0 -> 2609 bytes .../r/mipmap-xxhdpi/appicon_round.png | Bin 0 -> 4523 bytes .../resizetizer/r/mipmap-xxxhdpi/appicon.png | Bin 0 -> 2561 bytes .../r/mipmap-xxxhdpi/appicon_background.png | Bin 0 -> 1728 bytes .../r/mipmap-xxxhdpi/appicon_foreground.png | Bin 0 -> 4344 bytes .../r/mipmap-xxxhdpi/appicon_round.png | Bin 0 -> 6241 bytes .../resizetizer/sp/drawable-hdpi/splash.png | Bin 0 -> 2561 bytes .../resizetizer/sp/drawable-mdpi/splash.png | Bin 0 -> 1548 bytes .../sp/drawable-v31/maui_splash_image.xml | 7 + .../resizetizer/sp/drawable-xhdpi/splash.png | Bin 0 -> 2725 bytes .../resizetizer/sp/drawable-xxhdpi/splash.png | Bin 0 -> 4723 bytes .../sp/drawable-xxxhdpi/splash.png | Bin 0 -> 5428 bytes .../sp/drawable/maui_splash_image.xml | 7 + .../resizetizer/sp/values/maui_colors.xml | 5 + ...CoreApp,Version=v9.0.AssemblyAttributes.cs | 4 + .../Maui_ChartTooltip.AssemblyInfo.cs | 25 + ...Maui_ChartTooltip.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 49 + .../Maui_ChartTooltip.GlobalUsings.g.cs | 26 + .../Maui_ChartTooltip.assets.cache | Bin 0 -> 27452 bytes ...hartTooltip.csproj.AssemblyReference.cache | Bin 0 -> 12029 bytes .../Maui_ChartTooltip.nfloat.g.cs | 3 + ...CoreApp,Version=v9.0.AssemblyAttributes.cs | 4 + .../Maui_ChartTooltip.AssemblyInfo.cs | 25 + ...Maui_ChartTooltip.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 49 + .../Maui_ChartTooltip.GlobalUsings.g.cs | 26 + .../Maui_ChartTooltip.assets.cache | Bin 0 -> 28280 bytes ...hartTooltip.csproj.AssemblyReference.cache | Bin 0 -> 12145 bytes .../Maui_ChartTooltip.nfloat.g.cs | 3 + ...CoreApp,Version=v9.0.AssemblyAttributes.cs | 4 + .../Maui_ChartTooltip.AssemblyInfo.cs | 25 + ...Maui_ChartTooltip.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../Maui_ChartTooltip.GlobalUsings.g.cs | 26 + .../win10-x64/Maui_ChartTooltip.assets.cache | Bin 0 -> 44910 bytes ...hartTooltip.csproj.AssemblyReference.cache | Bin 0 -> 27329 bytes ...Maui_ChartTooltip.csproj.nuget.dgspec.json | 261 + .../Maui_ChartTooltip.csproj.nuget.g.props | 56 + .../Maui_ChartTooltip.csproj.nuget.g.targets | 127 + .../Maui_ChartTooltip/obj/project.assets.json | 30614 ++++++++++++++++ .../Maui_ChartTooltip/obj/project.nuget.cache | 173 + 2014 files changed, 132225 insertions(+) create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/App.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Info.plist create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_BuildLibraryImportsCache.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_ResolveLibraryProjectImports.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-v21/notification_action_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg_low.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_icon_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_tile_bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action_tombstone.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_custom_big.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_icon_group.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/custom_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/ime_base_split_test_activity.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/ime_secondary_split_test_activity.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_action.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_action_tombstone.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_template_custom_big.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_template_icon_group.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_template_part_chronometer.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/notification_template_part_time.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-af/values-af.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-am/values-am.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ar/values-ar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-as/values-as.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-az/values-az.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-be/values-be.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-bg/values-bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-bn/values-bn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-bs/values-bs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ca/values-ca.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-cs/values-cs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-da/values-da.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-de/values-de.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-el/values-el.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-en-rAU/values-en-rAU.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-en-rCA/values-en-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-en-rGB/values-en-rGB.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-en-rIN/values-en-rIN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-en-rXC/values-en-rXC.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-es-rUS/values-es-rUS.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-es/values-es.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-et/values-et.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-eu/values-eu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-fa/values-fa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-fi/values-fi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-fr-rCA/values-fr-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-fr/values-fr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-gl/values-gl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-gu/values-gu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-hi/values-hi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-hr/values-hr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-hu/values-hu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-hy/values-hy.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-in/values-in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-is/values-is.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-it/values-it.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-iw/values-iw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ja/values-ja.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ka/values-ka.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-kk/values-kk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-km/values-km.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-kn/values-kn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ko/values-ko.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ky/values-ky.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-lo/values-lo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-lt/values-lt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-lv/values-lv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-mk/values-mk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ml/values-ml.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-mn/values-mn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-mr/values-mr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ms/values-ms.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-my/values-my.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-nb/values-nb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ne/values-ne.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-nl/values-nl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-or/values-or.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-pa/values-pa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-pl/values-pl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-pt-rBR/values-pt-rBR.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-pt-rPT/values-pt-rPT.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-pt/values-pt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ro/values-ro.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ru/values-ru.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-si/values-si.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sk/values-sk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sl/values-sl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sq/values-sq.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sr/values-sr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sv/values-sv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-sw/values-sw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ta/values-ta.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-te/values-te.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-th/values-th.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-tl/values-tl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-tr/values-tr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-uk/values-uk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-ur/values-ur.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-uz/values-uz.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-v21/values-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-vi/values-vi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-zh-rCN/values-zh-rCN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-zh-rHK/values-zh-rHK.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-zh-rTW/values-zh-rTW.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values-zu/values-zu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/113.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/113/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/113/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/113/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/114.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/114/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/114/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/114/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/115/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/116/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/117/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/118/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/119/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/120.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/120/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/121/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/122.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/122/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/122/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/122/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/123/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/124/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/anim-v21/fragment_fast_out_extra_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_close_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_close_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_fade_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_fade_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_open_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/animator/fragment_open_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/125/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/126/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/127/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/128/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/129.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/129/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/129/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/129/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/129/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/130/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/131.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/131/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/131/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/131/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/132.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/132/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/132/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/132/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/133.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/133/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/133/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/133/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/134/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/135/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/META-INF/androidx/emoji2/emoji2/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/libs/repackaged.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/136/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/META-INF/androidx/emoji2/emoji2-views-helper/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/137/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/138/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/139.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/139/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/139/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/139/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/140/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/res/drawable/abc_vector_test.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/141/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_fade_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_fade_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_grow_fade_in_from_bottom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_popup_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_popup_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_shrink_fade_out_from_bottom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_slide_in_bottom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_slide_in_top.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_slide_out_bottom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_slide_out_top.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_tooltip_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/abc_tooltip_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_checked_icon_null_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v21/abc_btn_colored_borderless_text_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_btn_colored_borderless_text_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_btn_colored_text_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_color_highlight_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_btn_checkable.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_default.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_edittext.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_seek_thumb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_spinner.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color-v23/abc_tint_switch_track.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_background_cache_hint_selector_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_background_cache_hint_selector_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_btn_colored_text_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_hint_foreground_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_hint_foreground_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_primary_text_disable_only_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_primary_text_disable_only_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_primary_text_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_primary_text_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_search_url_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_secondary_text_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_secondary_text_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_btn_checkable.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_default.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_edittext.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_seek_thumb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_spinner.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/abc_tint_switch_track.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/switch_thumb_material_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/color/switch_thumb_material_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_focused_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_focused_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v21/abc_action_bar_item_background_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v21/abc_btn_colored_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v21/abc_dialog_material_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v21/abc_edit_text_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v21/abc_list_divider_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-v23/abc_control_background_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-watch-v20/abc_dialog_material_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_borderless_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_check_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_check_material_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_default_mtrl_shape.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_radio_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_btn_radio_material_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_cab_background_internal_bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_cab_background_top_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_ab_back_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_clear_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_go_search_api_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_overflow_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_menu_share_mtrl_alpha.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_search_api_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ic_voice_search_api_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_item_background_holo_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_item_background_holo_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_list_selector_background_transition_holo_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_list_selector_background_transition_holo_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_list_selector_holo_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_list_selector_holo_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ratingbar_indicator_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ratingbar_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_ratingbar_small_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_seekbar_thumb_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_seekbar_tick_mark_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_seekbar_track_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_spinner_textfield_background_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_star_black_48dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_star_half_black_48dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_switch_thumb_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_tab_indicator_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_text_cursor_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/abc_textfield_search_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_checkbox_checked_mtrl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_checkbox_unchecked_mtrl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_radio_off_mtrl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_radio_off_to_on_mtrl_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_radio_on_mtrl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/btn_radio_on_to_off_mtrl_animation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/test_level_drawable.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/tooltip_frame_dark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/drawable/tooltip_frame_light.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/interpolator/fast_out_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout-v26/abc_screen_toolbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout-watch-v20/abc_alert_dialog_title_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_bar_title_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_bar_up_container.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_menu_item_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_menu_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_mode_bar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_action_mode_close_item_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_activity_chooser_view.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_activity_chooser_view_list_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_alert_dialog_button_bar_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_alert_dialog_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_alert_dialog_title_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_cascading_menu_item_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_dialog_title_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_expanded_menu_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_list_menu_item_checkbox.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_list_menu_item_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_list_menu_item_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_list_menu_item_radio.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_popup_menu_header_item_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_popup_menu_item_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_screen_content_include.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_screen_simple.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_screen_simple_overlay_action_mode.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_screen_toolbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_search_dropdown_item_icons_2line.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_search_view.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_select_dialog_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/abc_tooltip.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/select_dialog_item_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/select_dialog_multichoice_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/select_dialog_singlechoice_material.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/layout/support_simple_spinner_dropdown_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-af/values-af.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-am/values-am.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ar/values-ar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-as/values-as.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-az/values-az.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-be/values-be.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-bg/values-bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-bn/values-bn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-bs/values-bs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ca/values-ca.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-cs/values-cs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-da/values-da.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-de/values-de.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-el/values-el.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-en-rAU/values-en-rAU.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-en-rCA/values-en-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-en-rGB/values-en-rGB.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-en-rIN/values-en-rIN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-en-rXC/values-en-rXC.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-es-rUS/values-es-rUS.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-es/values-es.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-et/values-et.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-eu/values-eu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-fa/values-fa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-fi/values-fi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-fr-rCA/values-fr-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-fr/values-fr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-gl/values-gl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-gu/values-gu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-h720dp-v13/values-h720dp-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-hdpi-v4/values-hdpi-v4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-hi/values-hi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-hr/values-hr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-hu/values-hu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-hy/values-hy.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-in/values-in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-is/values-is.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-it/values-it.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-iw/values-iw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ja/values-ja.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ka/values-ka.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-kk/values-kk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-km/values-km.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-kn/values-kn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ko/values-ko.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ky/values-ky.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-land/values-land.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-large-v4/values-large-v4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ldltr-v21/values-ldltr-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-lo/values-lo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-lt/values-lt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-lv/values-lv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-mk/values-mk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ml/values-ml.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-mn/values-mn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-mr/values-mr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ms/values-ms.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-my/values-my.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-nb/values-nb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ne/values-ne.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-night-v8/values-night-v8.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-nl/values-nl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-or/values-or.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-pa/values-pa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-pl/values-pl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-port/values-port.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-pt-rBR/values-pt-rBR.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-pt-rPT/values-pt-rPT.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-pt/values-pt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ro/values-ro.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ru/values-ru.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-si/values-si.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sk/values-sk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sl/values-sl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sq/values-sq.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sr/values-sr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sv/values-sv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sw/values-sw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ta/values-ta.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-te/values-te.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-th/values-th.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-tl/values-tl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-tr/values-tr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-uk/values-uk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-ur/values-ur.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-uz/values-uz.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v16/values-v16.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v17/values-v17.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v18/values-v18.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v21/values-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v22/values-v22.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v23/values-v23.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v24/values-v24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v25/values-v25.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v26/values-v26.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-v28/values-v28.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-vi/values-vi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-watch-v20/values-watch-v20.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-watch-v21/values-watch-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-xlarge-v4/values-xlarge-v4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-zh-rCN/values-zh-rCN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-zh-rHK/values-zh-rHK.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-zh-rTW/values-zh-rTW.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values-zu/values-zu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/142/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/143/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/res/values-v23/values-v23.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/144/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/design_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/design_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_side_sheet_enter_from_left.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_side_sheet_enter_from_right.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_side_sheet_exit_to_left.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/m3_side_sheet_exit_to_right.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/mtrl_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim-v21/mtrl_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/design_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/design_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/design_snackbar_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/design_snackbar_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/linear_indeterminate_line1_head_interpolator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/linear_indeterminate_line1_tail_interpolator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/linear_indeterminate_line2_head_interpolator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/linear_indeterminate_line2_tail_interpolator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_motion_fade_enter.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_motion_fade_exit.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_side_sheet_enter_from_left.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_side_sheet_enter_from_right.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_side_sheet_exit_to_left.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/m3_side_sheet_exit_to_right.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/mtrl_bottom_sheet_slide_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/mtrl_bottom_sheet_slide_out.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/anim/mtrl_card_lowers_interpolator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator-v21/design_appbar_state_list_animator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator-v21/m3_appbar_state_list_animator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/design_fab_hide_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/design_fab_show_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_btn_elevated_btn_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_btn_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_card_elevated_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_card_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_chip_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_elevated_chip_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_extended_fab_change_size_expand_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_extended_fab_hide_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_extended_fab_show_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/m3_extended_fab_state_list_animator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_btn_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_btn_unelevated_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_card_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_chip_state_list_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_extended_fab_hide_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_extended_fab_show_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_extended_fab_state_list_animator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_fab_hide_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_fab_show_motion_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-night-v8/material_timepicker_button_stroke.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-night-v8/material_timepicker_clockface.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-night-v8/material_timepicker_modebutton_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_dark_default_color_primary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_dark_highlighted_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_dark_hint_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_default_color_primary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_default_color_secondary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_highlighted_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_hint_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_dynamic_primary_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral12.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral17.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral22.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral6.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral87.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral92.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral94.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral96.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral98.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant12.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant17.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant22.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant6.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant87.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant92.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant94.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant96.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color-v31/m3_ref_palette_dynamic_neutral_variant98.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/design_box_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/design_error.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/design_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_appbar_overlay_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_assist_chip_icon_tint_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_assist_chip_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_bottom_sheet_drag_handle_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_button_background_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_button_foreground_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_button_outline_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_button_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_button_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_calendar_item_disabled_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_calendar_item_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_card_foreground_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_card_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_card_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_checkbox_button_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_checkbox_button_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_chip_assist_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_chip_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_chip_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_chip_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_chip_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_dark_default_color_primary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_dark_default_color_secondary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_dark_highlighted_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_dark_hint_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_dark_primary_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_default_color_primary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_default_color_secondary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_efab_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_elevated_chip_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_fab_efab_background_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_fab_efab_foreground_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_fab_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_filled_icon_button_container_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_highlighted_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_hint_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_icon_button_icon_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_bar_item_with_indicator_label_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_bar_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_item_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_item_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_item_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_item_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_rail_item_with_indicator_label_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_navigation_rail_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_popupmenu_overlay_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_primary_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_radiobutton_button_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_radiobutton_ripple_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_selection_control_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_simple_item_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_slider_active_track_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_slider_halo_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_slider_inactive_track_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_slider_thumb_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_switch_thumb_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_switch_track_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_icon_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_icon_color_secondary.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_ripple_color_secondary.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tabs_text_color_secondary.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_text_button_background_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_text_button_foreground_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_text_button_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_textfield_filled_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_textfield_indicator_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_textfield_input_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_textfield_label_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_textfield_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_button_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_button_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_button_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_clock_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_display_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_display_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_display_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_secondary_text_button_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_secondary_text_button_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_timepicker_time_input_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/m3_tonal_button_ripple_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_cursor_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_divider_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_background_disabled.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_background_emphasis_high_type.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_background_emphasis_medium.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_primary_disabled.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_primary_emphasis_high_type.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_primary_emphasis_medium.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_surface_disabled.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_surface_emphasis_high_type.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_surface_emphasis_medium.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_on_surface_stroke.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized__highlighted_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized__highlighted_text_inverse.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_color_primary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_color_primary_text_inverse.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_color_secondary_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_color_secondary_text_inverse.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_hint_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_hint_foreground_inverse.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_primary_inverse_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_personalized_primary_text_disable_only.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_active_tick_marks_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_active_track_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_halo_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_inactive_tick_marks_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_inactive_track_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_slider_thumb_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_timepicker_button_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_timepicker_button_stroke.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_timepicker_clock_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_timepicker_clockface.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/material_timepicker_modebutton_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_bg_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_stroke_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_text_btn_bg_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_text_btn_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_btn_text_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_calendar_item_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_calendar_selected_range.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_card_view_foreground.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_card_view_ripple.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_chip_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_chip_close_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_chip_surface_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_chip_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_choice_chip_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_choice_chip_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_choice_chip_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_error.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_fab_bg_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_fab_icon_text_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_fab_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_filled_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_filled_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_filled_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_indicator_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_bar_colored_item_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_bar_colored_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_bar_item_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_bar_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_item_background_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_item_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_navigation_item_text_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_on_primary_text_btn_text_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_on_surface_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_outlined_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_outlined_stroke_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_popupmenu_overlay_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_switch_thumb_icon_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_switch_thumb_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_switch_track_decoration_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_switch_track_tint.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_tabs_colored_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_tabs_icon_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_tabs_icon_color_selector_colored.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_tabs_legacy_text_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_tabs_ripple_color.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/color/mtrl_text_btn_text_color_selector.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v21/m3_tabs_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v21/material_cursor_drawable.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v21/mtrl_navigation_bar_item_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v23/m3_radiobutton_ripple.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v23/m3_selection_control_ripple.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v23/m3_tabs_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v23/m3_tabs_transparent_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable-v23/mtrl_popupmenu_background_overlay.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/avd_hide_password.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/avd_show_password.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/design_fab_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/design_ic_visibility.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/design_ic_visibility_off.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/design_password_eye.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/design_snackbar_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_arrow_back_black_24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_clear_black_24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_clock_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_keyboard_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_m3_chip_check.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_m3_chip_checked_circle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_m3_chip_close.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_mtrl_checked_circle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_mtrl_chip_checked_black.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_mtrl_chip_checked_circle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_mtrl_chip_close_circle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/ic_search_black_24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_avd_hide_password.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_avd_show_password.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_bottom_sheet_drag_handle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_password_eye.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_popupmenu_background_overlay.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_tabs_line_indicator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/m3_tabs_rounded_line_indicator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_cursor_drawable.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_calendar_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_clear_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_edit_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_menu_arrow_down_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/material_ic_menu_arrow_up_black_24dp.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_bottomsheet_drag_handle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_checked_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_checkbox_button_unchecked_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_dialog_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_dropdown_arrow.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_arrow_drop_down.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_arrow_drop_up.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_cancel.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_check_mark.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_checkbox_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_checkbox_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_error.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_ic_indeterminate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_navigation_bar_item_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_popupmenu_background.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_popupmenu_background_overlay.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_checked_pressed.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_checked_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_pressed.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_pressed_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_pressed_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_unchecked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_unchecked_checked.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_thumb_unchecked_pressed.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_track.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_switch_track_decoration.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/mtrl_tabs_default_indicator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/drawable/navigation_empty_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_linear.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_standard.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/mtrl_fast_out_linear_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/mtrl_fast_out_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator-v21/mtrl_linear_out_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_emphasized.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_emphasized_accelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_emphasized_decelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_linear.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_standard.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_standard_accelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/m3_sys_motion_easing_standard_decelerate.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/mtrl_fast_out_linear_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/mtrl_fast_out_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/mtrl_linear.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/interpolator/mtrl_linear_out_slow_in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-land/material_clock_period_toggle_land.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-land/material_timepicker.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-land/mtrl_picker_header_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-sw600dp-v13/design_layout_snackbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout-v26/mtrl_calendar_month.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_bottom_navigation_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_bottom_sheet_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_layout_snackbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_layout_snackbar_include.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_layout_tab_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_layout_tab_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_menu_item_action_area.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_item_header.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_item_separator.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_item_subheader.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_menu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_navigation_menu_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_text_input_end_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/design_text_input_start_icon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/m3_alert_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/m3_alert_dialog_actions.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/m3_alert_dialog_title.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/m3_auto_complete_simple_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/m3_side_sheet_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_chip_input_combo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_clock_display.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_clock_display_divider.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_clock_period_toggle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_clockface_textview.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_clockface_view.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_radial_view_group.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_textinput_timepicker.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_time_chip.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_time_input.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_timepicker.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_timepicker_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/material_timepicker_textinput_display.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_dialog_actions.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_dialog_title.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_select_dialog_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_select_dialog_multichoice.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_alert_select_dialog_singlechoice.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_auto_complete_simple_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_day.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_day_of_week.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_days_of_week.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_horizontal.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_month.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_month_labeled.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_month_navigation.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_months.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_vertical.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_calendar_year.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_layout_snackbar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_layout_snackbar_include.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_navigation_rail_item.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_actions.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_fullscreen.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_header_dialog.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_header_fullscreen.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_header_selection_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_header_title_text.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_header_toggle.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_text_input_date.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_picker_text_input_date_range.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_search_bar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/layout/mtrl_search_view.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-af/values-af.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-am/values-am.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ar/values-ar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-as/values-as.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-az/values-az.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-b+es+419/values-b+es+419.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-be/values-be.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-bg/values-bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-bn/values-bn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-bs/values-bs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ca/values-ca.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-cs/values-cs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-da/values-da.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-de/values-de.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-el/values-el.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-en-rGB/values-en-rGB.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-es-rUS/values-es-rUS.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-es/values-es.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-et/values-et.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-eu/values-eu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-fa/values-fa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-fi/values-fi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-fr-rCA/values-fr-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-fr/values-fr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-gl/values-gl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-gu/values-gu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-h320dp-port-v13/values-h320dp-port-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-h360dp-land-v13/values-h360dp-land-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-h480dp-land-v13/values-h480dp-land-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-h550dp-port-v13/values-h550dp-port-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-hi/values-hi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-hr/values-hr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-hu/values-hu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-hy/values-hy.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-in/values-in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-is/values-is.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-it/values-it.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-iw/values-iw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ja/values-ja.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ka/values-ka.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-kk/values-kk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-km/values-km.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-kn/values-kn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ko/values-ko.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ky/values-ky.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-land/values-land.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-large-v4/values-large-v4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ldrtl-v17/values-ldrtl-v17.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-lo/values-lo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-lt/values-lt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-lv/values-lv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-mk/values-mk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ml/values-ml.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-mn/values-mn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-mr/values-mr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ms/values-ms.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-my/values-my.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-nb/values-nb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ne/values-ne.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-night-v8/values-night-v8.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-nl/values-nl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-or/values-or.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-pa/values-pa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-pl/values-pl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-pt-rBR/values-pt-rBR.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-pt-rPT/values-pt-rPT.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ro/values-ro.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ru/values-ru.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-si/values-si.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sk/values-sk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sl/values-sl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-small-v4/values-small-v4.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sq/values-sq.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sr/values-sr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sv/values-sv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sw/values-sw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-sw600dp-v13/values-sw600dp-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ta/values-ta.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-te/values-te.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-th/values-th.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-tl/values-tl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-tr/values-tr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-uk/values-uk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-ur/values-ur.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-uz/values-uz.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v21/values-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v23/values-v23.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v24/values-v24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v28/values-v28.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v31/values-v31.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-v34/values-v34.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-vi/values-vi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-w320dp-land-v13/values-w320dp-land-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-w360dp-port-v13/values-w360dp-port-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-w400dp-port-v13/values-w400dp-port-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-w600dp-land-v13/values-w600dp-land-v13.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-zh-rCN/values-zh-rCN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-zh-rHK/values-zh-rHK.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-zh-rTW/values-zh-rTW.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values-zu/values-zu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/145/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/146/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/147/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/148/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/149/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/150/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/151/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/152/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/153/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/154.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/154/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/META-INF/androidx/navigation/navigation-common/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/155/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/156/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/META-INF/androidx/navigation/navigation-runtime/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/157/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/META-INF/androidx/navigation/navigation-ui/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/anim/nav_default_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/anim/nav_default_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/anim/nav_default_pop_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/anim/nav_default_pop_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/animator/nav_default_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/animator/nav_default_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/animator/nav_default_pop_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/animator/nav_default_pop_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-af/values-af.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-am/values-am.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ar/values-ar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-as/values-as.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-az/values-az.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-be/values-be.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-bg/values-bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-bn/values-bn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-bs/values-bs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ca/values-ca.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-cs/values-cs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-da/values-da.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-de/values-de.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-el/values-el.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-en-rAU/values-en-rAU.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-en-rGB/values-en-rGB.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-en-rIN/values-en-rIN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-es-rUS/values-es-rUS.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-es/values-es.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-et/values-et.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-eu/values-eu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-fa/values-fa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-fi/values-fi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-fr-rCA/values-fr-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-fr/values-fr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-gl/values-gl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-gu/values-gu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-hi/values-hi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-hr/values-hr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-hu/values-hu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-hy/values-hy.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-in/values-in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-is/values-is.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-it/values-it.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-iw/values-iw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ja/values-ja.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ka/values-ka.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-kk/values-kk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-km/values-km.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-kn/values-kn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ko/values-ko.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ky/values-ky.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-lo/values-lo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-lt/values-lt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-lv/values-lv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-mk/values-mk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ml/values-ml.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-mn/values-mn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-mr/values-mr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ms/values-ms.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-my/values-my.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-nb/values-nb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ne/values-ne.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-nl/values-nl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-or/values-or.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-pa/values-pa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-pl/values-pl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-pt-rBR/values-pt-rBR.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-pt-rPT/values-pt-rPT.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-pt/values-pt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ro/values-ro.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ru/values-ru.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-si/values-si.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sk/values-sk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sl/values-sl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sq/values-sq.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sr/values-sr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sv/values-sv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-sw/values-sw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ta/values-ta.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-te/values-te.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-th/values-th.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-tl/values-tl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-tr/values-tr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-uk/values-uk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-ur/values-ur.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-uz/values-uz.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-vi/values-vi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-zh-rCN/values-zh-rCN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-zh-rHK/values-zh-rHK.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-zh-rTW/values-zh-rTW.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values-zu/values-zu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/158/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/159/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/160/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/META-INF/androidx/navigation/navigation-fragment/LICENSE.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/161/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/MediaDescriptionCompat.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/MediaMetadataCompat.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/RatingCompat.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/session/MediaSessionCompat.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_media_action.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_media_cancel_action.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_big_media.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_big_media_custom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_big_media_narrow.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_big_media_narrow_custom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_lines_media.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_media.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/layout/notification_template_media_custom.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/values-v21/values-v21.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/values-v24/values-v24.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/162/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/baseline-prof.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/163/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/164.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/164/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/164/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/164/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/165.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/165/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/165/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/165/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/166.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/166/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/166/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/166/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/167/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/public.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/layout/browser_actions_context_menu_page.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/layout/browser_actions_context_menu_row.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-af/values-af.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-am/values-am.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ar/values-ar.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-as/values-as.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-az/values-az.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-b+sr+Latn/values-b+sr+Latn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-be/values-be.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-bg/values-bg.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-bn/values-bn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-bs/values-bs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ca/values-ca.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-cs/values-cs.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-da/values-da.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-de/values-de.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-el/values-el.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-en-rAU/values-en-rAU.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-en-rCA/values-en-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-en-rGB/values-en-rGB.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-en-rIN/values-en-rIN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-en-rXC/values-en-rXC.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-es-rUS/values-es-rUS.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-es/values-es.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-et/values-et.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-eu/values-eu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-fa/values-fa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-fi/values-fi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-fr-rCA/values-fr-rCA.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-fr/values-fr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-gl/values-gl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-gu/values-gu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-hi/values-hi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-hr/values-hr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-hu/values-hu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-hy/values-hy.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-in/values-in.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-is/values-is.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-it/values-it.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-iw/values-iw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ja/values-ja.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ka/values-ka.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-kk/values-kk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-km/values-km.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-kn/values-kn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ko/values-ko.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ky/values-ky.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-lo/values-lo.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-lt/values-lt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-lv/values-lv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-mk/values-mk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ml/values-ml.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-mn/values-mn.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-mr/values-mr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ms/values-ms.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-my/values-my.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-nb/values-nb.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ne/values-ne.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-nl/values-nl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-or/values-or.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-pa/values-pa.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-pl/values-pl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-pt-rBR/values-pt-rBR.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-pt-rPT/values-pt-rPT.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-pt/values-pt.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ro/values-ro.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ru/values-ru.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-si/values-si.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sk/values-sk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sl/values-sl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sq/values-sq.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sr/values-sr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sv/values-sv.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-sw/values-sw.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ta/values-ta.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-te/values-te.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-th/values-th.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-tl/values-tl.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-tr/values-tr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-uk/values-uk.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-ur/values-ur.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-uz/values-uz.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-vi/values-vi.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-zh-rCN/values-zh-rCN.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-zh-rHK/values-zh-rHK.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-zh-rTW/values-zh-rTW.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values-zu/values-zu.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/168/jl/res/xml/image_share_filepaths.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169/jl/annotations.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/169/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/proguard.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/170/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/171.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/171/jl/libs/ED64959F88B22E6D.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/172.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/172/jl/libs/2E7FD15AFA9B216B.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/.net/__res_name_case_map.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/anim/enterfromleft.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/anim/enterfromright.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/anim/exittoleft.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/anim/exittoright.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/layout/flyoutcontent.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/layout/shellcontent.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/173/jl/res/values/strings.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/AndroidManifest.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/META-INF/com/android/build/gradle/aar-metadata.properties create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/R.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/classes.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/174/jl/res/values/values.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/.net/__res_name_case_map.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_default_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_default_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_default_pop_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_default_pop_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_modal_default_enter_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/anim/nav_modal_default_exit_anim.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/drawable/maui_splash.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/drawable/maui_splash_image.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/layout/drawer_layout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/layout/fragment_backstack.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/layout/navigationlayout.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/values-v35/styles.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/values/attr.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/values/colors.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/175/jl/res/values/styles.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/176.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/176/jl/.net/__res_name_case_map.txt create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/176/jl/res.zip create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/176/jl/res/xml/microsoft_maui_essentials_fileprovider_file_paths.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/177.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/177/jl/libs/F975D0960055A5E3.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/178.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/178/jl/libs/B71CFF5D5A0B3AEB.jar create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/map.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauifont.inputs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauifont.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauiimage.inputs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauiimage.outputs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauiimage.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauisplash.inputs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/mauisplash.stamp create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/res.flag create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/res/values/colors.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/f/FluentUI.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/f/OpenSans-Regular.ttf create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/f/OpenSans-Semibold.ttf create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/drawable-hdpi/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/drawable-mdpi/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/drawable-xhdpi/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/drawable-xxhdpi/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/drawable-xxxhdpi/dotnet_bot.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-anydpi-v26/appicon_round.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_background.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_foreground.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-hdpi/appicon_round.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_background.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_foreground.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-mdpi/appicon_round.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_background.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_foreground.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xhdpi/appicon_round.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_background.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_foreground.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxhdpi/appicon_round.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_background.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_foreground.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/r/mipmap-xxxhdpi/appicon_round.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-hdpi/splash.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-mdpi/splash.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-v31/maui_splash_image.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-xhdpi/splash.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-xxhdpi/splash.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable-xxxhdpi/splash.png create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/drawable/maui_splash_image.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/resizetizer/sp/values/maui_colors.xml create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.AssemblyInfo.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.AssemblyInfoInputs.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.GlobalUsings.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.assets.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.csproj.AssemblyReference.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-ios/iossimulator-x64/Maui_ChartTooltip.nfloat.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.AssemblyInfo.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.AssemblyInfoInputs.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.GlobalUsings.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.assets.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.csproj.AssemblyReference.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-maccatalyst/maccatalyst-x64/Maui_ChartTooltip.nfloat.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.AssemblyInfo.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.AssemblyInfoInputs.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.GlobalUsings.g.cs create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.assets.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-windows10.0.19041.0/win10-x64/Maui_ChartTooltip.csproj.AssemblyReference.cache create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Maui_ChartTooltip.csproj.nuget.dgspec.json create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Maui_ChartTooltip.csproj.nuget.g.props create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/Maui_ChartTooltip.csproj.nuget.g.targets create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/project.assets.json create mode 100644 Maui_ChartTooltip/Maui_ChartTooltip/obj/project.nuget.cache diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml new file mode 100644 index 0000000..dea41f7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs new file mode 100644 index 0000000..a55c192 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs @@ -0,0 +1,15 @@ +namespace Maui_ChartTooltip +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml new file mode 100644 index 0000000..4e64d5f --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml.cs new file mode 100644 index 0000000..4063cb6 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Maui_ChartTooltip +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml new file mode 100644 index 0000000..e781dba --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs new file mode 100644 index 0000000..d8e4b24 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs @@ -0,0 +1,11 @@ +namespace Maui_ChartTooltip +{ + public partial class MainPage : ContentPage + { + public MainPage() + { + InitializeComponent(); + } + } + +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs b/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs new file mode 100644 index 0000000..271c9d2 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs @@ -0,0 +1,27 @@ +using Microsoft.Extensions.Logging; +using Syncfusion.Maui.Core.Hosting; + +namespace Maui_ChartTooltip +{ + public static class MauiProgram + { + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder.ConfigureSyncfusionCore(); + 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/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj new file mode 100644 index 0000000..f4e7bc9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj @@ -0,0 +1,68 @@ + + + + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 + + + + + + + Exe + Maui_ChartTooltip + true + true + enable + enable + + + Maui_ChartTooltip + + + com.companyname.maui_charttooltip + + + 1.0 + 1 + + + None + + 15.0 + 15.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user new file mode 100644 index 0000000..8700ea2 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user @@ -0,0 +1,8 @@ + + + + False + net9.0-windows10.0.19041.0 + Windows Machine + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs new file mode 100644 index 0000000..0772b41 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs @@ -0,0 +1,10 @@ + +namespace Maui_ChartTooltip +{ + public class Model + { + public string Country { get; set; } + + public double Population { get; set; } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml new file mode 100644 index 0000000..e9937ad --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs new file mode 100644 index 0000000..a028a64 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs @@ -0,0 +1,11 @@ +using Android.App; +using Android.Content.PM; +using Android.OS; + +namespace Maui_ChartTooltip +{ + [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] + public class MainActivity : MauiAppCompatActivity + { + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs new file mode 100644 index 0000000..6f81c34 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs @@ -0,0 +1,16 @@ +using Android.App; +using Android.Runtime; + +namespace Maui_ChartTooltip +{ + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml new file mode 100644 index 0000000..c04d749 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml @@ -0,0 +1,6 @@ + + + #512BD4 + #2B0B98 + #2B0B98 + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs new file mode 100644 index 0000000..e0dee7d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace Maui_ChartTooltip +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist new file mode 100644 index 0000000..de4adc9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist @@ -0,0 +1,14 @@ + + + + + + + com.apple.security.app-sandbox + + + com.apple.security.network.client + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist new file mode 100644 index 0000000..7268977 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs new file mode 100644 index 0000000..39d0f0d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace Maui_ChartTooltip +{ + 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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs new file mode 100644 index 0000000..0684db7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs @@ -0,0 +1,17 @@ +using System; +using Microsoft.Maui; +using Microsoft.Maui.Hosting; + +namespace Maui_ChartTooltip +{ + 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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml new file mode 100644 index 0000000..a3c0837 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml new file mode 100644 index 0000000..6b5979d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml @@ -0,0 +1,8 @@ + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs new file mode 100644 index 0000000..0bac0bc --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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 Maui_ChartTooltip.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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest new file mode 100644 index 0000000..84781ef --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest @@ -0,0 +1,46 @@ + + + + + + + + + $placeholder$ + User Name + $placeholder$.png + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest new file mode 100644 index 0000000..3bd2848 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest @@ -0,0 +1,15 @@ + + + + + + + + true/PM + PerMonitorV2, PerMonitor + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs new file mode 100644 index 0000000..e0dee7d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace Maui_ChartTooltip +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Info.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Info.plist new file mode 100644 index 0000000..0004a4f --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs new file mode 100644 index 0000000..39d0f0d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace Maui_ChartTooltip +{ + 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/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..24ab3b4 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,51 @@ + + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json b/Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json new file mode 100644 index 0000000..4f85793 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Windows Machine": { + "commandName": "Project", + "nativeDebugging": false + } + } +} \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg new file mode 100644 index 0000000..9d63b65 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg new file mode 100644 index 0000000..21dfb25 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs new file mode 100644 index 0000000..f12cac6 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs @@ -0,0 +1,7921 @@ +namespace Fonts +{ + // Generated by IconFont2Code: https://andreinitescu.github.io/IconFont2Code + // If you change the class to 'public' in order to use it outside its assembly + // you should also change the fields from 'const' to 'public static readonly' + internal static class FluentUI + { + public const string FontFamily = "FluentUI"; + + public const string access_time_20_regular = "\ue000"; + public const string access_time_24_regular = "\uf101"; + public const string accessibility_16_regular = "\uf102"; + public const string accessibility_20_regular = "\uf103"; + public const string accessibility_24_regular = "\uf104"; + public const string accessibility_28_regular = "\uf105"; + public const string accessibility_32_regular = "\ue001"; + public const string accessibility_48_regular = "\ue002"; + public const string accessibility_checkmark_20_regular = "\ue003"; + public const string accessibility_checkmark_24_regular = "\ue004"; + public const string accessibility_checkmark_28_regular = "\uf00a"; + public const string accessibility_checkmark_32_regular = "\uf00b"; + public const string accessibility_checkmark_48_regular = "\uf00c"; + public const string accessibility_error_20_regular = "\U000f0551"; + public const string accessibility_error_24_regular = "\U000f0552"; + public const string accessibility_question_mark_20_regular = "\U000f0553"; + public const string accessibility_question_mark_24_regular = "\U000f0554"; + public const string add_12_regular = "\uf107"; + public const string add_16_regular = "\uf108"; + public const string add_20_regular = "\uf109"; + public const string add_24_regular = "\uf10a"; + public const string add_28_regular = "\uf10b"; + public const string add_32_regular = "\uf58d"; + public const string add_48_regular = "\uf598"; + public const string add_circle_12_regular = "\uf00d"; + public const string add_circle_16_regular = "\ue005"; + public const string add_circle_20_regular = "\uf10c"; + public const string add_circle_24_regular = "\uf10d"; + public const string add_circle_28_regular = "\uf10e"; + public const string add_circle_32_regular = "\ue006"; + public const string add_square_16_regular = "\U000f01e2"; + public const string add_square_20_regular = "\ue007"; + public const string add_square_24_regular = "\uf8ca"; + public const string add_square_28_regular = "\U000f01e3"; + public const string add_square_32_regular = "\U000f01e4"; + public const string add_square_48_regular = "\U000f01e5"; + public const string add_square_multiple_16_regular = "\ue008"; + public const string add_square_multiple_20_regular = "\ue009"; + public const string add_square_multiple_24_regular = "\U000f0266"; + public const string add_subtract_circle_16_regular = "\ue00a"; + public const string add_subtract_circle_20_regular = "\ue00b"; + public const string add_subtract_circle_24_regular = "\ue00c"; + public const string add_subtract_circle_28_regular = "\ue00d"; + public const string add_subtract_circle_48_regular = "\ue00e"; + public const string airplane_20_regular = "\uf10f"; + public const string airplane_24_regular = "\uf110"; + public const string airplane_landing_16_regular = "\ue0ed"; + public const string airplane_landing_20_regular = "\ue0ee"; + public const string airplane_landing_24_regular = "\ue0ef"; + public const string airplane_take_off_16_regular = "\uf111"; + public const string airplane_take_off_20_regular = "\uf112"; + public const string airplane_take_off_24_regular = "\uf113"; + public const string album_20_regular = "\ue00f"; + public const string album_24_regular = "\ue010"; + public const string album_add_20_regular = "\ue011"; + public const string album_add_24_regular = "\ue012"; + public const string alert_12_regular = "\ue013"; + public const string alert_16_regular = "\ue014"; + public const string alert_20_regular = "\uf114"; + public const string alert_24_regular = "\uf115"; + public const string alert_28_regular = "\uf116"; + public const string alert_32_regular = "\ue015"; + public const string alert_48_regular = "\ue016"; + public const string alert_badge_16_regular = "\ue017"; + public const string alert_badge_20_regular = "\ue018"; + public const string alert_badge_24_regular = "\ue019"; + public const string alert_off_16_regular = "\uf117"; + public const string alert_off_20_regular = "\uf118"; + public const string alert_off_24_regular = "\uf119"; + public const string alert_off_28_regular = "\uf11a"; + public const string alert_on_16_regular = "\U000f03d0"; + public const string alert_on_20_regular = "\ue01a"; + public const string alert_on_24_regular = "\uf11b"; + public const string alert_snooze_12_regular = "\ue01b"; + public const string alert_snooze_16_regular = "\ue01c"; + public const string alert_snooze_20_regular = "\uf11c"; + public const string alert_snooze_24_regular = "\uf11d"; + public const string alert_urgent_16_regular = "\ue01d"; + public const string alert_urgent_20_regular = "\uf11e"; + public const string alert_urgent_24_regular = "\uf11f"; + public const string align_bottom_16_regular = "\ue01e"; + public const string align_bottom_20_regular = "\ue01f"; + public const string align_bottom_24_regular = "\ue020"; + public const string align_bottom_28_regular = "\ue021"; + public const string align_bottom_32_regular = "\ue022"; + public const string align_bottom_48_regular = "\ue023"; + public const string align_center_horizontal_16_regular = "\ue024"; + public const string align_center_horizontal_20_regular = "\ue025"; + public const string align_center_horizontal_24_regular = "\ue026"; + public const string align_center_horizontal_28_regular = "\ue027"; + public const string align_center_horizontal_32_regular = "\ue028"; + public const string align_center_horizontal_48_regular = "\ue029"; + public const string align_center_vertical_16_regular = "\ue02a"; + public const string align_center_vertical_20_regular = "\ue02b"; + public const string align_center_vertical_24_regular = "\ue02c"; + public const string align_center_vertical_28_regular = "\ue02d"; + public const string align_center_vertical_32_regular = "\ue02e"; + public const string align_center_vertical_48_regular = "\ue02f"; + public const string align_distribute_bottom_16_regular = "\uf09c"; + public const string align_distribute_left_16_regular = "\uf09d"; + public const string align_distribute_right_16_regular = "\uf09e"; + public const string align_distribute_top_16_regular = "\uf09f"; + public const string align_end_horizontal_20_regular = "\ue030"; + public const string align_end_vertical_20_regular = "\ue031"; + public const string align_left_16_regular = "\ue032"; + public const string align_left_20_regular = "\ue033"; + public const string align_left_24_regular = "\ue034"; + public const string align_left_28_regular = "\ue035"; + public const string align_left_32_regular = "\ue036"; + public const string align_left_48_regular = "\ue037"; + public const string align_right_16_regular = "\ue038"; + public const string align_right_20_regular = "\ue039"; + public const string align_right_24_regular = "\ue03a"; + public const string align_right_28_regular = "\ue03b"; + public const string align_right_32_regular = "\ue03c"; + public const string align_right_48_regular = "\ue03d"; + public const string align_space_around_horizontal_20_regular = "\ue03e"; + public const string align_space_around_vertical_20_regular = "\ue03f"; + public const string align_space_between_horizontal_20_regular = "\ue040"; + public const string align_space_between_vertical_20_regular = "\ue041"; + public const string align_space_evenly_horizontal_20_regular = "\ue042"; + public const string align_space_evenly_horizontal_24_regular = "\ue0f0"; + public const string align_space_evenly_vertical_20_regular = "\ue043"; + public const string align_space_evenly_vertical_24_regular = "\U000f01b5"; + public const string align_space_fit_vertical_20_regular = "\ue044"; + public const string align_start_horizontal_20_regular = "\ue045"; + public const string align_start_vertical_20_regular = "\ue046"; + public const string align_straighten_20_regular = "\U000f01b6"; + public const string align_straighten_24_regular = "\U000f01b7"; + public const string align_stretch_horizontal_16_regular = "\uf0a0"; + public const string align_stretch_horizontal_20_regular = "\ue047"; + public const string align_stretch_vertical_16_regular = "\uf0a1"; + public const string align_stretch_vertical_20_regular = "\ue048"; + public const string align_top_16_regular = "\ue049"; + public const string align_top_20_regular = "\ue04a"; + public const string align_top_24_regular = "\ue04b"; + public const string align_top_28_regular = "\ue04c"; + public const string align_top_32_regular = "\ue04d"; + public const string align_top_48_regular = "\ue04e"; + public const string animal_cat_16_regular = "\uf106"; + public const string animal_cat_20_regular = "\uf126"; + public const string animal_cat_24_regular = "\uf127"; + public const string animal_cat_28_regular = "\uf128"; + public const string animal_dog_16_regular = "\ue04f"; + public const string animal_dog_20_regular = "\uf120"; + public const string animal_dog_24_regular = "\uf121"; + public const string animal_rabbit_16_regular = "\ue050"; + public const string animal_rabbit_20_regular = "\ue051"; + public const string animal_rabbit_24_regular = "\ue052"; + public const string animal_rabbit_28_regular = "\ue053"; + public const string animal_rabbit_32_regular = "\ueec1"; + public const string animal_rabbit_off_20_regular = "\ueee4"; + public const string animal_rabbit_off_32_regular = "\ueee5"; + public const string animal_turtle_16_regular = "\ue054"; + public const string animal_turtle_20_regular = "\ue055"; + public const string animal_turtle_24_regular = "\ue056"; + public const string animal_turtle_28_regular = "\ue057"; + public const string app_folder_16_regular = "\ue058"; + public const string app_folder_20_regular = "\uf122"; + public const string app_folder_24_regular = "\uf123"; + public const string app_folder_28_regular = "\ue059"; + public const string app_folder_32_regular = "\ue05a"; + public const string app_folder_48_regular = "\ue05b"; + public const string app_generic_20_regular = "\ue05c"; + public const string app_generic_24_regular = "\uf124"; + public const string app_generic_32_regular = "\uefb9"; + public const string app_generic_48_regular = "\U000f015e"; + public const string app_recent_20_regular = "\ue05d"; + public const string app_recent_24_regular = "\uf125"; + public const string app_store_24_regular = "\uf12a"; + public const string app_title_20_regular = "\ue05e"; + public const string app_title_24_regular = "\uf12b"; + public const string approvals_app_16_regular = "\ue05f"; + public const string approvals_app_20_regular = "\ue060"; + public const string approvals_app_24_regular = "\uf130"; + public const string approvals_app_28_regular = "\uf131"; + public const string approvals_app_32_regular = "\ue061"; + public const string apps_16_regular = "\uf132"; + public const string apps_20_regular = "\uf133"; + public const string apps_24_regular = "\uf134"; + public const string apps_28_regular = "\uf135"; + public const string apps_32_regular = "\ueebd"; + public const string apps_48_regular = "\uf599"; + public const string apps_add_in_16_regular = "\ue062"; + public const string apps_add_in_20_regular = "\uf136"; + public const string apps_add_in_24_regular = "\uf137"; + public const string apps_add_in_28_regular = "\ue063"; + public const string apps_list_20_regular = "\uf8cb"; + public const string apps_list_24_regular = "\uf138"; + public const string apps_list_detail_20_regular = "\ue064"; + public const string apps_list_detail_24_regular = "\ue065"; + public const string apps_settings_16_regular = "\U000f059c"; + public const string apps_settings_20_regular = "\U000f059d"; + public const string apps_shield_16_regular = "\U000f059e"; + public const string apps_shield_20_regular = "\U000f059f"; + public const string archive_16_regular = "\uf8cc"; + public const string archive_20_regular = "\uf139"; + public const string archive_24_regular = "\uf13a"; + public const string archive_28_regular = "\uf13b"; + public const string archive_32_regular = "\ue066"; + public const string archive_48_regular = "\uf13c"; + public const string archive_arrow_back_16_regular = "\ue067"; + public const string archive_arrow_back_20_regular = "\ue068"; + public const string archive_arrow_back_24_regular = "\ue069"; + public const string archive_arrow_back_28_regular = "\ue06a"; + public const string archive_arrow_back_32_regular = "\ue06b"; + public const string archive_arrow_back_48_regular = "\ue06c"; + public const string archive_multiple_16_regular = "\ue06d"; + public const string archive_multiple_20_regular = "\ue06e"; + public const string archive_multiple_24_regular = "\ue06f"; + public const string archive_settings_16_regular = "\uf129"; + public const string archive_settings_20_regular = "\ue070"; + public const string archive_settings_24_regular = "\ue071"; + public const string archive_settings_28_regular = "\ue072"; + public const string archive_settings_32_regular = "\U000f0423"; + public const string arrow_autofit_content_20_regular = "\ue073"; + public const string arrow_autofit_content_24_regular = "\ue074"; + public const string arrow_autofit_down_20_regular = "\ue075"; + public const string arrow_autofit_down_24_regular = "\ue076"; + public const string arrow_autofit_height_20_regular = "\ue077"; + public const string arrow_autofit_height_24_regular = "\uf8cd"; + public const string arrow_autofit_height_dotted_20_regular = "\ue078"; + public const string arrow_autofit_height_dotted_24_regular = "\ue079"; + public const string arrow_autofit_height_in_20_regular = "\U000f010e"; + public const string arrow_autofit_height_in_24_regular = "\U000f010f"; + public const string arrow_autofit_up_20_regular = "\ue07a"; + public const string arrow_autofit_up_24_regular = "\ue07b"; + public const string arrow_autofit_width_20_regular = "\ue07c"; + public const string arrow_autofit_width_24_regular = "\uf8ce"; + public const string arrow_autofit_width_dotted_20_regular = "\ue07d"; + public const string arrow_autofit_width_dotted_24_regular = "\ue07e"; + public const string arrow_between_down_20_regular = "\ue07f"; + public const string arrow_between_down_24_regular = "\ue080"; + public const string arrow_between_up_20_regular = "\ue081"; + public const string arrow_bidirectional_left_right_16_regular = "\U000f02a0"; + public const string arrow_bidirectional_left_right_20_regular = "\U000f02a1"; + public const string arrow_bidirectional_left_right_24_regular = "\U000f02a2"; + public const string arrow_bidirectional_left_right_28_regular = "\U000f02a3"; + public const string arrow_bidirectional_up_down_12_regular = "\ue082"; + public const string arrow_bidirectional_up_down_16_regular = "\ue083"; + public const string arrow_bidirectional_up_down_20_regular = "\ue084"; + public const string arrow_bidirectional_up_down_24_regular = "\ue085"; + public const string arrow_bounce_16_regular = "\ue086"; + public const string arrow_bounce_20_regular = "\ue087"; + public const string arrow_bounce_24_regular = "\ue088"; + public const string arrow_circle_down_12_regular = "\ue089"; + public const string arrow_circle_down_16_regular = "\ue08a"; + public const string arrow_circle_down_20_regular = "\uf12c"; + public const string arrow_circle_down_24_regular = "\uf12d"; + public const string arrow_circle_down_28_regular = "\ue08b"; + public const string arrow_circle_down_32_regular = "\ue08c"; + public const string arrow_circle_down_48_regular = "\ue08d"; + public const string arrow_circle_down_double_20_regular = "\uf12e"; + public const string arrow_circle_down_double_24_regular = "\uf12f"; + public const string arrow_circle_down_right_16_regular = "\ue08e"; + public const string arrow_circle_down_right_20_regular = "\ue08f"; + public const string arrow_circle_down_right_24_regular = "\ue090"; + public const string arrow_circle_down_split_20_regular = "\uf143"; + public const string arrow_circle_down_split_24_regular = "\uf144"; + public const string arrow_circle_down_up_20_regular = "\ue091"; + public const string arrow_circle_left_12_regular = "\ue092"; + public const string arrow_circle_left_16_regular = "\ue093"; + public const string arrow_circle_left_20_regular = "\ue094"; + public const string arrow_circle_left_24_regular = "\ue095"; + public const string arrow_circle_left_28_regular = "\ue096"; + public const string arrow_circle_left_32_regular = "\ue097"; + public const string arrow_circle_left_48_regular = "\ue098"; + public const string arrow_circle_right_12_regular = "\ue099"; + public const string arrow_circle_right_16_regular = "\ue09a"; + public const string arrow_circle_right_20_regular = "\ue09b"; + public const string arrow_circle_right_24_regular = "\ue09c"; + public const string arrow_circle_right_28_regular = "\ue09d"; + public const string arrow_circle_right_32_regular = "\ue09e"; + public const string arrow_circle_right_48_regular = "\ue09f"; + public const string arrow_circle_up_12_regular = "\ue0a0"; + public const string arrow_circle_up_16_regular = "\ue0a1"; + public const string arrow_circle_up_20_regular = "\ue0a2"; + public const string arrow_circle_up_24_regular = "\ue0a3"; + public const string arrow_circle_up_28_regular = "\ue0a4"; + public const string arrow_circle_up_32_regular = "\ue0a5"; + public const string arrow_circle_up_48_regular = "\ue0a6"; + public const string arrow_circle_up_left_20_regular = "\ue0a7"; + public const string arrow_circle_up_left_24_regular = "\ue0a8"; + public const string arrow_circle_up_right_20_regular = "\U000f00ce"; + public const string arrow_circle_up_right_24_regular = "\U000f00cf"; + public const string arrow_clockwise_12_regular = "\ue0a9"; + public const string arrow_clockwise_16_regular = "\ue0aa"; + public const string arrow_clockwise_20_regular = "\uf13d"; + public const string arrow_clockwise_24_regular = "\uf13e"; + public const string arrow_clockwise_28_regular = "\ue0ab"; + public const string arrow_clockwise_32_regular = "\ue0ac"; + public const string arrow_clockwise_48_regular = "\ue0ad"; + public const string arrow_clockwise_dashes_16_regular = "\U000f0462"; + public const string arrow_clockwise_dashes_20_regular = "\ue0ae"; + public const string arrow_clockwise_dashes_24_regular = "\ue0af"; + public const string arrow_clockwise_dashes_32_regular = "\U000f0463"; + public const string arrow_collapse_all_16_regular = "\U000f0621"; + public const string arrow_collapse_all_20_regular = "\ue0b0"; + public const string arrow_collapse_all_24_regular = "\ue0b1"; + public const string arrow_counterclockwise_12_regular = "\ue0b2"; + public const string arrow_counterclockwise_16_regular = "\ue0b3"; + public const string arrow_counterclockwise_20_regular = "\uf13f"; + public const string arrow_counterclockwise_24_regular = "\uf140"; + public const string arrow_counterclockwise_28_regular = "\uf8cf"; + public const string arrow_counterclockwise_32_regular = "\ue0b4"; + public const string arrow_counterclockwise_48_regular = "\ue0b5"; + public const string arrow_counterclockwise_dashes_20_regular = "\ue0b6"; + public const string arrow_counterclockwise_dashes_24_regular = "\ue0b7"; + public const string arrow_curve_down_left_16_regular = "\ue0b8"; + public const string arrow_curve_down_left_20_regular = "\uf141"; + public const string arrow_curve_down_left_24_regular = "\ue0b9"; + public const string arrow_curve_down_left_28_regular = "\ue0ba"; + public const string arrow_curve_down_right_20_regular = "\uf142"; + public const string arrow_curve_up_left_20_regular = "\uf145"; + public const string arrow_curve_up_right_20_regular = "\uf146"; + public const string arrow_down_12_regular = "\uf8d0"; + public const string arrow_down_16_regular = "\uf147"; + public const string arrow_down_20_regular = "\uf148"; + public const string arrow_down_24_regular = "\uf149"; + public const string arrow_down_28_regular = "\uf14a"; + public const string arrow_down_32_regular = "\uf14c"; + public const string arrow_down_48_regular = "\uf14d"; + public const string arrow_down_exclamation_16_regular = "\U000f03d1"; + public const string arrow_down_exclamation_20_regular = "\U000f03d2"; + public const string arrow_down_exclamation_24_regular = "\U000f0555"; + public const string arrow_down_left_16_regular = "\uf8d1"; + public const string arrow_down_left_20_regular = "\ue0bb"; + public const string arrow_down_left_24_regular = "\uf14b"; + public const string arrow_down_left_32_regular = "\ue0bc"; + public const string arrow_down_left_48_regular = "\ue0bd"; + public const string arrow_download_16_regular = "\uf14f"; + public const string arrow_download_20_regular = "\uf150"; + public const string arrow_download_24_regular = "\uf151"; + public const string arrow_download_28_regular = "\U000f0380"; + public const string arrow_download_32_regular = "\U000f0381"; + public const string arrow_download_48_regular = "\uf152"; + public const string arrow_download_off_16_regular = "\U000f03a8"; + public const string arrow_download_off_20_regular = "\U000f03a9"; + public const string arrow_download_off_24_regular = "\U000f03aa"; + public const string arrow_download_off_28_regular = "\U000f03ab"; + public const string arrow_download_off_32_regular = "\U000f03ac"; + public const string arrow_download_off_48_regular = "\U000f03ad"; + public const string arrow_eject_20_regular = "\ue0be"; + public const string arrow_enter_16_regular = "\U000f015f"; + public const string arrow_enter_20_regular = "\ue0bf"; + public const string arrow_enter_left_20_regular = "\ue0c0"; + public const string arrow_enter_left_24_regular = "\ue0c1"; + public const string arrow_enter_up_20_regular = "\ue0c2"; + public const string arrow_enter_up_24_regular = "\ue0c3"; + public const string arrow_exit_20_regular = "\ue0c4"; + public const string arrow_expand_16_regular = "\U000f0382"; + public const string arrow_expand_20_regular = "\ue0c5"; + public const string arrow_expand_24_regular = "\uf154"; + public const string arrow_expand_all_16_regular = "\U000f0622"; + public const string arrow_expand_all_20_regular = "\U000f0623"; + public const string arrow_expand_all_24_regular = "\U000f0624"; + public const string arrow_export_ltr_16_regular = "\ue0c6"; + public const string arrow_export_ltr_20_regular = "\ue0c7"; + public const string arrow_export_ltr_24_regular = "\ue0c8"; + public const string arrow_export_rtl_16_regular = "\ue0c9"; + public const string arrow_export_rtl_20_regular = "\uf8d2"; + public const string arrow_export_rtl_24_regular = "\ue0ca"; + public const string arrow_export_up_16_regular = "\U000f0383"; + public const string arrow_export_up_20_regular = "\ue0cb"; + public const string arrow_export_up_24_regular = "\ue0cc"; + public const string arrow_fit_16_regular = "\uf14e"; + public const string arrow_fit_20_regular = "\ue0cd"; + public const string arrow_fit_24_regular = "\U000f03d3"; + public const string arrow_fit_in_16_regular = "\ue0ce"; + public const string arrow_fit_in_20_regular = "\ue0cf"; + public const string arrow_fit_in_24_regular = "\U000f03d4"; + public const string arrow_flow_diagonal_up_right_16_regular = "\U000f01b8"; + public const string arrow_flow_diagonal_up_right_20_regular = "\U000f01b9"; + public const string arrow_flow_diagonal_up_right_24_regular = "\U000f01ba"; + public const string arrow_flow_diagonal_up_right_32_regular = "\U000f01bb"; + public const string arrow_flow_up_right_16_regular = "\U000f01bc"; + public const string arrow_flow_up_right_20_regular = "\U000f01bd"; + public const string arrow_flow_up_right_24_regular = "\U000f01be"; + public const string arrow_flow_up_right_32_regular = "\U000f01bf"; + public const string arrow_flow_up_right_rectangle_multiple_20_regular = "\U000f01c0"; + public const string arrow_flow_up_right_rectangle_multiple_24_regular = "\U000f01c1"; + public const string arrow_forward_16_regular = "\uf156"; + public const string arrow_forward_20_regular = "\uf157"; + public const string arrow_forward_24_regular = "\uf158"; + public const string arrow_forward_28_regular = "\ue0d0"; + public const string arrow_forward_32_regular = "\U000f0424"; + public const string arrow_forward_48_regular = "\ue0d1"; + public const string arrow_forward_down_lightning_20_regular = "\ue0d2"; + public const string arrow_forward_down_lightning_24_regular = "\ue0d3"; + public const string arrow_forward_down_person_20_regular = "\ue0d4"; + public const string arrow_forward_down_person_24_regular = "\ue0d5"; + public const string arrow_hook_down_left_16_regular = "\uf8d5"; + public const string arrow_hook_down_left_20_regular = "\uf8d6"; + public const string arrow_hook_down_left_24_regular = "\uf8d7"; + public const string arrow_hook_down_left_28_regular = "\uf8d8"; + public const string arrow_hook_down_right_16_regular = "\uf8d9"; + public const string arrow_hook_down_right_20_regular = "\uf8da"; + public const string arrow_hook_down_right_24_regular = "\uf8db"; + public const string arrow_hook_down_right_28_regular = "\uf8dc"; + public const string arrow_hook_up_left_16_regular = "\uf8dd"; + public const string arrow_hook_up_left_20_regular = "\uf8de"; + public const string arrow_hook_up_left_24_regular = "\uf8df"; + public const string arrow_hook_up_left_28_regular = "\uf8e0"; + public const string arrow_hook_up_right_16_regular = "\uf8e1"; + public const string arrow_hook_up_right_20_regular = "\uf8e2"; + public const string arrow_hook_up_right_24_regular = "\uf8e3"; + public const string arrow_hook_up_right_28_regular = "\uf8e4"; + public const string arrow_import_16_regular = "\U000f0384"; + public const string arrow_import_20_regular = "\uf159"; + public const string arrow_import_24_regular = "\uf15a"; + public const string arrow_join_20_regular = "\ue0d6"; + public const string arrow_left_12_regular = "\ue0d7"; + public const string arrow_left_16_regular = "\uf184"; + public const string arrow_left_20_regular = "\uf15b"; + public const string arrow_left_24_regular = "\uf15c"; + public const string arrow_left_28_regular = "\uf15d"; + public const string arrow_left_32_regular = "\uf189"; + public const string arrow_left_48_regular = "\uf19e"; + public const string arrow_maximize_16_regular = "\uf15e"; + public const string arrow_maximize_20_regular = "\uf15f"; + public const string arrow_maximize_24_regular = "\uf160"; + public const string arrow_maximize_28_regular = "\uf161"; + public const string arrow_maximize_32_regular = "\ue0d8"; + public const string arrow_maximize_48_regular = "\ue0d9"; + public const string arrow_maximize_vertical_20_regular = "\uf162"; + public const string arrow_maximize_vertical_24_regular = "\uf163"; + public const string arrow_maximize_vertical_48_regular = "\ue0da"; + public const string arrow_minimize_16_regular = "\uf164"; + public const string arrow_minimize_20_regular = "\uf165"; + public const string arrow_minimize_24_regular = "\uf166"; + public const string arrow_minimize_28_regular = "\uf167"; + public const string arrow_minimize_vertical_20_regular = "\ue0db"; + public const string arrow_minimize_vertical_24_regular = "\uf168"; + public const string arrow_move_20_regular = "\uf8e5"; + public const string arrow_move_24_regular = "\uf169"; + public const string arrow_move_inward_20_regular = "\ue0dc"; + public const string arrow_next_12_regular = "\ue0dd"; + public const string arrow_next_16_regular = "\uf0a2"; + public const string arrow_next_20_regular = "\uf16a"; + public const string arrow_next_24_regular = "\uf16b"; + public const string arrow_outline_down_left_16_regular = "\U000f01fd"; + public const string arrow_outline_down_left_20_regular = "\U000f01fe"; + public const string arrow_outline_down_left_24_regular = "\U000f01ff"; + public const string arrow_outline_down_left_28_regular = "\U000f0200"; + public const string arrow_outline_down_left_32_regular = "\U000f0201"; + public const string arrow_outline_down_left_48_regular = "\U000f0202"; + public const string arrow_outline_up_right_20_regular = "\ue0de"; + public const string arrow_outline_up_right_24_regular = "\ue0df"; + public const string arrow_outline_up_right_32_regular = "\ue0e0"; + public const string arrow_outline_up_right_48_regular = "\ue0e1"; + public const string text_paragraph_16_regular = "\ued41"; + public const string arrow_paragraph_20_regular = "\ue0e2"; + public const string text_paragraph_24_regular = "\ued43"; + public const string arrow_previous_12_regular = "\ue0e3"; + public const string arrow_previous_16_regular = "\uf0a3"; + public const string arrow_previous_20_regular = "\uf16c"; + public const string arrow_previous_24_regular = "\uf16d"; + public const string arrow_redo_16_regular = "\ue0e4"; + public const string arrow_redo_20_regular = "\uf16e"; + public const string arrow_redo_24_regular = "\uf16f"; + public const string arrow_redo_28_regular = "\ue0e5"; + public const string arrow_redo_32_regular = "\uf8e6"; + public const string arrow_redo_48_regular = "\uf8e7"; + public const string arrow_repeat_1_16_regular = "\uef32"; + public const string arrow_repeat_1_20_regular = "\uef33"; + public const string arrow_repeat_1_24_regular = "\uef34"; + public const string arrow_repeat_all_16_regular = "\uf170"; + public const string arrow_repeat_all_20_regular = "\uf171"; + public const string arrow_repeat_all_24_regular = "\uf172"; + public const string arrow_repeat_all_off_16_regular = "\uf173"; + public const string arrow_repeat_all_off_20_regular = "\uf174"; + public const string arrow_repeat_all_off_24_regular = "\uf175"; + public const string arrow_reply_16_regular = "\uf176"; + public const string arrow_reply_20_regular = "\uf177"; + public const string arrow_reply_24_regular = "\uf178"; + public const string arrow_reply_28_regular = "\ue0e6"; + public const string arrow_reply_32_regular = "\U000f0425"; + public const string arrow_reply_48_regular = "\uf179"; + public const string arrow_reply_all_16_regular = "\uf17a"; + public const string arrow_reply_all_20_regular = "\uf17b"; + public const string arrow_reply_all_24_regular = "\uf17c"; + public const string arrow_reply_all_28_regular = "\ue0e7"; + public const string arrow_reply_all_32_regular = "\U000f0426"; + public const string arrow_reply_all_48_regular = "\uf17d"; + public const string arrow_reply_down_16_regular = "\uf17e"; + public const string arrow_reply_down_20_regular = "\uf17f"; + public const string arrow_reply_down_24_regular = "\uf180"; + public const string arrow_reset_20_regular = "\uf19f"; + public const string arrow_reset_24_regular = "\uf1a0"; + public const string arrow_reset_32_regular = "\ue0e8"; + public const string arrow_reset_48_regular = "\ue0e9"; + public const string arrow_right_12_regular = "\ue0ea"; + public const string arrow_right_16_regular = "\ue0eb"; + public const string arrow_right_20_regular = "\uf181"; + public const string arrow_right_24_regular = "\uf182"; + public const string arrow_right_28_regular = "\uf183"; + public const string arrow_right_32_regular = "\uf1a2"; + public const string arrow_right_48_regular = "\uf1a7"; + public const string arrow_rotate_clockwise_16_regular = "\ue0ec"; + public const string arrow_rotate_clockwise_20_regular = "\uf185"; + public const string arrow_rotate_clockwise_24_regular = "\uf186"; + public const string arrow_rotate_counterclockwise_20_regular = "\uf187"; + public const string arrow_rotate_counterclockwise_24_regular = "\uf188"; + public const string arrow_shuffle_16_regular = "\uef35"; + public const string arrow_shuffle_20_regular = "\uef36"; + public const string arrow_shuffle_24_regular = "\uef37"; + public const string arrow_shuffle_28_regular = "\uef38"; + public const string arrow_shuffle_32_regular = "\uef39"; + public const string arrow_shuffle_48_regular = "\uef3a"; + public const string arrow_shuffle_off_16_regular = "\uef3b"; + public const string arrow_shuffle_off_20_regular = "\uef3c"; + public const string arrow_shuffle_off_24_regular = "\uef3d"; + public const string arrow_shuffle_off_28_regular = "\uef3e"; + public const string arrow_shuffle_off_32_regular = "\uef3f"; + public const string arrow_shuffle_off_48_regular = "\uef40"; + public const string arrow_sort_16_regular = "\uf1ab"; + public const string arrow_sort_20_regular = "\uf18a"; + public const string arrow_sort_24_regular = "\uf18b"; + public const string arrow_sort_28_regular = "\uf18c"; + public const string arrow_sort_down_16_regular = "\uf1ac"; + public const string arrow_sort_down_20_regular = "\uf805"; + public const string arrow_sort_down_24_regular = "\uf811"; + public const string arrow_sort_down_lines_16_regular = "\uf1ad"; + public const string arrow_sort_down_lines_20_regular = "\ue0f1"; + public const string arrow_sort_down_lines_24_regular = "\ue0f2"; + public const string arrow_sort_up_16_regular = "\uf1b3"; + public const string arrow_sort_up_20_regular = "\uf812"; + public const string arrow_sort_up_24_regular = "\uf821"; + public const string arrow_sort_up_lines_16_regular = "\U000f0556"; + public const string arrow_sort_up_lines_20_regular = "\U000f0557"; + public const string arrow_sort_up_lines_24_regular = "\U000f0558"; + public const string arrow_split_16_regular = "\ue0f3"; + public const string arrow_split_20_regular = "\ue0f4"; + public const string arrow_split_24_regular = "\ue0f5"; + public const string arrow_sprint_16_regular = "\U000f0160"; + public const string arrow_sprint_20_regular = "\U000f0161"; + public const string arrow_square_down_20_regular = "\ue0f6"; + public const string arrow_square_down_24_regular = "\ue0f7"; + public const string arrow_square_up_right_20_regular = "\U000f01c2"; + public const string arrow_square_up_right_24_regular = "\U000f01c3"; + public const string arrow_step_back_16_regular = "\ue0f8"; + public const string arrow_step_back_20_regular = "\ue0f9"; + public const string arrow_step_in_12_regular = "\ue0fa"; + public const string arrow_step_in_16_regular = "\ue0fb"; + public const string arrow_step_in_20_regular = "\ue0fc"; + public const string arrow_step_in_24_regular = "\ue0fd"; + public const string arrow_step_in_28_regular = "\ue0fe"; + public const string arrow_step_in_diagonal_down_left_16_regular = "\U000f0203"; + public const string arrow_step_in_diagonal_down_left_20_regular = "\U000f0204"; + public const string arrow_step_in_diagonal_down_left_24_regular = "\U000f0205"; + public const string arrow_step_in_diagonal_down_left_28_regular = "\U000f0206"; + public const string arrow_step_in_left_12_regular = "\ue0ff"; + public const string arrow_step_in_left_16_regular = "\ue100"; + public const string arrow_step_in_left_20_regular = "\ue101"; + public const string arrow_step_in_left_24_regular = "\ue102"; + public const string arrow_step_in_left_28_regular = "\ue103"; + public const string arrow_step_in_right_12_regular = "\ue104"; + public const string arrow_step_in_right_16_regular = "\ue105"; + public const string arrow_step_in_right_20_regular = "\ue106"; + public const string arrow_step_in_right_24_regular = "\ue107"; + public const string arrow_step_in_right_28_regular = "\ue108"; + public const string arrow_step_out_12_regular = "\ue109"; + public const string arrow_step_out_16_regular = "\ue10a"; + public const string arrow_step_out_20_regular = "\ue10b"; + public const string arrow_step_out_24_regular = "\ue10c"; + public const string arrow_step_out_28_regular = "\ue10d"; + public const string arrow_step_over_16_regular = "\ue10e"; + public const string arrow_step_over_20_regular = "\ue10f"; + public const string arrow_swap_16_regular = "\U000f02a4"; + public const string arrow_swap_20_regular = "\uf18d"; + public const string arrow_swap_24_regular = "\uf18e"; + public const string arrow_swap_28_regular = "\U000f02a5"; + public const string arrow_sync_12_regular = "\uf18f"; + public const string arrow_sync_16_regular = "\ue110"; + public const string arrow_sync_20_regular = "\uf190"; + public const string arrow_sync_24_regular = "\uf191"; + public const string arrow_sync_checkmark_20_regular = "\ue111"; + public const string arrow_sync_checkmark_24_regular = "\ue112"; + public const string arrow_sync_circle_16_regular = "\uf192"; + public const string arrow_sync_circle_20_regular = "\uf193"; + public const string arrow_sync_circle_24_regular = "\uf194"; + public const string arrow_sync_dismiss_20_regular = "\ue113"; + public const string arrow_sync_dismiss_24_regular = "\ue114"; + public const string arrow_sync_off_12_regular = "\uf195"; + public const string arrow_sync_off_16_regular = "\ue115"; + public const string arrow_sync_off_20_regular = "\ue116"; + public const string arrow_trending_12_regular = "\uefd6"; + public const string arrow_trending_16_regular = "\uf196"; + public const string arrow_trending_20_regular = "\uf197"; + public const string arrow_trending_24_regular = "\uf198"; + public const string arrow_trending_checkmark_20_regular = "\ue117"; + public const string arrow_trending_checkmark_24_regular = "\ue118"; + public const string arrow_trending_down_16_regular = "\ue119"; + public const string arrow_trending_down_20_regular = "\ue11a"; + public const string arrow_trending_down_24_regular = "\ue11b"; + public const string arrow_trending_lines_20_regular = "\ue11c"; + public const string arrow_trending_lines_24_regular = "\ue11d"; + public const string arrow_trending_settings_20_regular = "\ue11e"; + public const string arrow_trending_settings_24_regular = "\ue11f"; + public const string arrow_trending_sparkle_20_regular = "\uf59a"; + public const string arrow_trending_sparkle_24_regular = "\uf59b"; + public const string arrow_trending_text_20_regular = "\ue120"; + public const string arrow_trending_text_24_regular = "\ue121"; + public const string arrow_trending_wrench_20_regular = "\ue122"; + public const string arrow_trending_wrench_24_regular = "\ue123"; + public const string arrow_turn_bidirectional_down_right_20_regular = "\ue124"; + public const string arrow_turn_bidirectional_down_right_24_regular = "\uf822"; + public const string arrow_turn_down_left_20_regular = "\uf067"; + public const string arrow_turn_down_left_48_regular = "\uf068"; + public const string arrow_turn_down_right_20_regular = "\uf00e"; + public const string arrow_turn_down_right_48_regular = "\uf00f"; + public const string arrow_turn_down_up_20_regular = "\uf010"; + public const string arrow_turn_down_up_48_regular = "\uf011"; + public const string arrow_turn_left_down_20_regular = "\uf012"; + public const string arrow_turn_left_down_48_regular = "\uf013"; + public const string arrow_turn_left_right_20_regular = "\uf014"; + public const string arrow_turn_left_right_48_regular = "\uf015"; + public const string arrow_turn_left_up_20_regular = "\uf016"; + public const string arrow_turn_left_up_48_regular = "\uf017"; + public const string arrow_turn_right_16_regular = "\U000f05d3"; + public const string arrow_turn_right_20_regular = "\ue125"; + public const string arrow_turn_right_24_regular = "\uf839"; + public const string arrow_turn_right_48_regular = "\uf018"; + public const string arrow_turn_right_down_20_regular = "\uf019"; + public const string arrow_turn_right_down_48_regular = "\uf01a"; + public const string arrow_turn_right_left_20_regular = "\uf01b"; + public const string arrow_turn_right_left_48_regular = "\uf01c"; + public const string arrow_turn_right_up_20_regular = "\uf01d"; + public const string arrow_turn_right_up_48_regular = "\uf01e"; + public const string arrow_turn_up_down_20_regular = "\uf01f"; + public const string arrow_turn_up_down_48_regular = "\uf020"; + public const string arrow_turn_up_left_20_regular = "\uf021"; + public const string arrow_turn_up_left_48_regular = "\uf022"; + public const string arrow_undo_16_regular = "\ue126"; + public const string arrow_undo_20_regular = "\uf199"; + public const string arrow_undo_24_regular = "\uf19a"; + public const string arrow_undo_28_regular = "\ue127"; + public const string arrow_undo_32_regular = "\ue128"; + public const string arrow_undo_48_regular = "\ue129"; + public const string arrow_up_12_regular = "\ue12a"; + public const string arrow_up_16_regular = "\uf1b4"; + public const string arrow_up_20_regular = "\uf19b"; + public const string arrow_up_24_regular = "\uf19c"; + public const string arrow_up_28_regular = "\uf19d"; + public const string arrow_up_32_regular = "\uf1b8"; + public const string arrow_up_48_regular = "\uf1b9"; + public const string arrow_up_exclamation_16_regular = "\U000f0559"; + public const string arrow_up_exclamation_20_regular = "\U000f055a"; + public const string arrow_up_exclamation_24_regular = "\U000f055b"; + public const string arrow_up_left_16_regular = "\ue12b"; + public const string arrow_up_left_20_regular = "\ue12c"; + public const string arrow_up_left_24_regular = "\uf1a1"; + public const string arrow_up_left_48_regular = "\ue12d"; + public const string arrow_up_right_16_regular = "\uf8eb"; + public const string arrow_up_right_20_regular = "\ue12e"; + public const string arrow_up_right_24_regular = "\uf1a3"; + public const string arrow_up_right_32_regular = "\ue12f"; + public const string arrow_up_right_48_regular = "\ue130"; + public const string arrow_up_right_dashes_16_regular = "\U000f0385"; + public const string arrow_up_square_settings_24_regular = "\U000f0207"; + public const string arrow_upload_16_regular = "\ue131"; + public const string arrow_upload_20_regular = "\uf1a4"; + public const string arrow_upload_24_regular = "\uf1a5"; + public const string arrow_upload_32_regular = "\U000f05a0"; + public const string arrow_wrap_20_regular = "\ue132"; + public const string arrow_wrap_off_20_regular = "\ue133"; + public const string arrows_bidirectional_20_regular = "\ue134"; + public const string arrows_bidirectional_24_regular = "\uf1a6"; + public const string attach_12_regular = "\ue135"; + public const string attach_16_regular = "\uf1a8"; + public const string attach_20_regular = "\uf1a9"; + public const string attach_24_regular = "\uf1aa"; + public const string attach_32_regular = "\U000f0427"; + public const string attach_arrow_right_20_regular = "\uf8ec"; + public const string attach_arrow_right_24_regular = "\uf8ed"; + public const string attach_text_20_regular = "\ue136"; + public const string attach_text_24_regular = "\uf8ee"; + public const string auto_fit_height_20_regular = "\ue137"; + public const string auto_fit_height_24_regular = "\ue138"; + public const string auto_fit_width_20_regular = "\ue139"; + public const string auto_fit_width_24_regular = "\ue13a"; + public const string autocorrect_20_regular = "\ue13b"; + public const string autocorrect_24_regular = "\uf1ae"; + public const string autocorrect_32_regular = "\U000f0428"; + public const string autosum_16_regular = "\uf069"; + public const string autosum_20_regular = "\uf1af"; + public const string autosum_24_regular = "\uf1b0"; + public const string backpack_12_regular = "\uf8f0"; + public const string backpack_16_regular = "\uf8f1"; + public const string backpack_20_regular = "\uf8f2"; + public const string backpack_24_regular = "\uf8f3"; + public const string backpack_28_regular = "\uf8f4"; + public const string backpack_32_regular = "\ue13c"; + public const string backpack_48_regular = "\uf8f5"; + public const string backpack_add_20_regular = "\ue13d"; + public const string backpack_add_24_regular = "\ue13e"; + public const string backpack_add_28_regular = "\ue13f"; + public const string backpack_add_48_regular = "\ue140"; + public const string backspace_16_regular = "\U000f00d0"; + public const string backspace_20_regular = "\uf1b1"; + public const string backspace_24_regular = "\uf1b2"; + public const string badge_20_regular = "\ue141"; + public const string badge_24_regular = "\uf1b5"; + public const string balloon_12_regular = "\ue142"; + public const string balloon_16_regular = "\uf8f6"; + public const string balloon_20_regular = "\uf1b6"; + public const string balloon_24_regular = "\uf1b7"; + public const string barcode_scanner_20_regular = "\uf1ba"; + public const string barcode_scanner_24_regular = "\uf1e4"; + public const string battery_0_20_regular = "\uf1bb"; + public const string battery_0_24_regular = "\uf1bc"; + public const string battery_1_20_regular = "\uf1bd"; + public const string battery_1_24_regular = "\uf1be"; + public const string battery_10_16_regular = "\U000f0386"; + public const string battery_10_20_regular = "\ue143"; + public const string battery_10_24_regular = "\ue144"; + public const string battery_2_20_regular = "\uf1bf"; + public const string battery_2_24_regular = "\uf1c0"; + public const string battery_3_20_regular = "\uf1c1"; + public const string battery_3_24_regular = "\uf1c2"; + public const string battery_4_20_regular = "\uf1c3"; + public const string battery_4_24_regular = "\uf1c4"; + public const string battery_5_20_regular = "\uf1c5"; + public const string battery_5_24_regular = "\uf1c6"; + public const string battery_6_20_regular = "\uf1c7"; + public const string battery_6_24_regular = "\uf1c8"; + public const string battery_7_20_regular = "\uf1c9"; + public const string battery_7_24_regular = "\uf1ca"; + public const string battery_8_20_regular = "\uf1cb"; + public const string battery_8_24_regular = "\uf1cc"; + public const string battery_9_20_regular = "\uf1cd"; + public const string battery_9_24_regular = "\uf1ce"; + public const string battery_charge_20_regular = "\uf1cf"; + public const string battery_charge_24_regular = "\uf1d0"; + public const string battery_checkmark_20_regular = "\ue145"; + public const string battery_checkmark_24_regular = "\ue146"; + public const string battery_saver_20_regular = "\uf1d3"; + public const string battery_saver_24_regular = "\uf1d4"; + public const string battery_warning_20_regular = "\ue147"; + public const string battery_warning_24_regular = "\uf1d5"; + public const string beach_16_regular = "\ue148"; + public const string beach_20_regular = "\ue149"; + public const string beach_24_regular = "\ue14a"; + public const string beach_28_regular = "\ue14b"; + public const string beach_32_regular = "\ue14c"; + public const string beach_48_regular = "\ue14d"; + public const string beaker_16_regular = "\uf1d6"; + public const string beaker_20_regular = "\uf1d7"; + public const string beaker_24_regular = "\uf1d8"; + public const string beaker_32_regular = "\ueec0"; + public const string beaker_add_20_regular = "\U000f0338"; + public const string beaker_add_24_regular = "\U000f0339"; + public const string beaker_dismiss_20_regular = "\U000f033a"; + public const string beaker_dismiss_24_regular = "\U000f033b"; + public const string beaker_edit_20_regular = "\uf1e5"; + public const string beaker_edit_24_regular = "\uf1e6"; + public const string beaker_empty_16_regular = "\U000f0387"; + public const string beaker_off_20_regular = "\ueee6"; + public const string beaker_off_32_regular = "\ueee7"; + public const string beaker_settings_16_regular = "\U000f0162"; + public const string beaker_settings_20_regular = "\U000f0163"; + public const string bed_16_regular = "\uf8f7"; + public const string bed_20_regular = "\uf1d9"; + public const string bed_24_regular = "\uf1da"; + public const string bench_20_regular = "\U000f055c"; + public const string bench_24_regular = "\U000f055d"; + public const string bezier_curve_square_12_regular = "\ue14e"; + public const string bezier_curve_square_20_regular = "\ue14f"; + public const string bin_full_20_regular = "\ue150"; + public const string bin_full_24_regular = "\ue151"; + public const string bin_recycle_20_regular = "\U000f01c4"; + public const string bin_recycle_24_regular = "\U000f01c5"; + public const string bin_recycle_full_20_regular = "\U000f01c6"; + public const string bin_recycle_full_24_regular = "\U000f01c7"; + public const string binder_triangle_16_regular = "\U000f0164"; + public const string binder_triangle_20_regular = "\U000f00d1"; + public const string binder_triangle_24_regular = "\U000f00d2"; + public const string binder_triangle_32_regular = "\U000f00d3"; + public const string bluetooth_16_regular = "\uf59c"; + public const string bluetooth_20_regular = "\uf1de"; + public const string bluetooth_24_regular = "\uf1df"; + public const string bluetooth_28_regular = "\uf8f8"; + public const string bluetooth_32_regular = "\uf59d"; + public const string bluetooth_48_regular = "\uf670"; + public const string bluetooth_connected_20_regular = "\ue152"; + public const string bluetooth_connected_24_regular = "\uf1e0"; + public const string bluetooth_disabled_20_regular = "\ue153"; + public const string bluetooth_disabled_24_regular = "\uf1e1"; + public const string bluetooth_searching_20_regular = "\ue154"; + public const string bluetooth_searching_24_regular = "\uf1e2"; + public const string blur_16_regular = "\uf8f9"; + public const string blur_20_regular = "\uf8fa"; + public const string blur_24_regular = "\uf8fb"; + public const string blur_28_regular = "\uf8fc"; + public const string board_16_regular = "\ue155"; + public const string board_20_regular = "\ue156"; + public const string board_24_regular = "\uf1e3"; + public const string board_28_regular = "\ue157"; + public const string board_games_20_regular = "\ue158"; + public const string board_heart_16_regular = "\ue159"; + public const string board_heart_20_regular = "\ue15a"; + public const string board_heart_24_regular = "\ue15b"; + public const string board_split_16_regular = "\ue15c"; + public const string board_split_20_regular = "\ue15d"; + public const string board_split_24_regular = "\ue15e"; + public const string board_split_28_regular = "\ue15f"; + public const string board_split_48_regular = "\ue160"; + public const string book_16_regular = "\U000f0388"; + public const string book_20_regular = "\uf8fd"; + public const string book_24_regular = "\uf8fe"; + public const string book_28_regular = "\U000f05bc"; + public const string book_32_regular = "\U000f03d5"; + public const string book_48_regular = "\U000f05bd"; + public const string book_add_20_regular = "\uf8ff"; + public const string book_add_24_regular = "\ue161"; + public const string book_add_28_regular = "\U000f01ea"; + public const string book_arrow_clockwise_20_regular = "\ue162"; + public const string book_arrow_clockwise_24_regular = "\ue163"; + public const string book_clock_20_regular = "\ue164"; + public const string book_clock_24_regular = "\ue165"; + public const string book_coins_20_regular = "\ue166"; + public const string book_coins_24_regular = "\ue167"; + public const string book_compass_20_regular = "\ue168"; + public const string book_compass_24_regular = "\ue169"; + public const string book_contacts_20_regular = "\ue16a"; + public const string book_contacts_24_regular = "\ue16b"; + public const string book_contacts_28_regular = "\ue16c"; + public const string book_contacts_32_regular = "\ue16d"; + public const string book_database_16_regular = "\U000f03d6"; + public const string book_database_20_regular = "\ue16e"; + public const string book_database_24_regular = "\ue16f"; + public const string book_database_32_regular = "\U000f03d7"; + public const string book_default_28_regular = "\U000f01eb"; + public const string book_dismiss_16_regular = "\U000f0165"; + public const string book_dismiss_20_regular = "\U000f0166"; + public const string book_exclamation_mark_20_regular = "\ue170"; + public const string book_exclamation_mark_24_regular = "\ue171"; + public const string book_globe_20_regular = "\ue172"; + public const string book_globe_24_regular = "\uf1f0"; + public const string book_information_20_regular = "\ue173"; + public const string book_information_24_regular = "\ue174"; + public const string book_letter_20_regular = "\ue175"; + public const string book_letter_24_regular = "\ue176"; + public const string book_number_16_regular = "\uf1f1"; + public const string book_number_20_regular = "\uf1f2"; + public const string book_number_24_regular = "\uf1f3"; + public const string book_open_16_regular = "\ue177"; + public const string book_open_20_regular = "\ue178"; + public const string book_open_24_regular = "\ue179"; + public const string book_open_28_regular = "\ue17a"; + public const string book_open_32_regular = "\ue17b"; + public const string book_open_48_regular = "\ue17c"; + public const string book_open_globe_20_regular = "\ue17d"; + public const string book_open_globe_24_regular = "\ue17e"; + public const string book_open_microphone_20_regular = "\ue17f"; + public const string book_open_microphone_24_regular = "\ue180"; + public const string book_open_microphone_28_regular = "\ue181"; + public const string book_open_microphone_32_regular = "\ue182"; + public const string book_open_microphone_48_regular = "\ue183"; + public const string book_pulse_20_regular = "\ue184"; + public const string book_pulse_24_regular = "\ue185"; + public const string book_question_mark_20_regular = "\ue186"; + public const string book_question_mark_24_regular = "\ue187"; + public const string book_question_mark_rtl_20_regular = "\ue188"; + public const string book_question_mark_rtl_24_regular = "\uf83a"; + public const string book_search_20_regular = "\ue189"; + public const string book_search_24_regular = "\ue18a"; + public const string book_star_20_regular = "\ue18b"; + public const string book_star_24_regular = "\ue18c"; + public const string book_template_20_regular = "\ue18d"; + public const string book_theta_20_regular = "\ue18e"; + public const string book_theta_24_regular = "\ue18f"; + public const string book_toolbox_16_regular = "\U000f03d8"; + public const string book_toolbox_20_regular = "\uf1e7"; + public const string book_toolbox_24_regular = "\ue190"; + public const string bookmark_16_regular = "\uf1f4"; + public const string bookmark_20_regular = "\uf1f5"; + public const string bookmark_24_regular = "\uf1f6"; + public const string bookmark_28_regular = "\uf1f7"; + public const string bookmark_32_regular = "\ue191"; + public const string bookmark_add_20_regular = "\uf1e8"; + public const string bookmark_add_24_regular = "\uf1e9"; + public const string bookmark_multiple_16_regular = "\ue192"; + public const string bookmark_multiple_20_regular = "\ue193"; + public const string bookmark_multiple_24_regular = "\ue194"; + public const string bookmark_multiple_28_regular = "\ue195"; + public const string bookmark_multiple_32_regular = "\ue196"; + public const string bookmark_multiple_48_regular = "\ue197"; + public const string bookmark_off_20_regular = "\ue198"; + public const string bookmark_off_24_regular = "\uf1f8"; + public const string bookmark_search_20_regular = "\ue199"; + public const string bookmark_search_24_regular = "\ue19a"; + public const string border_all_16_regular = "\ue19b"; + public const string border_all_20_regular = "\ue19c"; + public const string border_all_24_regular = "\ue19d"; + public const string border_bottom_20_regular = "\ue19e"; + public const string border_bottom_24_regular = "\ue19f"; + public const string border_bottom_double_20_regular = "\ue1a0"; + public const string border_bottom_double_24_regular = "\ue1a1"; + public const string border_bottom_thick_20_regular = "\ue1a2"; + public const string border_bottom_thick_24_regular = "\ue1a3"; + public const string border_inside_16_regular = "\U000f03ae"; + public const string border_inside_20_regular = "\U000f03af"; + public const string border_inside_24_regular = "\U000f03b0"; + public const string border_left_20_regular = "\ue1a4"; + public const string border_left_24_regular = "\ue1a5"; + public const string border_left_right_20_regular = "\ue1a6"; + public const string border_left_right_24_regular = "\ue1a7"; + public const string border_none_16_regular = "\U000f0389"; + public const string border_none_20_regular = "\ue1a8"; + public const string border_none_24_regular = "\ue1a9"; + public const string border_outside_20_regular = "\ue1aa"; + public const string border_outside_24_regular = "\ue1ab"; + public const string border_outside_thick_20_regular = "\ue1ac"; + public const string border_outside_thick_24_regular = "\ue1ad"; + public const string border_right_20_regular = "\ue1ae"; + public const string border_right_24_regular = "\ue1af"; + public const string border_top_20_regular = "\ue1b0"; + public const string border_top_24_regular = "\ue1b1"; + public const string border_top_bottom_20_regular = "\ue1b2"; + public const string border_top_bottom_24_regular = "\ue1b3"; + public const string border_top_bottom_double_20_regular = "\ue1b4"; + public const string border_top_bottom_double_24_regular = "\ue1b5"; + public const string border_top_bottom_thick_20_regular = "\ue1b6"; + public const string border_top_bottom_thick_24_regular = "\ue1b7"; + public const string bot_20_regular = "\ue1b8"; + public const string bot_24_regular = "\uf1f9"; + public const string bot_add_20_regular = "\ue1b9"; + public const string bot_add_24_regular = "\uf1fa"; + public const string bot_sparkle_20_regular = "\uf6a5"; + public const string bot_sparkle_24_regular = "\uf6a6"; + public const string bow_tie_20_regular = "\U000f00d4"; + public const string bow_tie_24_regular = "\U000f00d5"; + public const string bowl_chopsticks_16_regular = "\uf1ea"; + public const string bowl_chopsticks_20_regular = "\uf1eb"; + public const string bowl_chopsticks_24_regular = "\uf1ec"; + public const string bowl_chopsticks_28_regular = "\uf1ed"; + public const string bowl_salad_20_regular = "\ueee8"; + public const string bowl_salad_24_regular = "\ueee9"; + public const string box_16_regular = "\ue1ba"; + public const string box_20_regular = "\ue1bb"; + public const string box_24_regular = "\ue1bc"; + public const string box_arrow_left_20_regular = "\ue1bd"; + public const string box_arrow_left_24_regular = "\ue1be"; + public const string box_arrow_up_20_regular = "\ue1bf"; + public const string box_arrow_up_24_regular = "\ue1c0"; + public const string box_checkmark_20_regular = "\ue1c1"; + public const string box_checkmark_24_regular = "\ue1c2"; + public const string box_dismiss_20_regular = "\ue1c3"; + public const string box_dismiss_24_regular = "\ue1c4"; + public const string box_edit_20_regular = "\ue1c5"; + public const string box_edit_24_regular = "\ue1c6"; + public const string box_multiple_20_regular = "\ue1c7"; + public const string box_multiple_24_regular = "\ue1c8"; + public const string box_multiple_arrow_left_20_regular = "\ue1c9"; + public const string box_multiple_arrow_left_24_regular = "\ue1ca"; + public const string box_multiple_arrow_right_20_regular = "\ue1cb"; + public const string box_multiple_arrow_right_24_regular = "\ue1cc"; + public const string box_multiple_checkmark_20_regular = "\ue1cd"; + public const string box_multiple_checkmark_24_regular = "\ue1ce"; + public const string box_multiple_search_20_regular = "\ue1cf"; + public const string box_multiple_search_24_regular = "\ue1d0"; + public const string box_search_16_regular = "\uf6a7"; + public const string box_search_20_regular = "\ue1d1"; + public const string box_search_24_regular = "\ue1d2"; + public const string box_toolbox_20_regular = "\ue1d3"; + public const string box_toolbox_24_regular = "\ue1d4"; + public const string braces_16_regular = "\uee90"; + public const string braces_20_regular = "\ue1d5"; + public const string braces_24_regular = "\ue1d6"; + public const string braces_28_regular = "\uee91"; + public const string braces_32_regular = "\uee92"; + public const string braces_48_regular = "\uee93"; + public const string braces_checkmark_16_regular = "\uf0a4"; + public const string braces_dismiss_16_regular = "\uf0a5"; + public const string braces_variable_20_regular = "\ue1d7"; + public const string braces_variable_24_regular = "\ue1d8"; + public const string braces_variable_48_regular = "\U000f0267"; + public const string brain_circuit_20_regular = "\uf1ee"; + public const string brain_circuit_24_regular = "\uf83b"; + public const string branch_16_regular = "\uf0a6"; + public const string branch_20_regular = "\ue1d9"; + public const string branch_24_regular = "\uf1fb"; + public const string branch_compare_16_regular = "\ue1da"; + public const string branch_compare_20_regular = "\ue1db"; + public const string branch_compare_24_regular = "\ue1dc"; + public const string branch_fork_16_regular = "\ue1dd"; + public const string branch_fork_20_regular = "\ue1de"; + public const string branch_fork_24_regular = "\ue1df"; + public const string branch_fork_32_regular = "\uee94"; + public const string branch_fork_hint_20_regular = "\ue1e0"; + public const string branch_fork_hint_24_regular = "\ue1e1"; + public const string branch_fork_link_20_regular = "\ue1e2"; + public const string branch_fork_link_24_regular = "\ue1e3"; + public const string branch_request_16_regular = "\U000f038a"; + public const string branch_request_20_regular = "\ue1e4"; + public const string breakout_room_20_regular = "\ue1e5"; + public const string breakout_room_24_regular = "\ue1e6"; + public const string breakout_room_28_regular = "\ue1e7"; + public const string breakout_room_32_regular = "\U000f05f8"; + public const string briefcase_12_regular = "\ue1e8"; + public const string briefcase_16_regular = "\ue1e9"; + public const string briefcase_20_regular = "\uf1fc"; + public const string briefcase_24_regular = "\uf1fd"; + public const string briefcase_28_regular = "\ue1ea"; + public const string briefcase_32_regular = "\ue1eb"; + public const string briefcase_48_regular = "\ue1ec"; + public const string briefcase_medical_16_regular = "\ue1ed"; + public const string briefcase_medical_20_regular = "\uf1ef"; + public const string briefcase_medical_24_regular = "\ue1ee"; + public const string briefcase_medical_32_regular = "\ue1ef"; + public const string briefcase_off_16_regular = "\ue1f0"; + public const string briefcase_off_20_regular = "\ue1f1"; + public const string briefcase_off_24_regular = "\ue1f2"; + public const string briefcase_off_28_regular = "\ue1f3"; + public const string briefcase_off_32_regular = "\ue1f4"; + public const string briefcase_off_48_regular = "\ue1f5"; + public const string briefcase_person_24_regular = "\U000f0208"; + public const string briefcase_search_20_regular = "\U000f01c8"; + public const string briefcase_search_24_regular = "\U000f01c9"; + public const string brightness_high_16_regular = "\ue1f6"; + public const string brightness_high_20_regular = "\ue1f7"; + public const string brightness_high_24_regular = "\ue1f8"; + public const string brightness_high_28_regular = "\ue1f9"; + public const string brightness_high_32_regular = "\ue1fa"; + public const string brightness_high_48_regular = "\ue1fb"; + public const string brightness_low_16_regular = "\ue1fc"; + public const string brightness_low_20_regular = "\ue1fd"; + public const string brightness_low_24_regular = "\ue1fe"; + public const string brightness_low_28_regular = "\ue1ff"; + public const string brightness_low_32_regular = "\ue200"; + public const string brightness_low_48_regular = "\ue201"; + public const string broad_activity_feed_16_regular = "\ue202"; + public const string broad_activity_feed_20_regular = "\ue203"; + public const string broad_activity_feed_24_regular = "\uf200"; + public const string broom_16_regular = "\uf1fe"; + public const string broom_20_regular = "\uf201"; + public const string broom_24_regular = "\uf202"; + public const string broom_28_regular = "\ue204"; + public const string broom_32_regular = "\U000f0429"; + public const string bubble_multiple_20_regular = "\uf06a"; + public const string bug_16_regular = "\ue205"; + public const string bug_20_regular = "\ue206"; + public const string bug_24_regular = "\ue207"; + public const string bug_arrow_counterclockwise_20_regular = "\ue208"; + public const string bug_prohibited_20_regular = "\ue209"; + public const string building_16_regular = "\ue20a"; + public const string building_20_regular = "\ue20b"; + public const string building_24_regular = "\uf205"; + public const string building_32_regular = "\uf6df"; + public const string building_48_regular = "\uf6e0"; + public const string building_bank_16_regular = "\ue20c"; + public const string building_bank_20_regular = "\ue20d"; + public const string building_bank_24_regular = "\ue20e"; + public const string building_bank_28_regular = "\ue20f"; + public const string building_bank_48_regular = "\ue210"; + public const string building_bank_link_16_regular = "\ue211"; + public const string building_bank_link_20_regular = "\ue212"; + public const string building_bank_link_24_regular = "\ue213"; + public const string building_bank_link_28_regular = "\ue214"; + public const string building_bank_link_48_regular = "\ue215"; + public const string building_bank_toolbox_20_regular = "\uf1ff"; + public const string building_bank_toolbox_24_regular = "\uf83c"; + public const string building_cloud_24_regular = "\U000f0209"; + public const string building_desktop_16_regular = "\uef41"; + public const string building_desktop_20_regular = "\uef42"; + public const string building_desktop_24_regular = "\uef43"; + public const string building_desktop_32_regular = "\U000f03d9"; + public const string building_factory_16_regular = "\ue216"; + public const string building_factory_20_regular = "\ue217"; + public const string building_factory_24_regular = "\ue218"; + public const string building_factory_28_regular = "\ue219"; + public const string building_factory_32_regular = "\ue21a"; + public const string building_factory_48_regular = "\ue21b"; + public const string building_government_16_regular = "\U000f03da"; + public const string building_government_20_regular = "\ue21c"; + public const string building_government_24_regular = "\ue21d"; + public const string building_government_32_regular = "\ue21e"; + public const string building_government_search_16_regular = "\U000f03db"; + public const string building_government_search_20_regular = "\U000f03dc"; + public const string building_government_search_24_regular = "\U000f03dd"; + public const string building_government_search_32_regular = "\U000f03de"; + public const string building_home_16_regular = "\ue21f"; + public const string building_home_20_regular = "\ue220"; + public const string building_home_24_regular = "\ue221"; + public const string building_lighthouse_16_regular = "\U000f04fe"; + public const string building_lighthouse_20_regular = "\ue222"; + public const string building_lighthouse_24_regular = "\U000f04e6"; + public const string building_lighthouse_28_regular = "\U000f055e"; + public const string building_lighthouse_32_regular = "\U000f04e7"; + public const string building_lighthouse_48_regular = "\U000f04e8"; + public const string building_mosque_12_regular = "\U000f02a6"; + public const string building_mosque_16_regular = "\U000f02a7"; + public const string building_mosque_20_regular = "\U000f02a8"; + public const string building_mosque_24_regular = "\U000f02a9"; + public const string building_mosque_28_regular = "\U000f02aa"; + public const string building_mosque_32_regular = "\U000f02ab"; + public const string building_mosque_48_regular = "\U000f02ac"; + public const string building_multiple_20_regular = "\ue223"; + public const string building_multiple_24_regular = "\ue224"; + public const string building_people_16_regular = "\uefd7"; + public const string building_people_20_regular = "\uefd8"; + public const string building_people_24_regular = "\uefd9"; + public const string building_retail_20_regular = "\ue225"; + public const string building_retail_24_regular = "\uf209"; + public const string building_retail_money_20_regular = "\ue226"; + public const string building_retail_money_24_regular = "\ue227"; + public const string building_retail_more_20_regular = "\ue228"; + public const string building_retail_more_24_regular = "\ueeea"; + public const string building_retail_more_32_regular = "\ueec2"; + public const string building_retail_shield_20_regular = "\ue229"; + public const string building_retail_shield_24_regular = "\ue22a"; + public const string building_retail_toolbox_20_regular = "\ue22b"; + public const string building_retail_toolbox_24_regular = "\ue22c"; + public const string building_shop_16_regular = "\ue22d"; + public const string building_shop_20_regular = "\ue22e"; + public const string building_shop_24_regular = "\ue22f"; + public const string building_skyscraper_16_regular = "\ue230"; + public const string building_skyscraper_20_regular = "\ue231"; + public const string building_skyscraper_24_regular = "\ue232"; + public const string building_swap_16_regular = "\U000f0464"; + public const string building_swap_20_regular = "\U000f0465"; + public const string building_swap_24_regular = "\U000f0466"; + public const string building_swap_32_regular = "\U000f0467"; + public const string building_swap_48_regular = "\U000f0468"; + public const string building_townhouse_20_regular = "\uf023"; + public const string building_townhouse_24_regular = "\uf024"; + public const string building_townhouse_32_regular = "\uf025"; + public const string button_16_regular = "\U000f0167"; + public const string button_20_regular = "\U000f0168"; + public const string calculator_16_regular = "\uf06b"; + public const string calculator_20_regular = "\uf20a"; + public const string calculator_24_regular = "\ue233"; + public const string calculator_arrow_clockwise_20_regular = "\ue234"; + public const string calculator_arrow_clockwise_24_regular = "\ue235"; + public const string calculator_multiple_16_regular = "\uf06c"; + public const string calculator_multiple_20_regular = "\ue236"; + public const string calculator_multiple_24_regular = "\ue237"; + public const string calendar_ltr_12_regular = "\ue24c"; + public const string calendar_ltr_16_regular = "\ue24d"; + public const string calendar_ltr_20_regular = "\ue24e"; + public const string calendar_ltr_24_regular = "\ue24f"; + public const string calendar_ltr_28_regular = "\ue250"; + public const string calendar_3_day_16_regular = "\ue238"; + public const string calendar_3_day_20_regular = "\uf20e"; + public const string calendar_3_day_24_regular = "\uf20f"; + public const string calendar_3_day_28_regular = "\uf210"; + public const string calendar_32_regular = "\U000f0287"; + public const string calendar_ltr_48_regular = "\ue252"; + public const string calendar_add_16_regular = "\ue239"; + public const string calendar_add_20_regular = "\uf211"; + public const string calendar_add_24_regular = "\uf212"; + public const string calendar_add_28_regular = "\ue23a"; + public const string calendar_agenda_20_regular = "\uf213"; + public const string calendar_agenda_24_regular = "\uf214"; + public const string calendar_agenda_28_regular = "\uf215"; + public const string calendar_arrow_counterclockwise_16_regular = "\uf0a7"; + public const string calendar_arrow_counterclockwise_20_regular = "\uf0a8"; + public const string calendar_arrow_counterclockwise_24_regular = "\uf0a9"; + public const string calendar_arrow_counterclockwise_28_regular = "\uf0aa"; + public const string calendar_arrow_counterclockwise_32_regular = "\uf0ab"; + public const string calendar_arrow_counterclockwise_48_regular = "\uf0ac"; + public const string calendar_arrow_down_20_regular = "\ue23b"; + public const string calendar_arrow_down_24_regular = "\ue23c"; + public const string calendar_arrow_right_16_regular = "\ue23d"; + public const string calendar_arrow_right_20_regular = "\uf216"; + public const string calendar_arrow_right_24_regular = "\ue23e"; + public const string calendar_assistant_16_regular = "\ue23f"; + public const string calendar_assistant_20_regular = "\uf217"; + public const string calendar_assistant_24_regular = "\uf218"; + public const string calendar_cancel_16_regular = "\ue240"; + public const string calendar_cancel_20_regular = "\uf219"; + public const string calendar_cancel_24_regular = "\uf21a"; + public const string calendar_chat_20_regular = "\ue241"; + public const string calendar_chat_24_regular = "\ue242"; + public const string calendar_checkmark_16_regular = "\uf21b"; + public const string calendar_checkmark_20_regular = "\uf21c"; + public const string calendar_checkmark_24_regular = "\uf8c9"; + public const string calendar_checkmark_28_regular = "\uf85f"; + public const string calendar_clock_16_regular = "\ue243"; + public const string calendar_clock_20_regular = "\uf21d"; + public const string calendar_clock_24_regular = "\uf21e"; + public const string calendar_data_bar_16_regular = "\uee95"; + public const string calendar_data_bar_20_regular = "\uee96"; + public const string calendar_data_bar_24_regular = "\uee97"; + public const string calendar_data_bar_28_regular = "\uee98"; + public const string calendar_date_20_regular = "\U000f0289"; + public const string calendar_date_24_regular = "\U000f028a"; + public const string calendar_date_28_regular = "\U000f028b"; + public const string calendar_day_16_regular = "\ue244"; + public const string calendar_day_20_regular = "\uf222"; + public const string calendar_day_24_regular = "\uf223"; + public const string calendar_day_28_regular = "\uf224"; + public const string calendar_edit_16_regular = "\ue245"; + public const string calendar_edit_20_regular = "\ue246"; + public const string calendar_edit_24_regular = "\ue247"; + public const string calendar_edit_32_regular = "\U000f05a1"; + public const string calendar_empty_16_regular = "\uf225"; + public const string calendar_empty_20_regular = "\uf226"; + public const string calendar_empty_24_regular = "\uf227"; + public const string calendar_empty_28_regular = "\uf228"; + public const string calendar_empty_32_regular = "\ue248"; + public const string calendar_empty_48_regular = "\uef44"; + public const string calendar_error_16_regular = "\uf6e1"; + public const string calendar_error_20_regular = "\ue249"; + public const string calendar_error_24_regular = "\ue24a"; + public const string calendar_eye_20_regular = "\U000f020a"; + public const string calendar_info_16_regular = "\uf203"; + public const string calendar_info_20_regular = "\ue24b"; + public const string calendar_link_24_regular = "\U000f04e9"; + public const string calendar_link_28_regular = "\U000f04ea"; + public const string calendar_lock_16_regular = "\uef45"; + public const string calendar_lock_20_regular = "\uef46"; + public const string calendar_lock_24_regular = "\uef47"; + public const string calendar_lock_28_regular = "\uef48"; + public const string calendar_lock_32_regular = "\uef49"; + public const string calendar_lock_48_regular = "\uef4a"; + public const string calendar_ltr_32_regular = "\ue251"; + public const string calendar_mail_16_regular = "\ue253"; + public const string calendar_mail_20_regular = "\ue254"; + public const string calendar_mention_20_regular = "\ue255"; + public const string calendar_month_20_regular = "\uf22a"; + public const string calendar_month_24_regular = "\uf22b"; + public const string calendar_month_28_regular = "\uf22c"; + public const string calendar_month_32_regular = "\ueec3"; + public const string calendar_multiple_16_regular = "\uf204"; + public const string calendar_multiple_20_regular = "\uf22d"; + public const string calendar_multiple_24_regular = "\uf22e"; + public const string calendar_multiple_28_regular = "\ue256"; + public const string calendar_multiple_32_regular = "\ue257"; + public const string calendar_note_16_regular = "\U000f042a"; + public const string calendar_note_20_regular = "\U000f042b"; + public const string calendar_note_24_regular = "\U000f042c"; + public const string calendar_note_32_regular = "\U000f042d"; + public const string calendar_pattern_16_regular = "\ue258"; + public const string calendar_pattern_20_regular = "\ue259"; + public const string calendar_person_16_regular = "\ue25a"; + public const string calendar_person_20_regular = "\uf230"; + public const string calendar_person_24_regular = "\ue25b"; + public const string calendar_phone_16_regular = "\ue25c"; + public const string calendar_phone_20_regular = "\ue25d"; + public const string calendar_play_16_regular = "\uf0ad"; + public const string calendar_play_20_regular = "\uf0ae"; + public const string calendar_play_24_regular = "\uf0af"; + public const string calendar_play_28_regular = "\uf0b0"; + public const string calendar_question_mark_16_regular = "\ue25e"; + public const string calendar_question_mark_20_regular = "\ue25f"; + public const string calendar_question_mark_24_regular = "\ue260"; + public const string calendar_record_16_regular = "\U000f03df"; + public const string calendar_record_20_regular = "\U000f03e0"; + public const string calendar_record_24_regular = "\U000f03e1"; + public const string calendar_record_28_regular = "\U000f03e2"; + public const string calendar_record_32_regular = "\U000f03e3"; + public const string calendar_record_48_regular = "\U000f03e4"; + public const string calendar_reply_16_regular = "\uf231"; + public const string calendar_reply_20_regular = "\uf232"; + public const string calendar_reply_24_regular = "\uf233"; + public const string calendar_reply_28_regular = "\uf234"; + public const string calendar_rtl_12_regular = "\ue261"; + public const string calendar_rtl_16_regular = "\ue262"; + public const string calendar_rtl_20_regular = "\ue263"; + public const string calendar_rtl_24_regular = "\ue264"; + public const string calendar_rtl_28_regular = "\ue265"; + public const string calendar_rtl_32_regular = "\ue266"; + public const string calendar_rtl_48_regular = "\ue267"; + public const string calendar_search_16_regular = "\uf860"; + public const string calendar_search_20_regular = "\ue268"; + public const string calendar_settings_16_regular = "\ue269"; + public const string calendar_settings_20_regular = "\uf235"; + public const string calendar_settings_24_regular = "\uef4b"; + public const string calendar_settings_28_regular = "\uef4c"; + public const string calendar_settings_32_regular = "\uef4d"; + public const string calendar_settings_48_regular = "\uef4e"; + public const string calendar_shield_16_regular = "\uf0b1"; + public const string calendar_shield_20_regular = "\uf0b2"; + public const string calendar_shield_24_regular = "\uf0b3"; + public const string calendar_shield_28_regular = "\uf0b4"; + public const string calendar_shield_32_regular = "\uf0b5"; + public const string calendar_shield_48_regular = "\uf0b6"; + public const string calendar_sparkle_16_regular = "\U000f04ff"; + public const string calendar_sparkle_20_regular = "\U000f0500"; + public const string calendar_sparkle_24_regular = "\U000f0501"; + public const string calendar_sparkle_28_regular = "\U000f0502"; + public const string calendar_sparkle_32_regular = "\U000f0503"; + public const string calendar_sparkle_48_regular = "\U000f0504"; + public const string calendar_star_16_regular = "\ue26a"; + public const string calendar_star_20_regular = "\uf236"; + public const string calendar_star_24_regular = "\uf237"; + public const string calendar_sync_16_regular = "\uf238"; + public const string calendar_sync_20_regular = "\uf239"; + public const string calendar_sync_24_regular = "\uf23a"; + public const string calendar_template_20_regular = "\U000f0505"; + public const string calendar_template_24_regular = "\U000f0506"; + public const string calendar_template_32_regular = "\U000f0507"; + public const string calendar_today_16_regular = "\uf23b"; + public const string calendar_today_20_regular = "\uf23c"; + public const string calendar_today_24_regular = "\uf23d"; + public const string calendar_today_28_regular = "\uf23e"; + public const string calendar_toolbox_20_regular = "\ue26b"; + public const string calendar_toolbox_24_regular = "\ue26c"; + public const string calendar_video_20_regular = "\U000f055f"; + public const string calendar_video_24_regular = "\U000f04eb"; + public const string calendar_video_28_regular = "\U000f04ec"; + public const string calendar_week_numbers_20_regular = "\ue26d"; + public const string calendar_week_numbers_24_regular = "\uf23f"; + public const string calendar_week_start_20_regular = "\uf240"; + public const string calendar_week_start_24_regular = "\uf241"; + public const string calendar_week_start_28_regular = "\uf242"; + public const string calendar_work_week_16_regular = "\uf243"; + public const string calendar_work_week_20_regular = "\uf244"; + public const string calendar_work_week_24_regular = "\uf245"; + public const string calendar_work_week_28_regular = "\ue26e"; + public const string call_12_regular = "\uef4f"; + public const string call_16_regular = "\ue26f"; + public const string call_20_regular = "\ue270"; + public const string call_24_regular = "\ue271"; + public const string call_28_regular = "\ue272"; + public const string call_32_regular = "\ue273"; + public const string call_48_regular = "\ue274"; + public const string call_add_16_regular = "\ue275"; + public const string call_add_20_regular = "\ue276"; + public const string call_add_24_regular = "\uf246"; + public const string call_checkmark_20_regular = "\uf207"; + public const string call_checkmark_24_regular = "\ue277"; + public const string call_connecting_20_regular = "\ue278"; + public const string call_dismiss_16_regular = "\ue279"; + public const string call_dismiss_20_regular = "\uf208"; + public const string call_dismiss_24_regular = "\uf20b"; + public const string call_end_12_regular = "\U000f02fa"; + public const string call_end_16_regular = "\ue27a"; + public const string call_end_20_regular = "\uf247"; + public const string call_end_24_regular = "\uf248"; + public const string call_end_28_regular = "\uf249"; + public const string call_end_32_regular = "\U000f02fb"; + public const string call_end_48_regular = "\U000f02fc"; + public const string call_exclamation_20_regular = "\ue27b"; + public const string call_forward_16_regular = "\ue27c"; + public const string call_forward_20_regular = "\ue27d"; + public const string call_forward_24_regular = "\uf24a"; + public const string call_forward_28_regular = "\ue27e"; + public const string call_forward_32_regular = "\uf6e7"; + public const string call_forward_48_regular = "\ue27f"; + public const string call_inbound_16_regular = "\uf24b"; + public const string call_inbound_20_regular = "\ue280"; + public const string call_inbound_24_regular = "\uf24c"; + public const string call_inbound_28_regular = "\ue281"; + public const string call_inbound_48_regular = "\ue282"; + public const string call_missed_12_regular = "\uef50"; + public const string call_missed_16_regular = "\uf24d"; + public const string call_missed_20_regular = "\ue283"; + public const string call_missed_24_regular = "\uf24e"; + public const string call_missed_28_regular = "\ue284"; + public const string call_missed_48_regular = "\ue285"; + public const string call_outbound_16_regular = "\uf24f"; + public const string call_outbound_20_regular = "\ue286"; + public const string call_outbound_24_regular = "\uf250"; + public const string call_outbound_28_regular = "\ue287"; + public const string call_outbound_48_regular = "\ue288"; + public const string call_park_16_regular = "\ue289"; + public const string call_park_20_regular = "\ue28a"; + public const string call_park_24_regular = "\uf251"; + public const string call_park_28_regular = "\ue28b"; + public const string call_park_32_regular = "\uf861"; + public const string call_park_48_regular = "\ue28c"; + public const string call_pause_20_regular = "\uf20c"; + public const string call_pause_24_regular = "\uf20d"; + public const string call_prohibited_16_regular = "\ue28d"; + public const string call_prohibited_20_regular = "\ue28e"; + public const string call_prohibited_24_regular = "\ue28f"; + public const string call_prohibited_28_regular = "\ue290"; + public const string call_prohibited_48_regular = "\ue291"; + public const string call_transfer_16_regular = "\ue292"; + public const string call_transfer_20_regular = "\ue293"; + public const string call_transfer_24_regular = "\uf0b7"; + public const string call_transfer_32_regular = "\uf0b8"; + public const string call_warning_16_regular = "\ue294"; + public const string call_warning_20_regular = "\ue295"; + public const string calligraphy_pen_20_regular = "\uf252"; + public const string calligraphy_pen_24_regular = "\uf253"; + public const string calligraphy_pen_checkmark_20_regular = "\ue296"; + public const string calligraphy_pen_error_20_regular = "\ue297"; + public const string calligraphy_pen_question_mark_20_regular = "\ue298"; + public const string camera_16_regular = "\ue299"; + public const string camera_20_regular = "\uf254"; + public const string camera_24_regular = "\uf255"; + public const string camera_28_regular = "\uf256"; + public const string camera_add_20_regular = "\uf257"; + public const string camera_add_24_regular = "\uf258"; + public const string camera_add_48_regular = "\uf259"; + public const string camera_arrow_up_16_regular = "\U000f05be"; + public const string camera_arrow_up_20_regular = "\U000f05bf"; + public const string camera_arrow_up_24_regular = "\U000f05c0"; + public const string camera_dome_16_regular = "\ue29a"; + public const string camera_dome_20_regular = "\ue29b"; + public const string camera_dome_24_regular = "\ue29c"; + public const string camera_dome_28_regular = "\ue29d"; + public const string camera_dome_48_regular = "\ue29e"; + public const string camera_edit_20_regular = "\ue29f"; + public const string camera_off_16_regular = "\uf0b9"; + public const string camera_off_20_regular = "\ue2a0"; + public const string camera_off_24_regular = "\ue2a1"; + public const string camera_sparkles_16_regular = "\uf06d"; + public const string camera_sparkles_20_regular = "\uf026"; + public const string camera_sparkles_24_regular = "\uf027"; + public const string camera_switch_20_regular = "\ue2a2"; + public const string camera_switch_24_regular = "\uf25a"; + public const string card_ui_20_regular = "\U000f0169"; + public const string card_ui_24_regular = "\U000f016a"; + public const string card_ui_portrait_flip_16_regular = "\U000f05f9"; + public const string card_ui_portrait_flip_20_regular = "\U000f05fa"; + public const string card_ui_portrait_flip_24_regular = "\U000f05fb"; + public const string caret_down_12_regular = "\uf25f"; + public const string caret_down_16_regular = "\uf260"; + public const string caret_down_20_regular = "\uf261"; + public const string caret_down_24_regular = "\uf262"; + public const string caret_down_right_12_regular = "\ue2a3"; + public const string caret_down_right_16_regular = "\ue2a4"; + public const string caret_down_right_20_regular = "\ue2a5"; + public const string caret_down_right_24_regular = "\ue2a6"; + public const string caret_left_12_regular = "\uf263"; + public const string caret_left_16_regular = "\uf264"; + public const string caret_left_20_regular = "\uf265"; + public const string caret_left_24_regular = "\uf266"; + public const string caret_right_12_regular = "\uf267"; + public const string caret_right_16_regular = "\uf268"; + public const string caret_right_20_regular = "\uf269"; + public const string caret_right_24_regular = "\uf26a"; + public const string caret_up_12_regular = "\ue2a7"; + public const string caret_up_16_regular = "\ue2a8"; + public const string caret_up_20_regular = "\ue2a9"; + public const string caret_up_24_regular = "\ue2aa"; + public const string cart_16_regular = "\ue2ab"; + public const string cart_20_regular = "\ue2ac"; + public const string cart_24_regular = "\uf26b"; + public const string cast_20_regular = "\uf26c"; + public const string cast_24_regular = "\uf26d"; + public const string cast_28_regular = "\uf26e"; + public const string cast_multiple_20_regular = "\U000f02d0"; + public const string cast_multiple_24_regular = "\U000f02d1"; + public const string cast_multiple_28_regular = "\U000f02d2"; + public const string catch_up_16_regular = "\ue2ad"; + public const string catch_up_20_regular = "\ue2ae"; + public const string catch_up_24_regular = "\ue2af"; + public const string cd_16_regular = "\uf0ba"; + public const string cellular_3g_20_regular = "\ue2b0"; + public const string cellular_3g_24_regular = "\uf26f"; + public const string cellular_4g_20_regular = "\ue2b1"; + public const string cellular_4g_24_regular = "\uf270"; + public const string cellular_5g_20_regular = "\ue2b2"; + public const string cellular_5g_24_regular = "\ue2b3"; + public const string cellular_data_1_20_regular = "\uf271"; + public const string cellular_data_1_24_regular = "\uf272"; + public const string cellular_data_2_20_regular = "\uf273"; + public const string cellular_data_2_24_regular = "\uf274"; + public const string cellular_data_3_20_regular = "\uf275"; + public const string cellular_data_3_24_regular = "\uf276"; + public const string cellular_data_4_20_regular = "\uf277"; + public const string cellular_data_4_24_regular = "\uf278"; + public const string cellular_data_5_20_regular = "\uf279"; + public const string cellular_data_5_24_regular = "\uf27a"; + public const string cellular_off_20_regular = "\ue2b4"; + public const string cellular_off_24_regular = "\ue2b5"; + public const string cellular_warning_20_regular = "\ue2b6"; + public const string cellular_warning_24_regular = "\ue2b7"; + public const string center_horizontal_20_regular = "\ue2b8"; + public const string center_horizontal_24_regular = "\ue2b9"; + public const string center_vertical_20_regular = "\ue2ba"; + public const string center_vertical_24_regular = "\ue2bb"; + public const string certificate_16_regular = "\uf0bb"; + public const string certificate_20_regular = "\uf27e"; + public const string certificate_24_regular = "\uf27f"; + public const string certificate_32_regular = "\U000f0469"; + public const string channel_16_regular = "\uf280"; + public const string channel_20_regular = "\uf281"; + public const string channel_24_regular = "\uf282"; + public const string channel_28_regular = "\ue2bc"; + public const string channel_48_regular = "\ue2bd"; + public const string channel_add_16_regular = "\ue2be"; + public const string channel_add_20_regular = "\ue2bf"; + public const string channel_add_24_regular = "\ue2c0"; + public const string channel_add_28_regular = "\ue2c1"; + public const string channel_add_48_regular = "\ue2c2"; + public const string channel_alert_16_regular = "\ue2c3"; + public const string channel_alert_20_regular = "\ue2c4"; + public const string channel_alert_24_regular = "\ue2c5"; + public const string channel_alert_28_regular = "\ue2c6"; + public const string channel_alert_48_regular = "\ue2c7"; + public const string channel_arrow_left_16_regular = "\ue2c8"; + public const string channel_arrow_left_20_regular = "\ue2c9"; + public const string channel_arrow_left_24_regular = "\ue2ca"; + public const string channel_arrow_left_28_regular = "\ue2cb"; + public const string channel_arrow_left_48_regular = "\ue2cc"; + public const string channel_dismiss_16_regular = "\ue2cd"; + public const string channel_dismiss_20_regular = "\ue2ce"; + public const string channel_dismiss_24_regular = "\ue2cf"; + public const string channel_dismiss_28_regular = "\ue2d0"; + public const string channel_dismiss_48_regular = "\ue2d1"; + public const string channel_share_12_regular = "\ue2d2"; + public const string channel_share_16_regular = "\ue2d3"; + public const string channel_share_20_regular = "\ue2d4"; + public const string channel_share_24_regular = "\ue2d5"; + public const string channel_share_28_regular = "\ue2d6"; + public const string channel_share_48_regular = "\ue2d7"; + public const string channel_subtract_16_regular = "\ue2d8"; + public const string channel_subtract_20_regular = "\ue2d9"; + public const string channel_subtract_24_regular = "\ue2da"; + public const string channel_subtract_28_regular = "\ue2db"; + public const string channel_subtract_48_regular = "\ue2dc"; + public const string chart_multiple_16_regular = "\U000f05d4"; + public const string chart_multiple_20_regular = "\ue2dd"; + public const string chart_multiple_24_regular = "\ue2de"; + public const string chart_person_20_regular = "\ue2df"; + public const string chart_person_24_regular = "\ue2e0"; + public const string chart_person_28_regular = "\ue2e1"; + public const string chart_person_48_regular = "\ue2e2"; + public const string chat_12_regular = "\ue2e3"; + public const string chat_16_regular = "\ue2e4"; + public const string chat_20_regular = "\uf286"; + public const string chat_24_regular = "\uf287"; + public const string chat_28_regular = "\uf288"; + public const string chat_32_regular = "\ue2e5"; + public const string chat_48_regular = "\ue2e6"; + public const string chat_add_16_regular = "\uef51"; + public const string chat_add_20_regular = "\uef52"; + public const string chat_add_24_regular = "\uef53"; + public const string chat_add_28_regular = "\uef54"; + public const string chat_add_32_regular = "\uef55"; + public const string chat_add_48_regular = "\uef56"; + public const string chat_arrow_back_16_regular = "\ue2e7"; + public const string chat_arrow_back_20_regular = "\ue2e8"; + public const string chat_arrow_back_down_16_regular = "\U000f0625"; + public const string chat_arrow_back_down_20_regular = "\U000f0626"; + public const string chat_arrow_back_down_24_regular = "\U000f0627"; + public const string chat_arrow_back_down_28_regular = "\U000f0628"; + public const string chat_arrow_back_down_32_regular = "\U000f0629"; + public const string chat_arrow_back_down_48_regular = "\U000f062a"; + public const string chat_arrow_double_back_16_regular = "\ue2e9"; + public const string chat_arrow_double_back_20_regular = "\ue2ea"; + public const string chat_bubbles_question_16_regular = "\uf8a8"; + public const string chat_bubbles_question_20_regular = "\ue2eb"; + public const string chat_bubbles_question_24_regular = "\uf289"; + public const string chat_bubbles_question_28_regular = "\uf02a"; + public const string chat_bubbles_question_32_regular = "\uf02b"; + public const string chat_cursor_16_regular = "\uef57"; + public const string chat_cursor_20_regular = "\uef58"; + public const string chat_cursor_24_regular = "\uef59"; + public const string chat_dismiss_16_regular = "\ue2ec"; + public const string chat_dismiss_20_regular = "\ue2ed"; + public const string chat_dismiss_24_regular = "\ue2ee"; + public const string chat_empty_12_regular = "\uef5a"; + public const string chat_empty_16_regular = "\uef5b"; + public const string chat_empty_20_regular = "\uef5c"; + public const string chat_empty_24_regular = "\uef5d"; + public const string chat_empty_28_regular = "\uef5e"; + public const string chat_empty_32_regular = "\uef5f"; + public const string chat_empty_48_regular = "\uef60"; + public const string chat_help_20_regular = "\uf220"; + public const string chat_help_24_regular = "\uf28a"; + public const string chat_lock_16_regular = "\U000f03b1"; + public const string chat_lock_20_regular = "\U000f03b2"; + public const string chat_lock_24_regular = "\U000f03b3"; + public const string chat_lock_28_regular = "\U000f03b4"; + public const string chat_mail_20_regular = "\ue2ef"; + public const string chat_multiple_16_regular = "\uf8a9"; + public const string chat_multiple_20_regular = "\uf8c8"; + public const string chat_multiple_24_regular = "\uf8d3"; + public const string chat_multiple_28_regular = "\uecdb"; + public const string chat_multiple_32_regular = "\uecdc"; + public const string chat_multiple_heart_16_regular = "\uf793"; + public const string chat_multiple_heart_20_regular = "\uf794"; + public const string chat_multiple_heart_24_regular = "\uf7cf"; + public const string chat_multiple_heart_28_regular = "\uf7d0"; + public const string chat_multiple_heart_32_regular = "\uf7d1"; + public const string chat_off_20_regular = "\ue2f0"; + public const string chat_off_24_regular = "\uf28b"; + public const string chat_settings_16_regular = "\U000f05c1"; + public const string chat_settings_20_regular = "\uf221"; + public const string chat_settings_24_regular = "\uf229"; + public const string chat_sparkle_16_regular = "\uf7d2"; + public const string chat_sparkle_20_regular = "\uf7d3"; + public const string chat_sparkle_24_regular = "\uf7d4"; + public const string chat_sparkle_28_regular = "\uf7d5"; + public const string chat_sparkle_32_regular = "\uf7d6"; + public const string chat_sparkle_48_regular = "\uf7f2"; + public const string chat_video_20_regular = "\ue2f1"; + public const string chat_video_24_regular = "\ue2f2"; + public const string chat_warning_16_regular = "\ue2f3"; + public const string chat_warning_20_regular = "\ue2f4"; + public const string chat_warning_24_regular = "\uf28c"; + public const string check_20_regular = "\uf27b"; + public const string check_24_regular = "\ue2f5"; + public const string checkbox_1_20_regular = "\ue2f6"; + public const string checkbox_1_24_regular = "\ue2f7"; + public const string checkbox_2_20_regular = "\ue2f8"; + public const string checkbox_2_24_regular = "\ue2f9"; + public const string checkbox_arrow_right_20_regular = "\ue2fa"; + public const string checkbox_arrow_right_24_regular = "\ue2fb"; + public const string checkbox_checked_16_regular = "\uf27c"; + public const string checkbox_checked_20_regular = "\uf28d"; + public const string checkbox_checked_24_regular = "\uf28e"; + public const string checkbox_checked_sync_16_regular = "\uf27d"; + public const string checkbox_checked_sync_20_regular = "\ue2fc"; + public const string checkbox_indeterminate_16_regular = "\ue2fd"; + public const string checkbox_indeterminate_20_regular = "\ue2fe"; + public const string checkbox_indeterminate_24_regular = "\ue2ff"; + public const string checkbox_person_16_regular = "\ue300"; + public const string checkbox_person_20_regular = "\ue301"; + public const string checkbox_person_24_regular = "\ue302"; + public const string square_12_regular = "\ueb73"; + public const string square_16_regular = "\ueb74"; + public const string square_24_regular = "\ueb76"; + public const string checkbox_warning_20_regular = "\ue303"; + public const string checkbox_warning_24_regular = "\ue304"; + public const string checkmark_12_regular = "\uf293"; + public const string checkmark_16_regular = "\ue305"; + public const string checkmark_20_regular = "\uf294"; + public const string checkmark_24_regular = "\uf295"; + public const string checkmark_28_regular = "\uf296"; + public const string checkmark_32_regular = "\uf8d4"; + public const string checkmark_48_regular = "\ue306"; + public const string checkmark_circle_12_regular = "\ue307"; + public const string checkmark_circle_16_regular = "\uf297"; + public const string checkmark_circle_20_regular = "\uf298"; + public const string checkmark_circle_24_regular = "\uf299"; + public const string checkmark_circle_32_regular = "\uf8e8"; + public const string checkmark_circle_48_regular = "\uf29a"; + public const string checkmark_circle_square_16_regular = "\U000f02ad"; + public const string checkmark_circle_square_20_regular = "\U000f02ae"; + public const string checkmark_circle_square_24_regular = "\U000f02af"; + public const string checkmark_circle_warning_16_regular = "\U000f0521"; + public const string checkmark_circle_warning_20_regular = "\U000f0522"; + public const string checkmark_circle_warning_24_regular = "\U000f0523"; + public const string checkmark_lock_16_regular = "\uf29b"; + public const string checkmark_lock_20_regular = "\uf29c"; + public const string checkmark_lock_24_regular = "\uf29d"; + public const string checkmark_note_20_regular = "\ue308"; + public const string checkmark_square_20_regular = "\ue309"; + public const string checkmark_square_24_regular = "\uf29e"; + public const string checkmark_starburst_16_regular = "\uf283"; + public const string checkmark_starburst_20_regular = "\ue30a"; + public const string checkmark_starburst_24_regular = "\ue30b"; + public const string checkmark_underline_circle_16_regular = "\uf29f"; + public const string checkmark_underline_circle_20_regular = "\uf2a0"; + public const string checkmark_underline_circle_24_regular = "\U000f042e"; + public const string chess_20_regular = "\ue30c"; + public const string chevron_circle_down_12_regular = "\ue30d"; + public const string chevron_circle_down_16_regular = "\ue30e"; + public const string chevron_circle_down_20_regular = "\ue30f"; + public const string chevron_circle_down_24_regular = "\ue310"; + public const string chevron_circle_down_28_regular = "\ue311"; + public const string chevron_circle_down_32_regular = "\ue312"; + public const string chevron_circle_down_48_regular = "\ue313"; + public const string chevron_circle_left_12_regular = "\ue314"; + public const string chevron_circle_left_16_regular = "\ue315"; + public const string chevron_circle_left_20_regular = "\ue316"; + public const string chevron_circle_left_24_regular = "\ue317"; + public const string chevron_circle_left_28_regular = "\ue318"; + public const string chevron_circle_left_32_regular = "\ue319"; + public const string chevron_circle_left_48_regular = "\ue31a"; + public const string chevron_circle_right_12_regular = "\ue31b"; + public const string chevron_circle_right_16_regular = "\ue31c"; + public const string chevron_circle_right_20_regular = "\ue31d"; + public const string chevron_circle_right_24_regular = "\ue31e"; + public const string chevron_circle_right_28_regular = "\ue31f"; + public const string chevron_circle_right_32_regular = "\ue320"; + public const string chevron_circle_right_48_regular = "\ue321"; + public const string chevron_circle_up_12_regular = "\ue322"; + public const string chevron_circle_up_16_regular = "\ue323"; + public const string chevron_circle_up_20_regular = "\ue324"; + public const string chevron_circle_up_24_regular = "\ue325"; + public const string chevron_circle_up_28_regular = "\ue326"; + public const string chevron_circle_up_32_regular = "\ue327"; + public const string chevron_circle_up_48_regular = "\ue328"; + public const string chevron_double_down_16_regular = "\uf284"; + public const string chevron_double_down_20_regular = "\ue329"; + public const string chevron_double_left_16_regular = "\uf285"; + public const string chevron_double_left_20_regular = "\ue32a"; + public const string chevron_double_right_16_regular = "\uf2a7"; + public const string chevron_double_right_20_regular = "\ue32b"; + public const string chevron_double_up_16_regular = "\ue32c"; + public const string chevron_double_up_20_regular = "\ue32d"; + public const string chevron_down_12_regular = "\uf2a1"; + public const string chevron_down_16_regular = "\uf2a2"; + public const string chevron_down_20_regular = "\uf2a3"; + public const string chevron_down_24_regular = "\uf2a4"; + public const string chevron_down_28_regular = "\uf2a5"; + public const string chevron_down_32_regular = "\U000f0320"; + public const string chevron_down_48_regular = "\uf2a6"; + public const string chevron_down_up_16_regular = "\U000f016b"; + public const string chevron_down_up_20_regular = "\U000f016c"; + public const string chevron_down_up_24_regular = "\U000f016d"; + public const string chevron_left_12_regular = "\uf2a8"; + public const string chevron_left_16_regular = "\uf2a9"; + public const string chevron_left_20_regular = "\uf2aa"; + public const string chevron_left_24_regular = "\uf2ab"; + public const string chevron_left_28_regular = "\uf2ac"; + public const string chevron_left_32_regular = "\U000f0321"; + public const string chevron_left_48_regular = "\uf2ad"; + public const string chevron_right_12_regular = "\uf2ae"; + public const string chevron_right_16_regular = "\uf2af"; + public const string chevron_right_20_regular = "\uf2b0"; + public const string chevron_right_24_regular = "\uf2b1"; + public const string chevron_right_28_regular = "\uf2b2"; + public const string chevron_right_32_regular = "\U000f0322"; + public const string chevron_right_48_regular = "\uf2b3"; + public const string chevron_up_12_regular = "\uf2b4"; + public const string chevron_up_16_regular = "\uf2b5"; + public const string chevron_up_20_regular = "\uf2b6"; + public const string chevron_up_24_regular = "\uf2b7"; + public const string chevron_up_28_regular = "\uf2b8"; + public const string chevron_up_32_regular = "\U000f0323"; + public const string chevron_up_48_regular = "\uf2b9"; + public const string chevron_up_down_16_regular = "\ue32e"; + public const string chevron_up_down_20_regular = "\ue32f"; + public const string chevron_up_down_24_regular = "\ue330"; + public const string circle_12_regular = "\ue331"; + public const string circle_16_regular = "\uf2ba"; + public const string circle_20_regular = "\uf2bb"; + public const string circle_24_regular = "\uf2bc"; + public const string circle_28_regular = "\U000f00d6"; + public const string circle_32_regular = "\ue332"; + public const string circle_48_regular = "\ue333"; + public const string circle_edit_20_regular = "\ue334"; + public const string circle_edit_24_regular = "\ue335"; + public const string circle_eraser_20_regular = "\ue336"; + public const string circle_half_fill_12_regular = "\ue337"; + public const string circle_half_fill_16_regular = "\uf30a"; + public const string circle_half_fill_20_regular = "\uf2bd"; + public const string circle_half_fill_24_regular = "\uf2be"; + public const string circle_highlight_20_regular = "\U000f05c2"; + public const string circle_highlight_24_regular = "\U000f05c3"; + public const string circle_hint_16_regular = "\U000f0110"; + public const string circle_hint_20_regular = "\U000f0111"; + public const string circle_hint_24_regular = "\U000f05c4"; + public const string circle_hint_half_vertical_16_regular = "\U000f02d3"; + public const string circle_hint_half_vertical_20_regular = "\U000f02d4"; + public const string circle_hint_half_vertical_24_regular = "\U000f02d5"; + public const string circle_image_16_regular = "\uef61"; + public const string circle_image_20_regular = "\ue338"; + public const string circle_image_24_regular = "\uef62"; + public const string circle_image_28_regular = "\uef63"; + public const string circle_line_12_regular = "\ue339"; + public const string circle_line_16_regular = "\U000f01ca"; + public const string circle_line_20_regular = "\ue33a"; + public const string circle_line_24_regular = "\uf2bf"; + public const string circle_multiple_subtract_checkmark_20_regular = "\ue33b"; + public const string circle_off_16_regular = "\ue33c"; + public const string circle_off_20_regular = "\ue33d"; + public const string circle_shadow_20_regular = "\U000f05c5"; + public const string circle_shadow_24_regular = "\U000f05c6"; + public const string circle_small_20_regular = "\ue33e"; + public const string circle_small_24_regular = "\uf2c0"; + public const string city_16_regular = "\uf2c1"; + public const string city_20_regular = "\uf2c2"; + public const string city_24_regular = "\uf2c3"; + public const string class_20_regular = "\ue33f"; + public const string class_24_regular = "\uf2c4"; + public const string classification_16_regular = "\uf2c5"; + public const string classification_20_regular = "\uf2c6"; + public const string classification_24_regular = "\uf2c7"; + public const string classification_32_regular = "\U000f0580"; + public const string clear_formatting_16_regular = "\ue340"; + public const string clear_formatting_20_regular = "\ue341"; + public const string clear_formatting_24_regular = "\uf2c8"; + public const string clipboard_12_regular = "\U000f0508"; + public const string clipboard_16_regular = "\ue342"; + public const string clipboard_20_regular = "\uf2c9"; + public const string clipboard_24_regular = "\uf2ca"; + public const string clipboard_28_regular = "\U000f03e5"; + public const string clipboard_3_day_16_regular = "\uee99"; + public const string clipboard_3_day_20_regular = "\uee9a"; + public const string clipboard_3_day_24_regular = "\uee9b"; + public const string clipboard_32_regular = "\ue343"; + public const string clipboard_48_regular = "\U000f0509"; + public const string clipboard_arrow_right_16_regular = "\ue344"; + public const string clipboard_arrow_right_20_regular = "\ue345"; + public const string clipboard_arrow_right_24_regular = "\ue346"; + public const string clipboard_brush_16_regular = "\U000f046a"; + public const string clipboard_brush_20_regular = "\U000f046b"; + public const string clipboard_brush_24_regular = "\U000f046c"; + public const string clipboard_brush_28_regular = "\U000f046d"; + public const string clipboard_brush_32_regular = "\U000f046e"; + public const string clipboard_bullet_list_ltr_16_regular = "\ue347"; + public const string clipboard_bullet_list_ltr_20_regular = "\ue348"; + public const string clipboard_bullet_list_rtl_16_regular = "\ue349"; + public const string clipboard_bullet_list_rtl_20_regular = "\ue34a"; + public const string clipboard_checkmark_16_regular = "\uf7f3"; + public const string clipboard_checkmark_20_regular = "\ue34b"; + public const string clipboard_checkmark_24_regular = "\ue34c"; + public const string clipboard_clock_20_regular = "\ue34d"; + public const string clipboard_clock_24_regular = "\ue34e"; + public const string clipboard_code_16_regular = "\uf2cb"; + public const string clipboard_code_20_regular = "\uf2cc"; + public const string clipboard_code_24_regular = "\uf2cd"; + public const string clipboard_data_bar_20_regular = "\ue34f"; + public const string clipboard_data_bar_24_regular = "\ue350"; + public const string clipboard_data_bar_32_regular = "\ue351"; + public const string clipboard_day_16_regular = "\uee9c"; + public const string clipboard_day_20_regular = "\uee9d"; + public const string clipboard_day_24_regular = "\uee9e"; + public const string clipboard_edit_20_regular = "\ue352"; + public const string clipboard_error_16_regular = "\uf0bc"; + public const string clipboard_error_20_regular = "\ue353"; + public const string clipboard_error_24_regular = "\ue354"; + public const string clipboard_heart_20_regular = "\uf30b"; + public const string clipboard_heart_24_regular = "\ue355"; + public const string clipboard_image_20_regular = "\ue356"; + public const string clipboard_image_24_regular = "\ue357"; + public const string clipboard_letter_16_regular = "\uf2ce"; + public const string clipboard_letter_20_regular = "\uf2cf"; + public const string clipboard_letter_24_regular = "\uf2d0"; + public const string clipboard_link_16_regular = "\uf2d1"; + public const string clipboard_link_20_regular = "\uf2d2"; + public const string clipboard_link_24_regular = "\uf2d3"; + public const string clipboard_math_formula_16_regular = "\U000f03e6"; + public const string clipboard_math_formula_20_regular = "\U000f03e7"; + public const string clipboard_math_formula_24_regular = "\U000f03e8"; + public const string clipboard_math_formula_28_regular = "\U000f03e9"; + public const string clipboard_math_formula_32_regular = "\U000f03ea"; + public const string clipboard_month_16_regular = "\uee9f"; + public const string clipboard_month_20_regular = "\ueea0"; + public const string clipboard_month_24_regular = "\ueea1"; + public const string clipboard_more_20_regular = "\ue358"; + public const string clipboard_more_24_regular = "\uf2d4"; + public const string clipboard_multiple_16_regular = "\uf0bd"; + public const string clipboard_note_16_regular = "\uf0be"; + public const string clipboard_note_20_regular = "\ue359"; + public const string clipboard_number_123_16_regular = "\U000f03eb"; + public const string clipboard_number_123_20_regular = "\U000f03ec"; + public const string clipboard_number_123_24_regular = "\U000f03ed"; + public const string clipboard_number_123_28_regular = "\U000f03ee"; + public const string clipboard_number_123_32_regular = "\U000f03ef"; + public const string clipboard_paste_16_regular = "\ue35a"; + public const string clipboard_paste_20_regular = "\uf2d5"; + public const string clipboard_paste_24_regular = "\uf2d6"; + public const string clipboard_paste_32_regular = "\U000f020b"; + public const string clipboard_pulse_20_regular = "\uf322"; + public const string clipboard_pulse_24_regular = "\ue35b"; + public const string clipboard_search_20_regular = "\uf2d7"; + public const string clipboard_search_24_regular = "\uf2d8"; + public const string clipboard_settings_20_regular = "\uf32d"; + public const string clipboard_settings_24_regular = "\ue35c"; + public const string clipboard_task_16_regular = "\uf0bf"; + public const string clipboard_task_20_regular = "\ue35d"; + public const string clipboard_task_24_regular = "\ue35e"; + public const string clipboard_task_add_20_regular = "\ue35f"; + public const string clipboard_task_add_24_regular = "\ue360"; + public const string clipboard_task_list_16_regular = "\U000f038b"; + public const string clipboard_task_list_ltr_20_regular = "\ue361"; + public const string clipboard_task_list_ltr_24_regular = "\ue362"; + public const string clipboard_task_list_rtl_20_regular = "\ue363"; + public const string clipboard_task_list_rtl_24_regular = "\ue364"; + public const string clipboard_text_32_regular = "\ue365"; + public const string clipboard_text_edit_20_regular = "\ue366"; + public const string clipboard_text_edit_24_regular = "\ue367"; + public const string clipboard_text_edit_32_regular = "\ue368"; + public const string clipboard_text_ltr_16_regular = "\uf0c0"; + public const string clipboard_text_ltr_20_regular = "\ue369"; + public const string clipboard_text_ltr_24_regular = "\ue36a"; + public const string clipboard_text_rtl_16_regular = "\uf0c1"; + public const string clipboard_text_rtl_20_regular = "\ue36c"; + public const string clipboard_text_rtl_24_regular = "\ue36d"; + public const string clock_12_regular = "\uf2db"; + public const string clock_16_regular = "\uf2dc"; + public const string clock_20_regular = "\uf2dd"; + public const string clock_24_regular = "\uf2de"; + public const string clock_28_regular = "\uf2df"; + public const string clock_32_regular = "\ue36e"; + public const string clock_48_regular = "\uf2e0"; + public const string clock_alarm_16_regular = "\ue36f"; + public const string clock_alarm_20_regular = "\uf2e1"; + public const string clock_alarm_24_regular = "\uf2e2"; + public const string clock_alarm_32_regular = "\ue370"; + public const string clock_arrow_download_20_regular = "\uf32e"; + public const string clock_arrow_download_24_regular = "\ue371"; + public const string clock_bill_16_regular = "\U000f0560"; + public const string clock_bill_20_regular = "\U000f0561"; + public const string clock_bill_24_regular = "\U000f0562"; + public const string clock_bill_32_regular = "\U000f0563"; + public const string clock_dismiss_20_regular = "\ue372"; + public const string clock_dismiss_24_regular = "\ue373"; + public const string clock_lock_16_regular = "\uf819"; + public const string clock_lock_20_regular = "\uf81a"; + public const string clock_lock_24_regular = "\uf83d"; + public const string clock_pause_20_regular = "\ue374"; + public const string clock_pause_24_regular = "\ue375"; + public const string clock_toolbox_20_regular = "\ue376"; + public const string clock_toolbox_24_regular = "\ue377"; + public const string closed_caption_16_regular = "\ue378"; + public const string closed_caption_20_regular = "\ue379"; + public const string closed_caption_24_regular = "\uf2e3"; + public const string closed_caption_28_regular = "\ue37a"; + public const string closed_caption_32_regular = "\ue37b"; + public const string closed_caption_48_regular = "\ue37c"; + public const string closed_caption_off_16_regular = "\ue37d"; + public const string closed_caption_off_20_regular = "\ue37e"; + public const string closed_caption_off_24_regular = "\ue37f"; + public const string closed_caption_off_28_regular = "\ue380"; + public const string closed_caption_off_48_regular = "\ue381"; + public const string cloud_16_regular = "\ue382"; + public const string cloud_20_regular = "\uf2e4"; + public const string cloud_24_regular = "\uf2e5"; + public const string cloud_28_regular = "\ue383"; + public const string cloud_32_regular = "\ue384"; + public const string cloud_48_regular = "\uf2e6"; + public const string cloud_add_16_regular = "\uf32f"; + public const string cloud_add_20_regular = "\ue385"; + public const string cloud_add_24_regular = "\uf0c2"; + public const string cloud_archive_16_regular = "\ue386"; + public const string cloud_archive_20_regular = "\ue387"; + public const string cloud_archive_24_regular = "\ue388"; + public const string cloud_archive_28_regular = "\ue389"; + public const string cloud_archive_32_regular = "\ue38a"; + public const string cloud_archive_48_regular = "\ue38b"; + public const string cloud_arrow_down_16_regular = "\ue38c"; + public const string cloud_arrow_down_20_regular = "\ue38d"; + public const string cloud_arrow_down_24_regular = "\ue38e"; + public const string cloud_arrow_down_28_regular = "\ue38f"; + public const string cloud_arrow_down_32_regular = "\ue390"; + public const string cloud_arrow_down_48_regular = "\ue391"; + public const string cloud_arrow_right_16_regular = "\U000f0524"; + public const string cloud_arrow_right_20_regular = "\U000f0525"; + public const string cloud_arrow_right_24_regular = "\U000f0526"; + public const string cloud_arrow_up_16_regular = "\ue392"; + public const string cloud_arrow_up_20_regular = "\ue393"; + public const string cloud_arrow_up_24_regular = "\ue394"; + public const string cloud_arrow_up_28_regular = "\ue395"; + public const string cloud_arrow_up_32_regular = "\ue396"; + public const string cloud_arrow_up_48_regular = "\ue397"; + public const string cloud_beaker_16_regular = "\U000f046f"; + public const string cloud_beaker_20_regular = "\U000f0470"; + public const string cloud_beaker_24_regular = "\U000f0471"; + public const string cloud_beaker_28_regular = "\U000f0472"; + public const string cloud_beaker_32_regular = "\U000f0473"; + public const string cloud_beaker_48_regular = "\U000f0474"; + public const string cloud_bidirectional_20_regular = "\U000f020c"; + public const string cloud_bidirectional_24_regular = "\U000f020d"; + public const string cloud_checkmark_16_regular = "\ue398"; + public const string cloud_checkmark_20_regular = "\ue399"; + public const string cloud_checkmark_24_regular = "\ue39a"; + public const string cloud_checkmark_28_regular = "\ue39b"; + public const string cloud_checkmark_32_regular = "\ue39c"; + public const string cloud_checkmark_48_regular = "\ue39d"; + public const string cloud_cube_16_regular = "\U000f0475"; + public const string cloud_cube_20_regular = "\U000f0476"; + public const string cloud_cube_24_regular = "\U000f0477"; + public const string cloud_cube_28_regular = "\U000f0478"; + public const string cloud_cube_32_regular = "\U000f0479"; + public const string cloud_cube_48_regular = "\U000f047a"; + public const string cloud_database_20_regular = "\U000f0112"; + public const string cloud_desktop_20_regular = "\U000f0113"; + public const string cloud_dismiss_16_regular = "\ue39e"; + public const string cloud_dismiss_20_regular = "\ue39f"; + public const string cloud_dismiss_24_regular = "\ue3a0"; + public const string cloud_dismiss_28_regular = "\ue3a1"; + public const string cloud_dismiss_32_regular = "\ue3a2"; + public const string cloud_dismiss_48_regular = "\ue3a3"; + public const string cloud_edit_16_regular = "\uf330"; + public const string cloud_edit_20_regular = "\ue3a4"; + public const string cloud_edit_24_regular = "\uf0c3"; + public const string cloud_error_16_regular = "\uefda"; + public const string cloud_error_20_regular = "\uefdb"; + public const string cloud_error_24_regular = "\uefdc"; + public const string cloud_error_28_regular = "\uefdd"; + public const string cloud_error_32_regular = "\uefde"; + public const string cloud_error_48_regular = "\uefdf"; + public const string cloud_flow_20_regular = "\uf337"; + public const string cloud_flow_24_regular = "\ue3a5"; + public const string cloud_link_16_regular = "\uf338"; + public const string cloud_link_20_regular = "\ue3a6"; + public const string cloud_link_24_regular = "\uf0c4"; + public const string cloud_off_16_regular = "\ue3a7"; + public const string cloud_off_20_regular = "\ue3a8"; + public const string cloud_off_24_regular = "\uf2ea"; + public const string cloud_off_28_regular = "\ue3a9"; + public const string cloud_off_32_regular = "\ue3aa"; + public const string cloud_off_48_regular = "\uf2eb"; + public const string cloud_swap_20_regular = "\ue3ab"; + public const string cloud_swap_24_regular = "\ue3ac"; + public const string cloud_sync_16_regular = "\ue3ad"; + public const string cloud_sync_20_regular = "\ue3ae"; + public const string cloud_sync_24_regular = "\ue3af"; + public const string cloud_sync_28_regular = "\ue3b0"; + public const string cloud_sync_32_regular = "\ue3b1"; + public const string cloud_sync_48_regular = "\ue3b2"; + public const string cloud_words_16_regular = "\ue3b3"; + public const string cloud_words_20_regular = "\ue3b4"; + public const string cloud_words_24_regular = "\ue3b5"; + public const string cloud_words_28_regular = "\ue3b6"; + public const string cloud_words_32_regular = "\ue3b7"; + public const string cloud_words_48_regular = "\ue3b8"; + public const string clover_16_regular = "\uf83e"; + public const string clover_20_regular = "\uf8b4"; + public const string clover_24_regular = "\uf8e9"; + public const string clover_28_regular = "\uf8ea"; + public const string clover_32_regular = "\uf8ef"; + public const string clover_48_regular = "\U000f0000"; + public const string code_16_regular = "\uf339"; + public const string code_20_regular = "\uf2ef"; + public const string code_24_regular = "\uf2f0"; + public const string code_block_16_regular = "\uefba"; + public const string code_block_20_regular = "\uefbb"; + public const string code_block_24_regular = "\uefbc"; + public const string code_block_28_regular = "\uefbd"; + public const string code_block_32_regular = "\uefbe"; + public const string code_block_48_regular = "\uefbf"; + public const string code_circle_20_regular = "\ue3b9"; + public const string code_circle_24_regular = "\U000f0114"; + public const string code_circle_32_regular = "\U000f0115"; + public const string code_cs_16_regular = "\uf0c5"; + public const string code_cs_rectangle_16_regular = "\uf0c6"; + public const string code_fs_16_regular = "\uf0c7"; + public const string code_fs_rectangle_16_regular = "\uf0c8"; + public const string code_js_16_regular = "\uf0c9"; + public const string code_js_rectangle_16_regular = "\uf0ca"; + public const string code_py_16_regular = "\uf0cb"; + public const string code_py_rectangle_16_regular = "\uf0cc"; + public const string code_rb_16_regular = "\uf0cd"; + public const string code_rb_rectangle_16_regular = "\uf0ce"; + public const string code_text_16_regular = "\uef64"; + public const string code_text_20_regular = "\ue3ba"; + public const string code_text_edit_20_regular = "\ue3bb"; + public const string code_text_off_16_regular = "\uf0cf"; + public const string code_ts_16_regular = "\uf0d0"; + public const string code_ts_rectangle_16_regular = "\uf0d1"; + public const string code_vb_16_regular = "\uf0d2"; + public const string code_vb_rectangle_16_regular = "\uf0d3"; + public const string collections_16_regular = "\U000f03f0"; + public const string collections_20_regular = "\uf2f1"; + public const string collections_24_regular = "\uf2f2"; + public const string collections_add_20_regular = "\uf2f3"; + public const string collections_add_24_regular = "\uf2f4"; + public const string color_16_regular = "\ue3bc"; + public const string color_20_regular = "\uf2f5"; + public const string color_24_regular = "\uf2f6"; + public const string color_background_20_regular = "\uf2f7"; + public const string color_background_24_regular = "\uf2f8"; + public const string color_background_accent_20_regular = "\ue3bd"; + public const string color_background_accent_24_regular = "\ue3be"; + public const string color_fill_16_regular = "\ue3bf"; + public const string color_fill_20_regular = "\uf2f9"; + public const string color_fill_24_regular = "\uf2fa"; + public const string color_fill_28_regular = "\ue3c0"; + public const string color_fill_accent_16_regular = "\ue3c1"; + public const string color_fill_accent_20_regular = "\ue3c2"; + public const string color_fill_accent_24_regular = "\ue3c3"; + public const string color_fill_accent_28_regular = "\ue3c4"; + public const string color_line_16_regular = "\ue3c5"; + public const string color_line_20_regular = "\uf2fb"; + public const string color_line_24_regular = "\uf2fc"; + public const string color_line_accent_16_regular = "\ue3c6"; + public const string color_line_accent_20_regular = "\ue3c7"; + public const string color_line_accent_24_regular = "\ue3c8"; + public const string column_20_regular = "\ue3c9"; + public const string column_24_regular = "\U000f05d5"; + public const string column_arrow_right_20_regular = "\ue3ca"; + public const string column_double_compare_20_regular = "\ue3cb"; + public const string column_edit_20_regular = "\ue3cc"; + public const string column_edit_24_regular = "\ue3cd"; + public const string column_single_16_regular = "\U000f0116"; + public const string column_single_compare_16_regular = "\U000f016e"; + public const string column_single_compare_20_regular = "\U000f016f"; + public const string column_triple_20_regular = "\ue3ce"; + public const string column_triple_24_regular = "\uf2fd"; + public const string column_triple_edit_20_regular = "\ue3cf"; + public const string column_triple_edit_24_regular = "\ue3d0"; + public const string comma_20_regular = "\ue3d1"; + public const string comma_24_regular = "\ue3d2"; + public const string comment_12_regular = "\ue3d3"; + public const string comment_16_regular = "\uf2fe"; + public const string comment_20_regular = "\uf2ff"; + public const string comment_24_regular = "\uf300"; + public const string comment_28_regular = "\ue3d4"; + public const string comment_32_regular = "\U000f05e6"; + public const string comment_48_regular = "\ue3d5"; + public const string comment_add_12_regular = "\ue3d6"; + public const string comment_add_16_regular = "\ue3d7"; + public const string comment_add_20_regular = "\ue3d8"; + public const string comment_add_24_regular = "\uf301"; + public const string comment_add_28_regular = "\ue3d9"; + public const string comment_add_32_regular = "\U000f05e7"; + public const string comment_add_48_regular = "\ue3da"; + public const string comment_arrow_left_12_regular = "\ue3db"; + public const string comment_arrow_left_16_regular = "\ue3dc"; + public const string comment_arrow_left_20_regular = "\ue3dd"; + public const string comment_arrow_left_24_regular = "\ue3de"; + public const string comment_arrow_left_28_regular = "\ue3df"; + public const string comment_arrow_left_48_regular = "\ue3e0"; + public const string comment_arrow_right_12_regular = "\ue3e1"; + public const string comment_arrow_right_16_regular = "\ue3e2"; + public const string comment_arrow_right_20_regular = "\ue3e3"; + public const string comment_arrow_right_24_regular = "\ue3e4"; + public const string comment_arrow_right_28_regular = "\ue3e5"; + public const string comment_arrow_right_48_regular = "\ue3e6"; + public const string comment_checkmark_12_regular = "\ue3e7"; + public const string comment_checkmark_16_regular = "\ue3e8"; + public const string comment_checkmark_20_regular = "\ue3e9"; + public const string comment_checkmark_24_regular = "\ue3ea"; + public const string comment_checkmark_28_regular = "\ue3eb"; + public const string comment_checkmark_48_regular = "\ue3ec"; + public const string comment_dismiss_20_regular = "\ue3ed"; + public const string comment_dismiss_24_regular = "\ue3ee"; + public const string comment_edit_16_regular = "\U000f020e"; + public const string comment_edit_20_regular = "\ue3ef"; + public const string comment_edit_24_regular = "\ue3f0"; + public const string comment_error_16_regular = "\uf350"; + public const string comment_error_20_regular = "\ue3f1"; + public const string comment_error_24_regular = "\ue3f2"; + public const string comment_lightning_20_regular = "\uf351"; + public const string comment_lightning_24_regular = "\uf361"; + public const string comment_link_16_regular = "\U000f0001"; + public const string comment_link_20_regular = "\U000f0002"; + public const string comment_link_24_regular = "\U000f0003"; + public const string comment_link_28_regular = "\U000f0004"; + public const string comment_link_48_regular = "\U000f0005"; + public const string comment_mention_16_regular = "\uf303"; + public const string comment_mention_20_regular = "\uf304"; + public const string comment_mention_24_regular = "\uf305"; + public const string comment_multiple_16_regular = "\uf306"; + public const string comment_multiple_20_regular = "\uf307"; + public const string comment_multiple_24_regular = "\uf308"; + public const string comment_multiple_28_regular = "\ue3f3"; + public const string comment_multiple_32_regular = "\ue3f4"; + public const string comment_multiple_checkmark_16_regular = "\ue3f5"; + public const string comment_multiple_checkmark_20_regular = "\ue3f6"; + public const string comment_multiple_checkmark_24_regular = "\ue3f7"; + public const string comment_multiple_checkmark_28_regular = "\ue3f8"; + public const string comment_multiple_link_16_regular = "\ue3f9"; + public const string comment_multiple_link_20_regular = "\ue3fa"; + public const string comment_multiple_link_24_regular = "\ue3fb"; + public const string comment_multiple_link_28_regular = "\ue3fc"; + public const string comment_multiple_link_32_regular = "\ue3fd"; + public const string comment_note_20_regular = "\ue3fe"; + public const string comment_note_24_regular = "\ue3ff"; + public const string comment_off_16_regular = "\ue400"; + public const string comment_off_20_regular = "\ue401"; + public const string comment_off_24_regular = "\ue402"; + public const string comment_off_28_regular = "\ue403"; + public const string comment_off_48_regular = "\ue404"; + public const string communication_16_regular = "\uf30c"; + public const string communication_20_regular = "\uf30d"; + public const string communication_24_regular = "\uf30e"; + public const string communication_person_20_regular = "\ue405"; + public const string communication_person_24_regular = "\ue406"; + public const string communication_shield_16_regular = "\U000f03f1"; + public const string communication_shield_20_regular = "\U000f03f2"; + public const string communication_shield_24_regular = "\U000f03f3"; + public const string compass_northwest_16_regular = "\uf30f"; + public const string compass_northwest_20_regular = "\uf310"; + public const string compass_northwest_24_regular = "\uf311"; + public const string compass_northwest_28_regular = "\uf312"; + public const string component_2_double_tap_swipe_down_24_regular = "\ue407"; + public const string component_2_double_tap_swipe_up_24_regular = "\ue408"; + public const string compose_12_regular = "\U000f050a"; + public const string compose_16_regular = "\uf313"; + public const string compose_20_regular = "\uf314"; + public const string compose_24_regular = "\uf315"; + public const string compose_28_regular = "\uf316"; + public const string compose_32_regular = "\U000f050b"; + public const string compose_48_regular = "\U000f050c"; + public const string cone_16_regular = "\uf0d4"; + public const string conference_room_16_regular = "\uf317"; + public const string conference_room_20_regular = "\uf318"; + public const string conference_room_24_regular = "\uf319"; + public const string conference_room_28_regular = "\uf31a"; + public const string conference_room_48_regular = "\uf31b"; + public const string connected_16_regular = "\ueeeb"; + public const string connected_20_regular = "\ueeec"; + public const string connector_16_regular = "\uf31c"; + public const string connector_20_regular = "\uf31d"; + public const string connector_24_regular = "\uf31e"; + public const string contact_card_16_regular = "\uf362"; + public const string contact_card_20_regular = "\uf31f"; + public const string contact_card_24_regular = "\uf320"; + public const string contact_card_28_regular = "\ue409"; + public const string contact_card_32_regular = "\ue40a"; + public const string contact_card_48_regular = "\ue40b"; + public const string contact_card_group_16_regular = "\ue40c"; + public const string contact_card_group_20_regular = "\ue40d"; + public const string contact_card_group_24_regular = "\uf321"; + public const string contact_card_group_28_regular = "\ue40e"; + public const string contact_card_group_48_regular = "\ue40f"; + public const string contact_card_link_16_regular = "\uf363"; + public const string contact_card_link_20_regular = "\ue410"; + public const string contact_card_ribbon_16_regular = "\ue411"; + public const string contact_card_ribbon_20_regular = "\ue412"; + public const string contact_card_ribbon_24_regular = "\ue413"; + public const string contact_card_ribbon_28_regular = "\ue414"; + public const string contact_card_ribbon_32_regular = "\ue415"; + public const string contact_card_ribbon_48_regular = "\ue416"; + public const string content_settings_16_regular = "\uf323"; + public const string content_settings_20_regular = "\uf324"; + public const string content_settings_24_regular = "\uf325"; + public const string content_settings_32_regular = "\ue417"; + public const string content_view_16_regular = "\U000f05c7"; + public const string content_view_20_regular = "\ue418"; + public const string content_view_24_regular = "\ueec4"; + public const string content_view_28_regular = "\ueec5"; + public const string content_view_32_regular = "\ue419"; + public const string content_view_gallery_16_regular = "\U000f02fd"; + public const string content_view_gallery_20_regular = "\ue41a"; + public const string content_view_gallery_24_regular = "\ueea2"; + public const string content_view_gallery_28_regular = "\ueea3"; + public const string content_view_gallery_lightning_16_regular = "\U000f02fe"; + public const string content_view_gallery_lightning_20_regular = "\U000f02ff"; + public const string content_view_gallery_lightning_24_regular = "\U000f0300"; + public const string content_view_gallery_lightning_28_regular = "\U000f0301"; + public const string contract_down_left_16_regular = "\uf364"; + public const string contract_down_left_20_regular = "\uf373"; + public const string contract_down_left_24_regular = "\uf374"; + public const string contract_down_left_28_regular = "\uf375"; + public const string contract_down_left_32_regular = "\uf37b"; + public const string contract_down_left_48_regular = "\uf397"; + public const string contract_up_right_16_regular = "\U000f047b"; + public const string contract_up_right_20_regular = "\U000f047c"; + public const string contract_up_right_24_regular = "\U000f047d"; + public const string contract_up_right_28_regular = "\U000f047e"; + public const string contract_up_right_32_regular = "\U000f047f"; + public const string contract_up_right_48_regular = "\U000f0480"; + public const string control_button_20_regular = "\ue41b"; + public const string control_button_24_regular = "\ue41c"; + public const string convert_range_20_regular = "\ue41d"; + public const string convert_range_24_regular = "\ue41e"; + public const string cookies_16_regular = "\U000f04ed"; + public const string cookies_20_regular = "\uf328"; + public const string cookies_24_regular = "\uf329"; + public const string cookies_28_regular = "\U000f04ee"; + public const string cookies_32_regular = "\U000f04ef"; + public const string cookies_48_regular = "\U000f04f0"; + public const string copy_16_regular = "\uf32a"; + public const string copy_20_regular = "\uf32b"; + public const string copy_24_regular = "\uf32c"; + public const string copy_32_regular = "\U000f0006"; + public const string copy_add_20_regular = "\ue41f"; + public const string copy_add_24_regular = "\ue420"; + public const string copy_arrow_right_16_regular = "\ue421"; + public const string copy_arrow_right_20_regular = "\ue422"; + public const string copy_arrow_right_24_regular = "\ue423"; + public const string copy_select_20_regular = "\ue424"; + public const string copy_select_24_regular = "\U000f0007"; + public const string couch_12_regular = "\ue425"; + public const string couch_20_regular = "\ue426"; + public const string couch_24_regular = "\ue427"; + public const string couch_32_regular = "\uefe0"; + public const string couch_48_regular = "\uefe1"; + public const string credit_card_clock_20_regular = "\ueec6"; + public const string credit_card_clock_24_regular = "\ueec7"; + public const string credit_card_clock_28_regular = "\ueec8"; + public const string credit_card_clock_32_regular = "\ueec9"; + public const string credit_card_person_20_regular = "\ue428"; + public const string credit_card_person_24_regular = "\ue429"; + public const string credit_card_toolbox_20_regular = "\uf398"; + public const string credit_card_toolbox_24_regular = "\ue42a"; + public const string crop_16_regular = "\uf02c"; + public const string crop_20_regular = "\ue42b"; + public const string crop_24_regular = "\uf331"; + public const string crop_28_regular = "\uf02d"; + public const string crop_32_regular = "\uf02e"; + public const string crop_48_regular = "\uf02f"; + public const string crop_arrow_rotate_16_regular = "\U000f05e8"; + public const string crop_arrow_rotate_20_regular = "\U000f05e9"; + public const string crop_arrow_rotate_24_regular = "\U000f05ea"; + public const string crop_interim_20_regular = "\ue42c"; + public const string crop_interim_24_regular = "\uf332"; + public const string crop_interim_off_20_regular = "\ue42d"; + public const string crop_interim_off_24_regular = "\uf333"; + public const string crop_sparkle_24_regular = "\U000f0170"; + public const string crown_16_regular = "\uf06e"; + public const string crown_20_regular = "\uf06f"; + public const string crown_24_regular = "\U000f020f"; + public const string crown_subtract_24_regular = "\U000f0210"; + public const string cube_12_regular = "\ue42e"; + public const string cube_16_regular = "\uf334"; + public const string cube_20_regular = "\uf335"; + public const string cube_24_regular = "\uf336"; + public const string cube_32_regular = "\ueeca"; + public const string cube_48_regular = "\U000f0268"; + public const string cube_add_20_regular = "\ue42f"; + public const string cube_arrow_curve_down_20_regular = "\ue430"; + public const string cube_link_20_regular = "\ue431"; + public const string cube_multiple_20_regular = "\ue432"; + public const string cube_multiple_24_regular = "\ue433"; + public const string cube_quick_16_regular = "\ue434"; + public const string cube_quick_20_regular = "\ue435"; + public const string cube_quick_24_regular = "\ue436"; + public const string cube_quick_28_regular = "\ue437"; + public const string cube_rotate_20_regular = "\ue438"; + public const string cube_sync_20_regular = "\ue439"; + public const string cube_sync_24_regular = "\ue43a"; + public const string cube_tree_20_regular = "\ue43b"; + public const string cube_tree_24_regular = "\ue43c"; + public const string currency_dollar_euro_16_regular = "\ue43d"; + public const string currency_dollar_euro_20_regular = "\ue43e"; + public const string currency_dollar_euro_24_regular = "\ue43f"; + public const string currency_dollar_rupee_16_regular = "\ue440"; + public const string currency_dollar_rupee_20_regular = "\ue441"; + public const string currency_dollar_rupee_24_regular = "\ue442"; + public const string cursor_16_regular = "\U000f0171"; + public const string cursor_20_regular = "\ue443"; + public const string cursor_24_regular = "\ue444"; + public const string cursor_28_regular = "\U000f05fc"; + public const string cursor_32_regular = "\U000f05fd"; + public const string cursor_click_20_regular = "\ue445"; + public const string cursor_click_24_regular = "\ue446"; + public const string cursor_hover_16_regular = "\ue447"; + public const string cursor_hover_20_regular = "\ue448"; + public const string cursor_hover_24_regular = "\ue449"; + public const string cursor_hover_28_regular = "\ue44a"; + public const string cursor_hover_32_regular = "\ue44b"; + public const string cursor_hover_48_regular = "\ue44c"; + public const string cursor_hover_off_16_regular = "\ue44d"; + public const string cursor_hover_off_20_regular = "\ue44e"; + public const string cursor_hover_off_24_regular = "\ue44f"; + public const string cursor_hover_off_28_regular = "\ue450"; + public const string cursor_hover_off_48_regular = "\ue451"; + public const string cursor_prohibited_16_regular = "\U000f0172"; + public const string cursor_prohibited_20_regular = "\U000f0173"; + public const string cut_16_regular = "\U000f038c"; + public const string cut_20_regular = "\uf33a"; + public const string cut_24_regular = "\uf33b"; + public const string dark_theme_20_regular = "\ue452"; + public const string dark_theme_24_regular = "\uf33c"; + public const string data_area_20_regular = "\ue453"; + public const string data_area_24_regular = "\uf33d"; + public const string data_bar_horizontal_20_regular = "\uf39b"; + public const string data_bar_horizontal_24_regular = "\uf33e"; + public const string data_bar_horizontal_descending_16_regular = "\uf0d5"; + public const string data_bar_vertical_16_regular = "\ueea4"; + public const string data_bar_vertical_20_regular = "\uf33f"; + public const string data_bar_vertical_24_regular = "\uf340"; + public const string data_bar_vertical_32_regular = "\ueecb"; + public const string data_bar_vertical_add_20_regular = "\ue454"; + public const string data_bar_vertical_add_24_regular = "\ue455"; + public const string data_bar_vertical_arrow_down_16_regular = "\U000f05a2"; + public const string data_bar_vertical_arrow_down_20_regular = "\U000f05a3"; + public const string data_bar_vertical_arrow_down_24_regular = "\U000f05a4"; + public const string data_bar_vertical_ascending_16_regular = "\uf0d6"; + public const string data_bar_vertical_ascending_20_regular = "\U000f042f"; + public const string data_bar_vertical_ascending_24_regular = "\U000f0430"; + public const string data_bar_vertical_star_16_regular = "\uefc0"; + public const string data_bar_vertical_star_20_regular = "\uefc1"; + public const string data_bar_vertical_star_24_regular = "\uefc2"; + public const string data_bar_vertical_star_32_regular = "\uefc3"; + public const string data_funnel_20_regular = "\ue456"; + public const string data_funnel_24_regular = "\uf341"; + public const string data_histogram_16_regular = "\U000f0174"; + public const string data_histogram_20_regular = "\ue457"; + public const string data_histogram_24_regular = "\uf342"; + public const string data_line_20_regular = "\ue458"; + public const string data_line_24_regular = "\uf343"; + public const string data_pie_16_regular = "\U000f05d6"; + public const string data_pie_20_regular = "\uf344"; + public const string data_pie_24_regular = "\uf345"; + public const string data_scatter_20_regular = "\ue459"; + public const string data_scatter_24_regular = "\uf346"; + public const string data_sunburst_20_regular = "\ue45a"; + public const string data_sunburst_24_regular = "\uf347"; + public const string data_treemap_20_regular = "\ue45b"; + public const string data_treemap_24_regular = "\uf348"; + public const string data_trending_16_regular = "\ue45c"; + public const string data_trending_20_regular = "\ue45d"; + public const string data_trending_24_regular = "\ue45e"; + public const string data_trending_28_regular = "\uf030"; + public const string data_trending_32_regular = "\uf031"; + public const string data_trending_48_regular = "\uf032"; + public const string data_usage_16_regular = "\U000f0564"; + public const string data_usage_20_regular = "\ue45f"; + public const string data_usage_24_regular = "\uf349"; + public const string data_usage_edit_20_regular = "\uf3b2"; + public const string data_usage_edit_24_regular = "\ue460"; + public const string data_usage_settings_16_regular = "\U000f0565"; + public const string data_usage_settings_20_regular = "\ue461"; + public const string data_usage_settings_24_regular = "\U000f0566"; + public const string data_usage_toolbox_20_regular = "\ue462"; + public const string data_usage_toolbox_24_regular = "\ue463"; + public const string data_waterfall_20_regular = "\ue464"; + public const string data_waterfall_24_regular = "\uf34a"; + public const string data_whisker_20_regular = "\ue465"; + public const string data_whisker_24_regular = "\uf34b"; + public const string database_16_regular = "\uf0d7"; + public const string database_20_regular = "\ue466"; + public const string database_24_regular = "\ue467"; + public const string database_32_regular = "\ueecc"; + public const string database_48_regular = "\U000f0008"; + public const string database_arrow_down_20_regular = "\ue468"; + public const string database_arrow_right_20_regular = "\ue469"; + public const string database_arrow_right_24_regular = "\uefe2"; + public const string database_arrow_right_32_regular = "\uefc4"; + public const string database_arrow_up_20_regular = "\ue46a"; + public const string database_lightning_20_regular = "\ue46b"; + public const string database_link_20_regular = "\ue46c"; + public const string database_link_24_regular = "\ue46d"; + public const string database_multiple_20_regular = "\ue46e"; + public const string database_multiple_32_regular = "\U000f0009"; + public const string database_person_20_regular = "\ue46f"; + public const string database_person_24_regular = "\ue470"; + public const string database_plug_connected_20_regular = "\ue471"; + public const string database_search_20_regular = "\ue472"; + public const string database_search_24_regular = "\ue473"; + public const string database_stack_16_regular = "\uf0d8"; + public const string database_switch_20_regular = "\ue474"; + public const string database_warning_20_regular = "\ue475"; + public const string database_window_20_regular = "\ue476"; + public const string decimal_arrow_left_20_regular = "\ue477"; + public const string decimal_arrow_left_24_regular = "\ue478"; + public const string decimal_arrow_right_20_regular = "\ue479"; + public const string decimal_arrow_right_24_regular = "\ue47a"; + public const string delete_12_regular = "\ueea5"; + public const string delete_16_regular = "\ue47b"; + public const string delete_20_regular = "\uf34c"; + public const string delete_24_regular = "\uf34d"; + public const string delete_28_regular = "\uf34e"; + public const string delete_32_regular = "\ueea6"; + public const string delete_48_regular = "\uf34f"; + public const string delete_arrow_back_16_regular = "\ue47c"; + public const string delete_arrow_back_20_regular = "\ue47d"; + public const string delete_dismiss_20_regular = "\ue47e"; + public const string delete_dismiss_24_regular = "\ue47f"; + public const string delete_dismiss_28_regular = "\ue480"; + public const string delete_lines_20_regular = "\ue481"; + public const string delete_off_20_regular = "\uf352"; + public const string delete_off_24_regular = "\uf353"; + public const string dentist_12_regular = "\ue482"; + public const string dentist_16_regular = "\ue483"; + public const string dentist_20_regular = "\ue484"; + public const string dentist_24_regular = "\uf354"; + public const string dentist_28_regular = "\ue485"; + public const string dentist_48_regular = "\ue486"; + public const string design_ideas_16_regular = "\uf355"; + public const string design_ideas_20_regular = "\uf356"; + public const string design_ideas_24_regular = "\uf357"; + public const string desk_16_regular = "\U000f0269"; + public const string desk_20_regular = "\U000f01cb"; + public const string desk_24_regular = "\U000f01cc"; + public const string desk_28_regular = "\U000f026a"; + public const string desk_32_regular = "\U000f026b"; + public const string desk_48_regular = "\U000f026c"; + public const string desktop_16_regular = "\uf358"; + public const string desktop_20_regular = "\uf359"; + public const string desktop_24_regular = "\uf35a"; + public const string desktop_28_regular = "\uf35b"; + public const string desktop_32_regular = "\ue487"; + public const string desktop_arrow_down_16_regular = "\U000f0117"; + public const string desktop_arrow_down_20_regular = "\U000f0118"; + public const string desktop_arrow_down_24_regular = "\U000f0119"; + public const string desktop_arrow_down_32_regular = "\U000f062b"; + public const string desktop_arrow_right_16_regular = "\ue488"; + public const string desktop_arrow_right_20_regular = "\ue489"; + public const string desktop_arrow_right_24_regular = "\ue48a"; + public const string desktop_checkmark_16_regular = "\uef65"; + public const string desktop_checkmark_20_regular = "\uef66"; + public const string desktop_checkmark_24_regular = "\uef67"; + public const string desktop_cursor_16_regular = "\ue48b"; + public const string desktop_cursor_20_regular = "\ue48c"; + public const string desktop_cursor_24_regular = "\ue48d"; + public const string desktop_cursor_28_regular = "\ue48e"; + public const string desktop_edit_16_regular = "\ue48f"; + public const string desktop_edit_20_regular = "\ue490"; + public const string desktop_edit_24_regular = "\ue491"; + public const string desktop_flow_20_regular = "\ue492"; + public const string desktop_flow_24_regular = "\ue493"; + public const string desktop_keyboard_16_regular = "\ue494"; + public const string desktop_keyboard_20_regular = "\ue495"; + public const string desktop_keyboard_24_regular = "\ue496"; + public const string desktop_keyboard_28_regular = "\ue497"; + public const string desktop_mac_16_regular = "\ue498"; + public const string desktop_mac_20_regular = "\ue499"; + public const string desktop_mac_24_regular = "\ue49a"; + public const string desktop_mac_32_regular = "\ue49b"; + public const string desktop_off_20_regular = "\U000f05eb"; + public const string desktop_off_24_regular = "\U000f05ec"; + public const string desktop_pulse_16_regular = "\ue49c"; + public const string desktop_pulse_20_regular = "\ue49d"; + public const string desktop_pulse_24_regular = "\ue49e"; + public const string desktop_pulse_28_regular = "\ue49f"; + public const string desktop_pulse_32_regular = "\ue4a0"; + public const string desktop_pulse_48_regular = "\ue4a1"; + public const string desktop_signal_20_regular = "\ue4a2"; + public const string desktop_signal_24_regular = "\ue4a3"; + public const string desktop_speaker_20_regular = "\ue4a4"; + public const string desktop_speaker_24_regular = "\ue4a5"; + public const string desktop_speaker_off_20_regular = "\ue4a6"; + public const string desktop_speaker_off_24_regular = "\ue4a7"; + public const string desktop_sync_16_regular = "\uf3b3"; + public const string desktop_sync_20_regular = "\ue4a8"; + public const string desktop_sync_24_regular = "\ue4a9"; + public const string desktop_toolbox_20_regular = "\ue4aa"; + public const string desktop_toolbox_24_regular = "\ue4ab"; + public const string desktop_tower_20_regular = "\U000f011a"; + public const string desktop_tower_24_regular = "\U000f011b"; + public const string developer_board_16_regular = "\uf0d9"; + public const string developer_board_20_regular = "\ue4ac"; + public const string developer_board_24_regular = "\uf35c"; + public const string developer_board_lightning_20_regular = "\ue4ad"; + public const string developer_board_lightning_toolbox_20_regular = "\ue4ae"; + public const string developer_board_search_20_regular = "\ue4af"; + public const string developer_board_search_24_regular = "\ue4b0"; + public const string device_eq_16_regular = "\U000f000a"; + public const string device_eq_20_regular = "\ue4b1"; + public const string device_eq_24_regular = "\uf35d"; + public const string device_meeting_room_16_regular = "\uf3b4"; + public const string device_meeting_room_20_regular = "\ue4b2"; + public const string device_meeting_room_24_regular = "\uf3b5"; + public const string device_meeting_room_28_regular = "\uf3b6"; + public const string device_meeting_room_32_regular = "\uf3b7"; + public const string device_meeting_room_48_regular = "\uf3bc"; + public const string device_meeting_room_remote_16_regular = "\uf3bd"; + public const string device_meeting_room_remote_20_regular = "\ue4b3"; + public const string device_meeting_room_remote_24_regular = "\uf3c2"; + public const string device_meeting_room_remote_28_regular = "\uf3cd"; + public const string device_meeting_room_remote_32_regular = "\uf3ed"; + public const string device_meeting_room_remote_48_regular = "\uf3ee"; + public const string diagram_20_regular = "\ue4b4"; + public const string diagram_24_regular = "\ue4b5"; + public const string dialpad_20_regular = "\uf35e"; + public const string dialpad_24_regular = "\uf35f"; + public const string dialpad_28_regular = "\ue4b6"; + public const string dialpad_32_regular = "\ue4b7"; + public const string dialpad_48_regular = "\ue4b8"; + public const string dialpad_off_20_regular = "\ue4b9"; + public const string dialpad_off_24_regular = "\uf360"; + public const string dialpad_question_mark_20_regular = "\U000f03f4"; + public const string dialpad_question_mark_24_regular = "\U000f03f5"; + public const string diamond_16_regular = "\ue4ba"; + public const string diamond_20_regular = "\ue4bb"; + public const string diamond_24_regular = "\ue4bc"; + public const string diamond_28_regular = "\ue4bd"; + public const string diamond_32_regular = "\ue4be"; + public const string diamond_48_regular = "\ue4bf"; + public const string directions_16_regular = "\ue4c0"; + public const string directions_20_regular = "\uf365"; + public const string directions_24_regular = "\uf366"; + public const string dishwasher_20_regular = "\uefe3"; + public const string dishwasher_24_regular = "\uefe4"; + public const string dishwasher_32_regular = "\uefe5"; + public const string dishwasher_48_regular = "\uefe6"; + public const string dismiss_12_regular = "\uf367"; + public const string dismiss_16_regular = "\uf368"; + public const string dismiss_20_regular = "\uf369"; + public const string dismiss_24_regular = "\uf36a"; + public const string dismiss_28_regular = "\uf36b"; + public const string dismiss_32_regular = "\uf3f3"; + public const string dismiss_48_regular = "\uf400"; + public const string dismiss_circle_12_regular = "\ue4c1"; + public const string dismiss_circle_16_regular = "\uf36c"; + public const string dismiss_circle_20_regular = "\uf36d"; + public const string dismiss_circle_24_regular = "\uf36e"; + public const string dismiss_circle_28_regular = "\ue4c2"; + public const string dismiss_circle_32_regular = "\ue4c3"; + public const string dismiss_circle_48_regular = "\uf36f"; + public const string dismiss_square_20_regular = "\ue4c4"; + public const string dismiss_square_24_regular = "\ue4c5"; + public const string dismiss_square_multiple_16_regular = "\ue4c6"; + public const string dismiss_square_multiple_20_regular = "\ue4c7"; + public const string diversity_16_regular = "\U000f0431"; + public const string diversity_20_regular = "\ue4c8"; + public const string diversity_24_regular = "\ue4c9"; + public const string diversity_28_regular = "\ue4ca"; + public const string diversity_48_regular = "\ue4cb"; + public const string divider_short_16_regular = "\ue4cc"; + public const string divider_short_20_regular = "\ue4cd"; + public const string divider_short_24_regular = "\uf370"; + public const string divider_tall_16_regular = "\ue4ce"; + public const string divider_tall_20_regular = "\ue4cf"; + public const string divider_tall_24_regular = "\uf371"; + public const string dock_20_regular = "\ue4d0"; + public const string dock_24_regular = "\uf372"; + public const string dock_row_20_regular = "\ue4d1"; + public const string dock_row_24_regular = "\uf376"; + public const string doctor_12_regular = "\ue4d2"; + public const string doctor_16_regular = "\ue4d3"; + public const string doctor_20_regular = "\ue4d4"; + public const string doctor_24_regular = "\uf377"; + public const string doctor_28_regular = "\ue4d5"; + public const string doctor_48_regular = "\ue4d6"; + public const string document_100_16_regular = "\U000f000b"; + public const string document_100_20_regular = "\U000f000c"; + public const string document_100_24_regular = "\U000f000d"; + public const string document_16_regular = "\ue4d7"; + public const string document_20_regular = "\uf378"; + public const string document_24_regular = "\uf379"; + public const string document_28_regular = "\uf37a"; + public const string document_32_regular = "\ue4d8"; + public const string document_48_regular = "\ue4d9"; + public const string document_add_16_regular = "\ue4da"; + public const string document_add_20_regular = "\ue4db"; + public const string document_add_24_regular = "\ue4dc"; + public const string document_add_28_regular = "\ue4dd"; + public const string document_add_48_regular = "\ue4de"; + public const string document_arrow_down_16_regular = "\ue4df"; + public const string document_arrow_down_20_regular = "\ue4e0"; + public const string document_arrow_down_24_regular = "\U000f0527"; + public const string document_arrow_left_16_regular = "\ue4e1"; + public const string document_arrow_left_20_regular = "\ue4e2"; + public const string document_arrow_left_24_regular = "\ue4e3"; + public const string document_arrow_left_28_regular = "\ue4e4"; + public const string document_arrow_left_48_regular = "\ue4e5"; + public const string document_arrow_right_20_regular = "\ue4e6"; + public const string document_arrow_right_24_regular = "\ue4e7"; + public const string document_arrow_up_16_regular = "\uf401"; + public const string document_arrow_up_20_regular = "\ue4e8"; + public const string document_border_20_regular = "\U000f000e"; + public const string document_border_24_regular = "\U000f000f"; + public const string document_border_32_regular = "\U000f0010"; + public const string document_border_print_20_regular = "\U000f0011"; + public const string document_border_print_24_regular = "\U000f0012"; + public const string document_border_print_32_regular = "\U000f0013"; + public const string document_briefcase_16_regular = "\U000f03f6"; + public const string document_briefcase_20_regular = "\uf37c"; + public const string document_briefcase_24_regular = "\uf37d"; + public const string document_briefcase_32_regular = "\U000f03f7"; + public const string document_bullet_list_16_regular = "\U000f0014"; + public const string document_bullet_list_20_regular = "\uf402"; + public const string document_bullet_list_24_regular = "\uf403"; + public const string document_bullet_list_arrow_left_16_regular = "\U000f0015"; + public const string document_bullet_list_arrow_left_20_regular = "\U000f0016"; + public const string document_bullet_list_arrow_left_24_regular = "\U000f0017"; + public const string document_bullet_list_clock_20_regular = "\ue4e9"; + public const string document_bullet_list_clock_24_regular = "\ue4ea"; + public const string document_bullet_list_cube_16_regular = "\U000f0018"; + public const string document_bullet_list_cube_20_regular = "\U000f0019"; + public const string document_bullet_list_cube_24_regular = "\U000f001a"; + public const string document_bullet_list_multiple_20_regular = "\ue4eb"; + public const string document_bullet_list_multiple_24_regular = "\ue4ec"; + public const string document_bullet_list_off_20_regular = "\ue4ed"; + public const string document_bullet_list_off_24_regular = "\ue4ee"; + public const string document_catch_up_16_regular = "\ue4ef"; + public const string document_catch_up_20_regular = "\ue4f0"; + public const string document_catch_up_24_regular = "\uf37e"; + public const string document_checkmark_16_regular = "\U000f011c"; + public const string document_checkmark_20_regular = "\ue4f1"; + public const string document_checkmark_24_regular = "\ue4f2"; + public const string document_chevron_double_20_regular = "\ue4f3"; + public const string document_chevron_double_24_regular = "\ue4f4"; + public const string document_contract_16_regular = "\uf0da"; + public const string document_copy_16_regular = "\uf37f"; + public const string document_copy_20_regular = "\uf380"; + public const string document_copy_24_regular = "\uf381"; + public const string document_copy_48_regular = "\uf382"; + public const string document_cs_16_regular = "\uf0db"; + public const string document_css_16_regular = "\uf0dc"; + public const string document_css_20_regular = "\ue4f5"; + public const string document_css_24_regular = "\ue4f6"; + public const string document_cube_20_regular = "\U000f033c"; + public const string document_cube_24_regular = "\U000f033d"; + public const string document_data_16_regular = "\uf0dd"; + public const string document_data_20_regular = "\ue4f7"; + public const string document_data_24_regular = "\ue4f8"; + public const string document_data_32_regular = "\ueecd"; + public const string document_data_link_16_regular = "\U000f001b"; + public const string document_data_link_20_regular = "\U000f001c"; + public const string document_data_link_24_regular = "\U000f001d"; + public const string document_data_link_32_regular = "\U000f001e"; + public const string document_data_lock_16_regular = "\U000f0481"; + public const string document_data_lock_20_regular = "\U000f0482"; + public const string document_data_lock_24_regular = "\U000f0483"; + public const string document_data_lock_32_regular = "\U000f0484"; + public const string document_database_20_regular = "\uf033"; + public const string document_database_24_regular = "\uf034"; + public const string document_dismiss_16_regular = "\ue4f9"; + public const string document_dismiss_20_regular = "\uf383"; + public const string document_dismiss_24_regular = "\uf384"; + public const string document_edit_16_regular = "\uf385"; + public const string document_edit_20_regular = "\uf386"; + public const string document_edit_24_regular = "\uf387"; + public const string document_endnote_20_regular = "\uf388"; + public const string document_endnote_24_regular = "\uf389"; + public const string document_error_16_regular = "\uf38a"; + public const string document_error_20_regular = "\uf38b"; + public const string document_error_24_regular = "\uf38c"; + public const string document_fit_16_regular = "\U000f001f"; + public const string document_fit_20_regular = "\U000f0020"; + public const string document_fit_24_regular = "\U000f0021"; + public const string document_flowchart_20_regular = "\ue4fa"; + public const string document_flowchart_24_regular = "\ue4fb"; + public const string document_folder_16_regular = "\U000f0022"; + public const string document_folder_20_regular = "\U000f0023"; + public const string document_folder_24_regular = "\U000f0024"; + public const string document_footer_16_regular = "\ue4fc"; + public const string document_footer_20_regular = "\ue4fd"; + public const string document_footer_24_regular = "\uf38d"; + public const string document_footer_dismiss_20_regular = "\ue4fe"; + public const string document_footer_dismiss_24_regular = "\ue4ff"; + public const string document_fs_16_regular = "\uf0de"; + public const string document_header_16_regular = "\ue500"; + public const string document_header_20_regular = "\ue501"; + public const string document_header_24_regular = "\uf38f"; + public const string document_header_arrow_down_16_regular = "\ue502"; + public const string document_header_arrow_down_20_regular = "\ue503"; + public const string document_header_arrow_down_24_regular = "\ue504"; + public const string document_header_dismiss_20_regular = "\ue505"; + public const string document_header_dismiss_24_regular = "\ue506"; + public const string document_header_footer_16_regular = "\ue507"; + public const string document_header_footer_20_regular = "\uf390"; + public const string document_header_footer_24_regular = "\uf391"; + public const string document_heart_20_regular = "\ue508"; + public const string document_heart_24_regular = "\ue509"; + public const string document_heart_pulse_20_regular = "\ue50a"; + public const string document_heart_pulse_24_regular = "\ue50b"; + public const string document_image_16_regular = "\U000f0175"; + public const string document_image_20_regular = "\U000f0176"; + public const string document_java_16_regular = "\U000f0177"; + public const string document_java_20_regular = "\U000f0178"; + public const string document_javascript_20_regular = "\ue50c"; + public const string document_javascript_24_regular = "\ue50d"; + public const string document_js_16_regular = "\uf0df"; + public const string document_key_20_regular = "\U000f011d"; + public const string document_landscape_20_regular = "\uf393"; + public const string document_landscape_24_regular = "\uf394"; + public const string document_landscape_data_20_regular = "\ue50e"; + public const string document_landscape_data_24_regular = "\ue50f"; + public const string document_landscape_split_20_regular = "\ue510"; + public const string document_landscape_split_24_regular = "\ue511"; + public const string document_landscape_split_hint_20_regular = "\ue512"; + public const string document_landscape_split_hint_24_regular = "\uecdd"; + public const string document_lightning_16_regular = "\U000f0324"; + public const string document_lightning_20_regular = "\U000f0325"; + public const string document_lightning_24_regular = "\U000f0326"; + public const string document_lightning_28_regular = "\U000f0327"; + public const string document_lightning_32_regular = "\U000f0328"; + public const string document_lightning_48_regular = "\U000f0329"; + public const string document_link_16_regular = "\ue513"; + public const string document_link_20_regular = "\uf404"; + public const string document_link_24_regular = "\uf405"; + public const string document_lock_16_regular = "\ue514"; + public const string document_lock_20_regular = "\ue515"; + public const string document_lock_24_regular = "\ue516"; + public const string document_lock_28_regular = "\ue517"; + public const string document_lock_32_regular = "\ue518"; + public const string document_lock_48_regular = "\ue519"; + public const string document_margins_20_regular = "\uf395"; + public const string document_margins_24_regular = "\uf396"; + public const string document_mention_16_regular = "\ue51a"; + public const string document_mention_20_regular = "\ue51b"; + public const string document_mention_24_regular = "\ue51c"; + public const string document_mention_28_regular = "\ue51d"; + public const string document_mention_48_regular = "\ue51e"; + public const string document_multiple_16_regular = "\ue51f"; + public const string document_multiple_20_regular = "\ue520"; + public const string document_multiple_24_regular = "\ue521"; + public const string document_multiple_percent_20_regular = "\ue522"; + public const string document_multiple_percent_24_regular = "\ue523"; + public const string document_multiple_prohibited_20_regular = "\ue524"; + public const string document_multiple_prohibited_24_regular = "\ue525"; + public const string document_multiple_sync_20_regular = "\ue526"; + public const string document_number_1_16_regular = "\uf0e0"; + public const string document_one_page_16_regular = "\U000f0025"; + public const string document_one_page_20_regular = "\uf399"; + public const string document_one_page_24_regular = "\uf39a"; + public const string document_one_page_add_16_regular = "\U000f0026"; + public const string document_one_page_add_20_regular = "\U000f0027"; + public const string document_one_page_add_24_regular = "\U000f0028"; + public const string document_one_page_beaker_16_regular = "\U000f0179"; + public const string document_one_page_columns_20_regular = "\U000f0029"; + public const string document_one_page_columns_24_regular = "\U000f002a"; + public const string document_one_page_link_16_regular = "\U000f002b"; + public const string document_one_page_link_20_regular = "\U000f002c"; + public const string document_one_page_link_24_regular = "\U000f002d"; + public const string document_one_page_multiple_16_regular = "\U000f017a"; + public const string document_one_page_multiple_20_regular = "\U000f017b"; + public const string document_one_page_multiple_24_regular = "\U000f017c"; + public const string document_one_page_sparkle_16_regular = "\U000f00d7"; + public const string document_one_page_sparkle_20_regular = "\U000f00d8"; + public const string document_one_page_sparkle_24_regular = "\U000f00d9"; + public const string document_page_bottom_center_20_regular = "\uf39c"; + public const string document_page_bottom_center_24_regular = "\uf39d"; + public const string document_page_bottom_left_20_regular = "\uf39e"; + public const string document_page_bottom_left_24_regular = "\uf39f"; + public const string document_page_bottom_right_20_regular = "\uf3a0"; + public const string document_page_bottom_right_24_regular = "\uf3a1"; + public const string document_page_break_20_regular = "\ue527"; + public const string document_page_break_24_regular = "\uf3a2"; + public const string document_page_number_20_regular = "\uf3a3"; + public const string document_page_number_24_regular = "\uf3a4"; + public const string document_page_top_center_20_regular = "\uf3a5"; + public const string document_page_top_center_24_regular = "\uf3a6"; + public const string document_page_top_left_20_regular = "\uf3a7"; + public const string document_page_top_left_24_regular = "\uf3a8"; + public const string document_page_top_right_20_regular = "\uf3a9"; + public const string document_page_top_right_24_regular = "\uf3aa"; + public const string document_pdf_16_regular = "\uf3ab"; + public const string document_pdf_20_regular = "\uf3ac"; + public const string document_pdf_24_regular = "\uf3ad"; + public const string document_pdf_32_regular = "\ue528"; + public const string document_percent_20_regular = "\ue529"; + public const string document_percent_24_regular = "\ue52a"; + public const string document_person_16_regular = "\uf421"; + public const string document_person_20_regular = "\ue52b"; + public const string document_pill_20_regular = "\ue52c"; + public const string document_pill_24_regular = "\ue52d"; + public const string document_print_20_regular = "\U000f002e"; + public const string document_print_24_regular = "\U000f002f"; + public const string document_print_28_regular = "\U000f0030"; + public const string document_print_32_regular = "\U000f0031"; + public const string document_print_48_regular = "\U000f0032"; + public const string document_prohibited_20_regular = "\ue52e"; + public const string document_prohibited_24_regular = "\ue52f"; + public const string document_py_16_regular = "\uf0e1"; + public const string document_question_mark_16_regular = "\ue530"; + public const string document_question_mark_20_regular = "\ue531"; + public const string document_question_mark_24_regular = "\ue532"; + public const string document_queue_20_regular = "\ue533"; + public const string document_queue_24_regular = "\ue534"; + public const string document_queue_add_20_regular = "\ue535"; + public const string document_queue_add_24_regular = "\ue536"; + public const string document_queue_multiple_20_regular = "\ue537"; + public const string document_queue_multiple_24_regular = "\ue538"; + public const string document_rb_16_regular = "\uf0e2"; + public const string document_ribbon_16_regular = "\ue539"; + public const string document_ribbon_20_regular = "\ue53a"; + public const string document_ribbon_24_regular = "\ue53b"; + public const string document_ribbon_28_regular = "\ue53c"; + public const string document_ribbon_32_regular = "\ue53d"; + public const string document_ribbon_48_regular = "\ue53e"; + public const string document_sass_16_regular = "\U000f017d"; + public const string document_sass_20_regular = "\U000f017e"; + public const string document_save_20_regular = "\ue53f"; + public const string document_save_24_regular = "\ue540"; + public const string document_search_16_regular = "\ue541"; + public const string document_search_20_regular = "\uf3ae"; + public const string document_search_24_regular = "\uf3af"; + public const string document_search_32_regular = "\U000f03f8"; + public const string document_settings_16_regular = "\uf422"; + public const string document_settings_20_regular = "\ue542"; + public const string document_signature_16_regular = "\U000f0528"; + public const string document_signature_20_regular = "\U000f0529"; + public const string document_signature_24_regular = "\U000f052a"; + public const string document_signature_28_regular = "\U000f052b"; + public const string document_signature_32_regular = "\U000f052c"; + public const string document_signature_48_regular = "\U000f052d"; + public const string document_split_hint_16_regular = "\ue543"; + public const string document_split_hint_20_regular = "\ue544"; + public const string document_split_hint_24_regular = "\uf423"; + public const string document_split_hint_off_16_regular = "\ue545"; + public const string document_split_hint_off_20_regular = "\ue546"; + public const string document_split_hint_off_24_regular = "\uf424"; + public const string document_sync_16_regular = "\ue547"; + public const string document_sync_20_regular = "\ue548"; + public const string document_sync_24_regular = "\ue549"; + public const string document_sync_32_regular = "\uefc5"; + public const string document_table_16_regular = "\ue54a"; + public const string document_table_20_regular = "\ue54b"; + public const string document_table_24_regular = "\ue54c"; + public const string document_table_arrow_right_20_regular = "\ue54d"; + public const string document_table_arrow_right_24_regular = "\ue54e"; + public const string document_table_checkmark_20_regular = "\ue54f"; + public const string document_table_checkmark_24_regular = "\ue550"; + public const string document_table_cube_20_regular = "\ue551"; + public const string document_table_cube_24_regular = "\ue552"; + public const string document_table_search_20_regular = "\ue553"; + public const string document_table_search_24_regular = "\ue554"; + public const string document_table_truck_20_regular = "\ue555"; + public const string document_table_truck_24_regular = "\ue556"; + public const string document_target_16_regular = "\uf0e3"; + public const string document_target_20_regular = "\U000f0581"; + public const string document_target_24_regular = "\U000f0582"; + public const string document_target_32_regular = "\U000f0583"; + public const string document_text_16_regular = "\ueeed"; + public const string document_text_20_regular = "\ue557"; + public const string document_text_24_regular = "\ue558"; + public const string document_text_clock_20_regular = "\ue559"; + public const string document_text_clock_24_regular = "\ue55a"; + public const string document_text_extract_20_regular = "\ue55b"; + public const string document_text_extract_24_regular = "\ue55c"; + public const string document_text_link_20_regular = "\ue55d"; + public const string document_text_link_24_regular = "\ue55e"; + public const string document_text_toolbox_20_regular = "\ue55f"; + public const string document_text_toolbox_24_regular = "\ue560"; + public const string document_toolbox_20_regular = "\uf3b0"; + public const string document_toolbox_24_regular = "\uf3b1"; + public const string document_ts_16_regular = "\uf0e4"; + public const string document_vb_16_regular = "\uf0e5"; + public const string document_width_20_regular = "\uf3b8"; + public const string document_width_24_regular = "\uf3b9"; + public const string document_yml_16_regular = "\U000f017f"; + public const string document_yml_20_regular = "\U000f0180"; + public const string door_16_regular = "\ue561"; + public const string door_20_regular = "\ue562"; + public const string door_28_regular = "\ue563"; + public const string door_arrow_left_16_regular = "\ue564"; + public const string door_arrow_left_20_regular = "\ue565"; + public const string door_arrow_left_24_regular = "\ue566"; + public const string door_arrow_right_16_regular = "\ue567"; + public const string door_arrow_right_20_regular = "\ue568"; + public const string door_arrow_right_28_regular = "\ue569"; + public const string door_tag_20_regular = "\ue56a"; + public const string door_tag_24_regular = "\ue56b"; + public const string double_swipe_down_20_regular = "\ue56c"; + public const string double_swipe_down_24_regular = "\uf3ba"; + public const string double_swipe_up_20_regular = "\ue56d"; + public const string double_swipe_up_24_regular = "\uf3bb"; + public const string double_tap_swipe_down_16_regular = "\U000f05c8"; + public const string double_tap_swipe_down_20_regular = "\ue56e"; + public const string double_tap_swipe_down_24_regular = "\ue56f"; + public const string double_tap_swipe_up_16_regular = "\U000f05c9"; + public const string double_tap_swipe_up_20_regular = "\ue570"; + public const string double_tap_swipe_up_24_regular = "\ue571"; + public const string drafts_16_regular = "\uf3be"; + public const string drafts_20_regular = "\uf3bf"; + public const string drafts_24_regular = "\uf3c0"; + public const string drag_20_regular = "\ue572"; + public const string drag_24_regular = "\uf3c1"; + public const string draw_image_20_regular = "\ue573"; + public const string draw_image_24_regular = "\ue574"; + public const string draw_shape_20_regular = "\ue575"; + public const string draw_shape_24_regular = "\ue576"; + public const string draw_text_20_regular = "\ue577"; + public const string draw_text_24_regular = "\ue578"; + public const string drawer_20_regular = "\U000f033e"; + public const string drawer_24_regular = "\U000f033f"; + public const string drawer_add_20_regular = "\ue579"; + public const string drawer_add_24_regular = "\ue57a"; + public const string drawer_arrow_download_20_regular = "\ue57b"; + public const string drawer_arrow_download_24_regular = "\ue57c"; + public const string drawer_dismiss_20_regular = "\ue57d"; + public const string drawer_dismiss_24_regular = "\ue57e"; + public const string drawer_play_20_regular = "\ue57f"; + public const string drawer_play_24_regular = "\ue580"; + public const string drawer_subtract_20_regular = "\ue581"; + public const string drawer_subtract_24_regular = "\ue582"; + public const string drink_beer_16_regular = "\ue583"; + public const string drink_beer_20_regular = "\ue584"; + public const string drink_beer_24_regular = "\uf3c3"; + public const string drink_bottle_20_regular = "\ueeee"; + public const string drink_bottle_32_regular = "\ueeef"; + public const string drink_bottle_off_20_regular = "\ueef0"; + public const string drink_bottle_off_32_regular = "\ueef1"; + public const string drink_coffee_16_regular = "\ue585"; + public const string drink_coffee_20_regular = "\uf3c4"; + public const string drink_coffee_24_regular = "\uf3c5"; + public const string drink_margarita_16_regular = "\ue586"; + public const string drink_margarita_20_regular = "\ue587"; + public const string drink_margarita_24_regular = "\uf3c6"; + public const string drink_to_go_20_regular = "\ue588"; + public const string drink_to_go_24_regular = "\ue589"; + public const string drink_wine_16_regular = "\ue58a"; + public const string drink_wine_20_regular = "\ue58b"; + public const string drink_wine_24_regular = "\uf3c7"; + public const string drive_train_20_regular = "\ue58c"; + public const string drive_train_24_regular = "\ue58d"; + public const string drop_12_regular = "\ue58e"; + public const string drop_16_regular = "\ue58f"; + public const string drop_20_regular = "\ue590"; + public const string drop_24_regular = "\ue591"; + public const string drop_28_regular = "\ue592"; + public const string drop_48_regular = "\ue593"; + public const string dual_screen_20_regular = "\ue594"; + public const string dual_screen_24_regular = "\uf3c8"; + public const string dual_screen_add_20_regular = "\ue595"; + public const string dual_screen_add_24_regular = "\uf3c9"; + public const string dual_screen_arrow_right_20_regular = "\ue596"; + public const string dual_screen_arrow_right_24_regular = "\uf3ca"; + public const string dual_screen_arrow_up_20_regular = "\ue597"; + public const string dual_screen_arrow_up_24_regular = "\ue598"; + public const string dual_screen_clock_20_regular = "\ue599"; + public const string dual_screen_clock_24_regular = "\uf3cb"; + public const string dual_screen_closed_alert_20_regular = "\ue59a"; + public const string dual_screen_closed_alert_24_regular = "\ue59b"; + public const string dual_screen_desktop_20_regular = "\ue59c"; + public const string dual_screen_desktop_24_regular = "\uf3cc"; + public const string dual_screen_dismiss_20_regular = "\ue59d"; + public const string dual_screen_dismiss_24_regular = "\ue59e"; + public const string dual_screen_group_20_regular = "\ue59f"; + public const string dual_screen_group_24_regular = "\uf3ce"; + public const string dual_screen_header_20_regular = "\ue5a0"; + public const string dual_screen_header_24_regular = "\uf3cf"; + public const string dual_screen_lock_20_regular = "\ue5a1"; + public const string dual_screen_lock_24_regular = "\uf3d0"; + public const string dual_screen_mirror_20_regular = "\ue5a2"; + public const string dual_screen_mirror_24_regular = "\uf3d1"; + public const string dual_screen_pagination_20_regular = "\ue5a3"; + public const string dual_screen_pagination_24_regular = "\uf3d2"; + public const string dual_screen_settings_20_regular = "\ue5a4"; + public const string dual_screen_settings_24_regular = "\uf3d3"; + public const string dual_screen_span_20_regular = "\ue5a5"; + public const string dual_screen_span_24_regular = "\ue5a6"; + public const string dual_screen_speaker_20_regular = "\ue5a7"; + public const string dual_screen_speaker_24_regular = "\ue5a8"; + public const string dual_screen_status_bar_20_regular = "\ue5a9"; + public const string dual_screen_status_bar_24_regular = "\uf3d4"; + public const string dual_screen_tablet_20_regular = "\ue5aa"; + public const string dual_screen_tablet_24_regular = "\uf3d5"; + public const string dual_screen_update_20_regular = "\ue5ab"; + public const string dual_screen_update_24_regular = "\uf3d6"; + public const string dual_screen_vertical_scroll_20_regular = "\ue5ac"; + public const string dual_screen_vertical_scroll_24_regular = "\uf3d7"; + public const string dual_screen_vibrate_20_regular = "\ue5ad"; + public const string dual_screen_vibrate_24_regular = "\uf3d8"; + public const string dumbbell_16_regular = "\ue5ae"; + public const string dumbbell_20_regular = "\ue5af"; + public const string dumbbell_24_regular = "\ue5b0"; + public const string dumbbell_28_regular = "\ue5b1"; + public const string dust_20_regular = "\U000f011e"; + public const string dust_24_regular = "\U000f011f"; + public const string dust_28_regular = "\U000f0120"; + public const string earth_16_regular = "\uf3d9"; + public const string earth_20_regular = "\uf3da"; + public const string earth_24_regular = "\uf3db"; + public const string earth_32_regular = "\ueef2"; + public const string earth_48_regular = "\uf035"; + public const string earth_leaf_16_regular = "\ueef3"; + public const string earth_leaf_20_regular = "\ueef4"; + public const string earth_leaf_24_regular = "\ueef5"; + public const string earth_leaf_32_regular = "\ueef6"; + public const string earth_leaf_48_regular = "\uf036"; + public const string edit_12_regular = "\U000f032a"; + public const string edit_16_regular = "\uf3dc"; + public const string edit_20_regular = "\uf3dd"; + public const string edit_24_regular = "\uf3de"; + public const string edit_28_regular = "\ue5b2"; + public const string edit_32_regular = "\ue5b3"; + public const string edit_48_regular = "\ue5b4"; + public const string edit_arrow_back_16_regular = "\uf429"; + public const string edit_arrow_back_20_regular = "\ue5b5"; + public const string edit_arrow_back_24_regular = "\U000f0121"; + public const string edit_line_horizontal_3_20_regular = "\U000f062c"; + public const string edit_line_horizontal_3_24_regular = "\U000f062d"; + public const string edit_off_16_regular = "\ue5b6"; + public const string edit_off_20_regular = "\ue5b7"; + public const string edit_off_24_regular = "\ue5b8"; + public const string edit_off_28_regular = "\ue5b9"; + public const string edit_off_32_regular = "\ue5ba"; + public const string edit_off_48_regular = "\ue5bb"; + public const string edit_person_20_regular = "\U000f0567"; + public const string edit_person_24_regular = "\U000f0568"; + public const string edit_prohibited_16_regular = "\ue5bc"; + public const string edit_prohibited_20_regular = "\ue5bd"; + public const string edit_prohibited_24_regular = "\ue5be"; + public const string edit_prohibited_28_regular = "\ue5bf"; + public const string edit_prohibited_32_regular = "\ue5c0"; + public const string edit_prohibited_48_regular = "\ue5c1"; + public const string edit_settings_20_regular = "\ue5c2"; + public const string edit_settings_24_regular = "\ue5c3"; + public const string elevator_20_regular = "\uefe7"; + public const string elevator_24_regular = "\uefe8"; + public const string elevator_32_regular = "\uefe9"; + public const string elevator_48_regular = "\uf037"; + public const string emoji_16_regular = "\uf3df"; + public const string emoji_20_regular = "\uf3e0"; + public const string emoji_24_regular = "\uf3e1"; + public const string emoji_28_regular = "\ue5c4"; + public const string emoji_32_regular = "\ue5c5"; + public const string emoji_48_regular = "\ue5c6"; + public const string emoji_add_16_regular = "\ue5c7"; + public const string emoji_add_20_regular = "\ue5c8"; + public const string emoji_add_24_regular = "\uf3e2"; + public const string emoji_angry_16_regular = "\U000f0033"; + public const string emoji_angry_20_regular = "\uf3e3"; + public const string emoji_angry_24_regular = "\uf3e4"; + public const string emoji_edit_16_regular = "\ue5c9"; + public const string emoji_edit_20_regular = "\ue5ca"; + public const string emoji_edit_24_regular = "\ue5cb"; + public const string emoji_edit_28_regular = "\ue5cc"; + public const string emoji_edit_48_regular = "\ue5cd"; + public const string emoji_hand_16_regular = "\U000f0034"; + public const string emoji_hand_20_regular = "\ue5ce"; + public const string emoji_hand_24_regular = "\ue5cf"; + public const string emoji_hand_28_regular = "\ue5d0"; + public const string emoji_hand_32_regular = "\U000f00da"; + public const string emoji_hand_48_regular = "\U000f00db"; + public const string emoji_hint_16_regular = "\U000f0122"; + public const string emoji_hint_20_regular = "\U000f0123"; + public const string emoji_hint_24_regular = "\U000f0124"; + public const string emoji_hint_28_regular = "\U000f0125"; + public const string emoji_hint_32_regular = "\U000f0126"; + public const string emoji_hint_48_regular = "\U000f0127"; + public const string emoji_laugh_16_regular = "\ue5d1"; + public const string emoji_laugh_20_regular = "\uf3e5"; + public const string emoji_laugh_24_regular = "\uf3e6"; + public const string emoji_meh_16_regular = "\U000f0035"; + public const string emoji_meh_20_regular = "\uf3e7"; + public const string emoji_meh_24_regular = "\uf3e8"; + public const string emoji_meme_16_regular = "\U000f0584"; + public const string emoji_meme_20_regular = "\U000f0585"; + public const string emoji_meme_24_regular = "\U000f0586"; + public const string emoji_multiple_20_regular = "\ue5d2"; + public const string emoji_multiple_24_regular = "\ue5d3"; + public const string emoji_sad_16_regular = "\ue5d4"; + public const string emoji_sad_20_regular = "\uf3e9"; + public const string emoji_sad_24_regular = "\uf3ea"; + public const string emoji_sad_slight_20_regular = "\ue5d5"; + public const string emoji_sad_slight_24_regular = "\ue5d6"; + public const string emoji_smile_slight_20_regular = "\ue5d7"; + public const string emoji_smile_slight_24_regular = "\ue5d8"; + public const string emoji_sparkle_16_regular = "\ue5d9"; + public const string emoji_sparkle_20_regular = "\ue5da"; + public const string emoji_sparkle_24_regular = "\ue5db"; + public const string emoji_sparkle_28_regular = "\ue5dc"; + public const string emoji_sparkle_32_regular = "\ue5dd"; + public const string emoji_sparkle_48_regular = "\ue5de"; + public const string emoji_surprise_20_regular = "\uf3eb"; + public const string emoji_surprise_24_regular = "\uf3ec"; + public const string engine_20_regular = "\ue5df"; + public const string engine_24_regular = "\ue5e0"; + public const string equal_circle_20_regular = "\ue5e1"; + public const string equal_circle_24_regular = "\ue5e2"; + public const string equal_off_12_regular = "\uefc6"; + public const string equal_off_16_regular = "\uefc7"; + public const string equal_off_20_regular = "\uf42a"; + public const string equal_off_24_regular = "\ue5e3"; + public const string eraser_20_regular = "\ue5e4"; + public const string eraser_24_regular = "\ue5e5"; + public const string eraser_medium_20_regular = "\ue5e6"; + public const string eraser_medium_24_regular = "\ue5e7"; + public const string eraser_segment_20_regular = "\ue5e8"; + public const string eraser_segment_24_regular = "\ue5e9"; + public const string eraser_small_20_regular = "\ue5ea"; + public const string eraser_small_24_regular = "\ue5eb"; + public const string eraser_tool_20_regular = "\ue5ec"; + public const string eraser_tool_24_regular = "\uf3ef"; + public const string error_circle_12_regular = "\ue5ed"; + public const string error_circle_16_regular = "\uf3f0"; + public const string error_circle_20_regular = "\uf3f1"; + public const string error_circle_24_regular = "\uf3f2"; + public const string error_circle_48_regular = "\U000f03b5"; + public const string error_circle_settings_16_regular = "\uf42b"; + public const string error_circle_settings_20_regular = "\ue5ee"; + public const string expand_up_left_16_regular = "\uf42c"; + public const string expand_up_left_20_regular = "\uf431"; + public const string expand_up_left_24_regular = "\uf432"; + public const string expand_up_left_28_regular = "\uf433"; + public const string expand_up_left_32_regular = "\uf44b"; + public const string expand_up_left_48_regular = "\uf44c"; + public const string expand_up_right_16_regular = "\uf44f"; + public const string expand_up_right_20_regular = "\uf450"; + public const string expand_up_right_24_regular = "\uf46d"; + public const string expand_up_right_28_regular = "\uf495"; + public const string expand_up_right_32_regular = "\uf496"; + public const string expand_up_right_48_regular = "\uf497"; + public const string extended_dock_20_regular = "\ue5ef"; + public const string extended_dock_24_regular = "\uf3f4"; + public const string eye_12_regular = "\ue5f0"; + public const string eye_16_regular = "\ue5f1"; + public const string eye_20_regular = "\ue5f2"; + public const string eye_24_regular = "\ue5f3"; + public const string eye_28_regular = "\uefc8"; + public const string eye_32_regular = "\uefc9"; + public const string eye_48_regular = "\uefca"; + public const string eye_lines_20_regular = "\uefcb"; + public const string eye_lines_24_regular = "\uefcc"; + public const string eye_lines_28_regular = "\uefcd"; + public const string eye_lines_32_regular = "\uefce"; + public const string eye_lines_48_regular = "\uefcf"; + public const string eye_off_16_regular = "\ue5f4"; + public const string eye_off_20_regular = "\ue5f5"; + public const string eye_off_24_regular = "\ue5f6"; + public const string eye_tracking_16_regular = "\ue5f7"; + public const string eye_tracking_20_regular = "\ue5f8"; + public const string eye_tracking_24_regular = "\ue5f9"; + public const string eye_tracking_off_16_regular = "\ue5fa"; + public const string eye_tracking_off_20_regular = "\ue5fb"; + public const string eye_tracking_off_24_regular = "\ue5fc"; + public const string eyedropper_16_regular = "\uf0e6"; + public const string eyedropper_20_regular = "\ue5fd"; + public const string eyedropper_24_regular = "\ue5fe"; + public const string eyedropper_off_20_regular = "\ue5ff"; + public const string eyedropper_off_24_regular = "\ue600"; + public const string f_stop_16_regular = "\ue601"; + public const string f_stop_20_regular = "\ue602"; + public const string f_stop_24_regular = "\ue603"; + public const string f_stop_28_regular = "\ue604"; + public const string fast_acceleration_20_regular = "\ue605"; + public const string fast_acceleration_24_regular = "\uf3fd"; + public const string fast_forward_16_regular = "\ue606"; + public const string fast_forward_20_regular = "\uf3fe"; + public const string fast_forward_24_regular = "\uf3ff"; + public const string fast_forward_28_regular = "\ue607"; + public const string fax_16_regular = "\uf4ae"; + public const string fax_20_regular = "\ue608"; + public const string feed_16_regular = "\ueef7"; + public const string feed_20_regular = "\ueef8"; + public const string feed_24_regular = "\ueef9"; + public const string feed_28_regular = "\ueefa"; + public const string feed_32_regular = "\uefea"; + public const string feed_48_regular = "\uefeb"; + public const string filmstrip_16_regular = "\U000f0036"; + public const string filmstrip_20_regular = "\ueefb"; + public const string filmstrip_24_regular = "\ueefc"; + public const string filmstrip_32_regular = "\U000f0037"; + public const string filmstrip_48_regular = "\U000f01cd"; + public const string filmstrip_image_20_regular = "\U000f0340"; + public const string filmstrip_image_24_regular = "\U000f0341"; + public const string filmstrip_off_48_regular = "\U000f01ce"; + public const string filmstrip_play_16_regular = "\U000f0038"; + public const string filmstrip_play_20_regular = "\U000f0039"; + public const string filmstrip_play_24_regular = "\U000f003a"; + public const string filmstrip_play_32_regular = "\U000f003b"; + public const string filmstrip_split_16_regular = "\U000f0181"; + public const string filmstrip_split_20_regular = "\U000f0182"; + public const string filmstrip_split_24_regular = "\U000f0183"; + public const string filmstrip_split_32_regular = "\U000f0184"; + public const string filter_12_regular = "\ue609"; + public const string filter_16_regular = "\ue60a"; + public const string filter_20_regular = "\uf406"; + public const string filter_24_regular = "\uf407"; + public const string filter_28_regular = "\uf408"; + public const string filter_32_regular = "\U000f0432"; + public const string filter_add_20_regular = "\ue60b"; + public const string filter_dismiss_16_regular = "\ue60c"; + public const string filter_dismiss_20_regular = "\ue60d"; + public const string filter_dismiss_24_regular = "\ue60e"; + public const string filter_sync_20_regular = "\ue60f"; + public const string filter_sync_24_regular = "\ue610"; + public const string fingerprint_16_regular = "\U000f03f9"; + public const string fingerprint_20_regular = "\ue611"; + public const string fingerprint_24_regular = "\uf409"; + public const string fingerprint_32_regular = "\U000f03fa"; + public const string fingerprint_48_regular = "\ue612"; + public const string fire_16_regular = "\uef68"; + public const string fire_20_regular = "\uef69"; + public const string fire_24_regular = "\uef6a"; + public const string fireplace_20_regular = "\uefec"; + public const string fireplace_24_regular = "\uefed"; + public const string fireplace_32_regular = "\uefee"; + public const string fireplace_48_regular = "\uefef"; + public const string fixed_width_20_regular = "\ue613"; + public const string fixed_width_24_regular = "\ue614"; + public const string flag_16_regular = "\uf40a"; + public const string flag_20_regular = "\uf40b"; + public const string flag_24_regular = "\uf40c"; + public const string flag_28_regular = "\uf40d"; + public const string flag_32_regular = "\U000f003c"; + public const string flag_48_regular = "\uf40e"; + public const string flag_checkered_20_regular = "\uf070"; + public const string flag_clock_16_regular = "\U000f003d"; + public const string flag_clock_20_regular = "\U000f003e"; + public const string flag_clock_24_regular = "\U000f003f"; + public const string flag_clock_28_regular = "\U000f0040"; + public const string flag_clock_32_regular = "\U000f0041"; + public const string flag_clock_48_regular = "\U000f0042"; + public const string flag_off_16_regular = "\ue615"; + public const string flag_off_20_regular = "\ue616"; + public const string flag_off_24_regular = "\uf40f"; + public const string flag_off_28_regular = "\uf410"; + public const string flag_off_48_regular = "\uf411"; + public const string flash_16_regular = "\ue617"; + public const string flash_20_regular = "\ue618"; + public const string flash_24_regular = "\ue619"; + public const string flash_28_regular = "\ue61a"; + public const string flash_32_regular = "\U000f01cf"; + public const string flash_add_20_regular = "\ue61b"; + public const string flash_auto_20_regular = "\ue61c"; + public const string flash_auto_24_regular = "\uf412"; + public const string flash_checkmark_16_regular = "\ue61d"; + public const string flash_checkmark_20_regular = "\ue61e"; + public const string flash_checkmark_24_regular = "\ue61f"; + public const string flash_checkmark_28_regular = "\ue620"; + public const string flash_flow_16_regular = "\ue621"; + public const string flash_flow_20_regular = "\ue622"; + public const string flash_flow_24_regular = "\ue623"; + public const string flash_off_20_regular = "\ue624"; + public const string flash_off_24_regular = "\uf413"; + public const string flash_play_20_regular = "\ue625"; + public const string flash_settings_20_regular = "\ue626"; + public const string flash_settings_24_regular = "\ue627"; + public const string flash_sparkle_16_regular = "\U000f05ca"; + public const string flash_sparkle_20_regular = "\U000f02d6"; + public const string flash_sparkle_24_regular = "\U000f02d7"; + public const string flashlight_16_regular = "\ue628"; + public const string flashlight_20_regular = "\ue629"; + public const string flashlight_24_regular = "\uf416"; + public const string flashlight_off_20_regular = "\ue62a"; + public const string flashlight_off_24_regular = "\uf417"; + public const string flip_horizontal_16_regular = "\ue62b"; + public const string flip_horizontal_20_regular = "\ue62c"; + public const string flip_horizontal_24_regular = "\ue62d"; + public const string flip_horizontal_28_regular = "\ue62e"; + public const string flip_horizontal_32_regular = "\ue62f"; + public const string flip_horizontal_48_regular = "\ue630"; + public const string flip_vertical_16_regular = "\ue631"; + public const string flip_vertical_20_regular = "\ue632"; + public const string flip_vertical_24_regular = "\ue633"; + public const string flip_vertical_28_regular = "\ue634"; + public const string flip_vertical_32_regular = "\ue635"; + public const string flip_vertical_48_regular = "\ue636"; + public const string flow_16_regular = "\uf4af"; + public const string flow_20_regular = "\ue637"; + public const string flow_24_regular = "\U000f01d0"; + public const string flow_32_regular = "\U000f01d1"; + public const string flowchart_16_regular = "\U000f04c8"; + public const string flowchart_20_regular = "\ue638"; + public const string flowchart_24_regular = "\ue639"; + public const string flowchart_32_regular = "\U000f04c9"; + public const string flowchart_circle_20_regular = "\ue63a"; + public const string flowchart_circle_24_regular = "\ue63b"; + public const string fluent_20_regular = "\ue63c"; + public const string fluent_24_regular = "\ue63d"; + public const string fluent_32_regular = "\ue63e"; + public const string fluent_48_regular = "\ue63f"; + public const string fluid_16_regular = "\ue640"; + public const string fluid_20_regular = "\ue641"; + public const string fluid_24_regular = "\ue642"; + public const string folder_16_regular = "\ue643"; + public const string folder_20_regular = "\uf418"; + public const string folder_24_regular = "\uf419"; + public const string folder_28_regular = "\uf41a"; + public const string folder_32_regular = "\ue644"; + public const string folder_48_regular = "\uf41b"; + public const string folder_add_16_regular = "\ue645"; + public const string folder_add_20_regular = "\uf41c"; + public const string folder_add_24_regular = "\uf41d"; + public const string folder_add_28_regular = "\uf41e"; + public const string folder_add_32_regular = "\U000f0211"; + public const string folder_add_48_regular = "\uf41f"; + public const string folder_arrow_left_16_regular = "\ue646"; + public const string folder_arrow_left_20_regular = "\ue647"; + public const string folder_arrow_left_24_regular = "\ue648"; + public const string folder_arrow_left_28_regular = "\ue649"; + public const string folder_arrow_left_32_regular = "\ue64a"; + public const string folder_arrow_left_48_regular = "\U000f0212"; + public const string folder_arrow_right_16_regular = "\ue64b"; + public const string folder_arrow_right_20_regular = "\ue64c"; + public const string folder_arrow_right_24_regular = "\ue64d"; + public const string folder_arrow_right_28_regular = "\ue64e"; + public const string folder_arrow_right_32_regular = "\U000f0213"; + public const string folder_arrow_right_48_regular = "\ue64f"; + public const string folder_arrow_up_16_regular = "\ue650"; + public const string folder_arrow_up_20_regular = "\ue651"; + public const string folder_arrow_up_24_regular = "\ue652"; + public const string folder_arrow_up_28_regular = "\ue653"; + public const string folder_arrow_up_32_regular = "\U000f0214"; + public const string folder_arrow_up_48_regular = "\ue654"; + public const string folder_briefcase_20_regular = "\uf420"; + public const string folder_globe_16_regular = "\uf4b1"; + public const string folder_globe_20_regular = "\ue655"; + public const string folder_lightning_16_regular = "\U000f01ec"; + public const string folder_lightning_20_regular = "\U000f01ed"; + public const string folder_lightning_24_regular = "\U000f01ee"; + public const string folder_link_16_regular = "\U000f0215"; + public const string folder_link_20_regular = "\uf425"; + public const string folder_link_24_regular = "\uf426"; + public const string folder_link_28_regular = "\uf427"; + public const string folder_link_32_regular = "\U000f0216"; + public const string folder_link_48_regular = "\uf428"; + public const string folder_list_16_regular = "\U000f0128"; + public const string folder_list_20_regular = "\U000f0129"; + public const string folder_mail_16_regular = "\ue656"; + public const string folder_mail_20_regular = "\ue657"; + public const string folder_mail_24_regular = "\ue658"; + public const string folder_mail_28_regular = "\ue659"; + public const string folder_mail_32_regular = "\U000f0433"; + public const string folder_multiple_16_regular = "\uf0e7"; + public const string folder_open_16_regular = "\uf42d"; + public const string folder_open_20_regular = "\uf42e"; + public const string folder_open_24_regular = "\uf42f"; + public const string folder_open_vertical_16_regular = "\uf0e8"; + public const string folder_open_vertical_20_regular = "\uf430"; + public const string folder_open_vertical_24_regular = "\U000f026d"; + public const string folder_people_20_regular = "\ueece"; + public const string folder_people_24_regular = "\ueecf"; + public const string folder_person_16_regular = "\uf4c6"; + public const string folder_person_20_regular = "\ue65a"; + public const string folder_person_24_regular = "\U000f03fb"; + public const string folder_person_28_regular = "\U000f03fc"; + public const string folder_person_32_regular = "\U000f03fd"; + public const string folder_person_48_regular = "\U000f03fe"; + public const string folder_prohibited_16_regular = "\ue65b"; + public const string folder_prohibited_20_regular = "\ue65c"; + public const string folder_prohibited_24_regular = "\ue65d"; + public const string folder_prohibited_28_regular = "\ue65e"; + public const string folder_prohibited_32_regular = "\U000f0217"; + public const string folder_prohibited_48_regular = "\ue65f"; + public const string folder_search_16_regular = "\U000f038d"; + public const string folder_search_20_regular = "\U000f038e"; + public const string folder_search_24_regular = "\U000f038f"; + public const string folder_swap_16_regular = "\ue660"; + public const string folder_swap_20_regular = "\ue661"; + public const string folder_swap_24_regular = "\ue662"; + public const string folder_sync_16_regular = "\ue663"; + public const string folder_sync_20_regular = "\ue664"; + public const string folder_sync_24_regular = "\ue665"; + public const string folder_zip_16_regular = "\uf434"; + public const string folder_zip_20_regular = "\uf435"; + public const string folder_zip_24_regular = "\uf436"; + public const string font_decrease_20_regular = "\uf437"; + public const string font_decrease_24_regular = "\uf438"; + public const string font_increase_20_regular = "\uf439"; + public const string font_increase_24_regular = "\uf43a"; + public const string font_space_tracking_in_16_regular = "\uf43b"; + public const string font_space_tracking_in_20_regular = "\uf43c"; + public const string font_space_tracking_in_24_regular = "\uf43d"; + public const string font_space_tracking_in_28_regular = "\uf43e"; + public const string font_space_tracking_out_16_regular = "\uf43f"; + public const string font_space_tracking_out_20_regular = "\uf440"; + public const string font_space_tracking_out_24_regular = "\uf441"; + public const string font_space_tracking_out_28_regular = "\uf442"; + public const string food_16_regular = "\ue666"; + public const string food_20_regular = "\uf443"; + public const string food_24_regular = "\uf444"; + public const string food_28_regular = "\U000f05ed"; + public const string food_32_regular = "\U000f05ee"; + public const string food_48_regular = "\U000f05ef"; + public const string food_apple_20_regular = "\ue667"; + public const string food_apple_24_regular = "\ue668"; + public const string food_cake_12_regular = "\ue669"; + public const string food_cake_16_regular = "\ue66a"; + public const string food_cake_20_regular = "\ue66b"; + public const string food_cake_24_regular = "\uf445"; + public const string food_carrot_20_regular = "\ueefd"; + public const string food_carrot_24_regular = "\ueefe"; + public const string food_chicken_leg_16_regular = "\uef17"; + public const string food_chicken_leg_20_regular = "\uef18"; + public const string food_chicken_leg_24_regular = "\uef19"; + public const string food_chicken_leg_32_regular = "\uef1a"; + public const string food_egg_16_regular = "\ue66c"; + public const string food_egg_20_regular = "\ue66d"; + public const string food_egg_24_regular = "\uf446"; + public const string food_fish_20_regular = "\ueeff"; + public const string food_fish_24_regular = "\uef00"; + public const string food_grains_20_regular = "\ue66e"; + public const string food_grains_24_regular = "\ue66f"; + public const string food_pizza_20_regular = "\ue670"; + public const string food_pizza_24_regular = "\ue671"; + public const string food_toast_16_regular = "\ue672"; + public const string food_toast_20_regular = "\ue673"; + public const string food_toast_24_regular = "\uf447"; + public const string form_20_regular = "\ueea7"; + public const string form_24_regular = "\ueea8"; + public const string form_28_regular = "\ueea9"; + public const string form_48_regular = "\ueeaa"; + public const string form_multiple_20_regular = "\uef1b"; + public const string form_multiple_24_regular = "\uef1c"; + public const string form_multiple_28_regular = "\uef1d"; + public const string form_multiple_48_regular = "\uef1e"; + public const string form_new_20_regular = "\ue674"; + public const string form_new_24_regular = "\uf448"; + public const string form_new_28_regular = "\uf449"; + public const string form_new_48_regular = "\uf44a"; + public const string fps_120_20_regular = "\ue675"; + public const string fps_120_24_regular = "\ue676"; + public const string fps_240_20_regular = "\ue677"; + public const string fps_240_24_regular = "\uf44d"; + public const string fps_30_16_regular = "\ue678"; + public const string fps_30_20_regular = "\ue679"; + public const string fps_30_24_regular = "\ue67a"; + public const string fps_30_28_regular = "\ue67b"; + public const string fps_30_48_regular = "\ue67c"; + public const string fps_60_16_regular = "\ue67d"; + public const string fps_60_20_regular = "\ue67e"; + public const string fps_60_24_regular = "\ue67f"; + public const string fps_60_28_regular = "\ue680"; + public const string fps_60_48_regular = "\ue681"; + public const string fps_960_20_regular = "\ue682"; + public const string fps_960_24_regular = "\uf44e"; + public const string frame_16_regular = "\U000f00dc"; + public const string frame_20_regular = "\U000f00dd"; + public const string frame_24_regular = "\U000f00de"; + public const string full_screen_maximize_16_regular = "\ue683"; + public const string full_screen_maximize_20_regular = "\ue684"; + public const string full_screen_maximize_24_regular = "\ue685"; + public const string full_screen_maximize_28_regular = "\U000f03b6"; + public const string full_screen_maximize_32_regular = "\U000f03b7"; + public const string full_screen_minimize_16_regular = "\ue686"; + public const string full_screen_minimize_20_regular = "\ue687"; + public const string full_screen_minimize_24_regular = "\ue688"; + public const string full_screen_minimize_28_regular = "\U000f03b8"; + public const string full_screen_minimize_32_regular = "\U000f03b9"; + public const string games_16_regular = "\ue689"; + public const string games_20_regular = "\ue68a"; + public const string games_24_regular = "\uf451"; + public const string games_28_regular = "\ue68b"; + public const string games_32_regular = "\ue68c"; + public const string games_48_regular = "\ue68d"; + public const string gantt_chart_16_regular = "\uf0e9"; + public const string gantt_chart_20_regular = "\ue68e"; + public const string gantt_chart_24_regular = "\ue68f"; + public const string gas_20_regular = "\ue690"; + public const string gas_24_regular = "\ue691"; + public const string gas_pump_20_regular = "\ue692"; + public const string gas_pump_24_regular = "\ue693"; + public const string gather_20_regular = "\ue694"; + public const string gauge_20_regular = "\uf4c7"; + public const string gauge_24_regular = "\uf4c8"; + public const string gauge_32_regular = "\ueed0"; + public const string gauge_add_20_regular = "\ue695"; + public const string gavel_16_regular = "\U000f0185"; + public const string gavel_20_regular = "\ue696"; + public const string gavel_24_regular = "\ue697"; + public const string gavel_32_regular = "\ue698"; + public const string gavel_prohibited_16_regular = "\U000f0186"; + public const string gavel_prohibited_20_regular = "\U000f0187"; + public const string gesture_20_regular = "\ue699"; + public const string gesture_24_regular = "\uf452"; + public const string gif_16_regular = "\ue69a"; + public const string gif_20_regular = "\uf453"; + public const string gif_24_regular = "\uf454"; + public const string gift_16_regular = "\ue69b"; + public const string gift_20_regular = "\uf455"; + public const string gift_24_regular = "\uf456"; + public const string gift_card_16_regular = "\uf4cd"; + public const string gift_card_20_regular = "\uf4ce"; + public const string gift_card_24_regular = "\ue69c"; + public const string gift_card_add_20_regular = "\uf4cf"; + public const string gift_card_add_24_regular = "\ue69d"; + public const string gift_card_arrow_right_20_regular = "\ue69e"; + public const string gift_card_arrow_right_24_regular = "\ue69f"; + public const string gift_card_money_20_regular = "\ue6a0"; + public const string gift_card_money_24_regular = "\ue6a1"; + public const string gift_card_multiple_20_regular = "\ue6a2"; + public const string gift_card_multiple_24_regular = "\ue6a3"; + public const string gift_open_16_regular = "\U000f0188"; + public const string gift_open_20_regular = "\U000f0189"; + public const string gift_open_24_regular = "\U000f018a"; + public const string gift_open_32_regular = "\U000f062e"; + public const string glance_default_12_regular = "\ue6a5"; + public const string glance_20_regular = "\ue6a4"; + public const string glance_24_regular = "\uf457"; + public const string glance_horizontal_12_regular = "\ue6a6"; + public const string glance_horizontal_16_regular = "\uf071"; + public const string glance_horizontal_20_regular = "\ue6a7"; + public const string glance_horizontal_24_regular = "\ue6a8"; + public const string glance_horizontal_32_regular = "\U000f0434"; + public const string glance_horizontal_sparkle_32_regular = "\U000f0435"; + public const string glance_horizontal_sparkles_16_regular = "\uf072"; + public const string glance_horizontal_sparkles_20_regular = "\U000f0485"; + public const string glance_horizontal_sparkles_24_regular = "\uf073"; + public const string glasses_16_regular = "\ue6a9"; + public const string glasses_20_regular = "\ue6aa"; + public const string glasses_24_regular = "\uf458"; + public const string glasses_28_regular = "\ue6ab"; + public const string glasses_32_regular = "\U000f0043"; + public const string glasses_48_regular = "\ue6ac"; + public const string glasses_off_16_regular = "\ue6ad"; + public const string glasses_off_20_regular = "\ue6ae"; + public const string glasses_off_24_regular = "\uf459"; + public const string glasses_off_28_regular = "\ue6af"; + public const string glasses_off_32_regular = "\U000f0044"; + public const string glasses_off_48_regular = "\ue6b0"; + public const string globe_12_regular = "\U000f018b"; + public const string globe_16_regular = "\ue6b1"; + public const string globe_20_regular = "\uf45a"; + public const string globe_24_regular = "\uf45b"; + public const string globe_28_regular = "\U000f050d"; + public const string globe_32_regular = "\ue6b2"; + public const string globe_48_regular = "\U000f026e"; + public const string globe_add_20_regular = "\ue6b3"; + public const string globe_add_24_regular = "\uf45c"; + public const string globe_arrow_forward_16_regular = "\U000f0302"; + public const string globe_arrow_forward_20_regular = "\U000f0303"; + public const string globe_arrow_forward_24_regular = "\U000f0304"; + public const string globe_arrow_forward_32_regular = "\U000f0305"; + public const string globe_arrow_up_16_regular = "\U000f0436"; + public const string globe_arrow_up_20_regular = "\U000f0437"; + public const string globe_arrow_up_24_regular = "\U000f0438"; + public const string globe_clock_16_regular = "\ue6b4"; + public const string globe_clock_20_regular = "\ue6b5"; + public const string globe_clock_24_regular = "\uf45d"; + public const string globe_desktop_20_regular = "\ue6b6"; + public const string globe_desktop_24_regular = "\uf45e"; + public const string globe_error_16_regular = "\U000f0439"; + public const string globe_error_20_regular = "\U000f043a"; + public const string globe_error_24_regular = "\U000f043b"; + public const string globe_location_20_regular = "\uf4dc"; + public const string globe_location_24_regular = "\uf45f"; + public const string globe_person_20_regular = "\ue6b7"; + public const string globe_person_24_regular = "\ue6b8"; + public const string globe_prohibited_16_regular = "\U000f043c"; + public const string globe_prohibited_20_regular = "\ue6b9"; + public const string globe_prohibited_24_regular = "\U000f043d"; + public const string globe_search_20_regular = "\ue6ba"; + public const string globe_search_24_regular = "\uf460"; + public const string globe_shield_20_regular = "\ue6bb"; + public const string globe_shield_24_regular = "\ue6bc"; + public const string globe_shield_48_regular = "\U000f026f"; + public const string globe_star_16_regular = "\uf4eb"; + public const string globe_star_20_regular = "\ue6bd"; + public const string globe_surface_20_regular = "\ue6be"; + public const string globe_surface_24_regular = "\ue6bf"; + public const string globe_surface_32_regular = "\U000f0045"; + public const string globe_sync_16_regular = "\U000f043e"; + public const string globe_sync_20_regular = "\U000f043f"; + public const string globe_sync_24_regular = "\U000f0440"; + public const string globe_video_20_regular = "\uf4fd"; + public const string globe_video_24_regular = "\uf461"; + public const string globe_video_28_regular = "\ue6c0"; + public const string globe_video_32_regular = "\ue6c1"; + public const string globe_video_48_regular = "\ue6c2"; + public const string globe_warning_16_regular = "\U000f0441"; + public const string globe_warning_20_regular = "\U000f0442"; + public const string globe_warning_24_regular = "\U000f0443"; + public const string grid_16_regular = "\ue6c3"; + public const string grid_20_regular = "\uf462"; + public const string grid_24_regular = "\uf463"; + public const string grid_28_regular = "\uf464"; + public const string grid_circles_24_regular = "\uf074"; + public const string grid_circles_28_regular = "\uf075"; + public const string grid_dots_20_regular = "\ue6c4"; + public const string grid_dots_24_regular = "\ue6c5"; + public const string grid_dots_28_regular = "\ue6c6"; + public const string grid_kanban_16_regular = "\U000f018c"; + public const string grid_kanban_20_regular = "\ue6c7"; + public const string group_20_regular = "\uf465"; + public const string group_24_regular = "\uf466"; + public const string group_dismiss_20_regular = "\ue6c8"; + public const string group_dismiss_24_regular = "\ue6c9"; + public const string group_list_20_regular = "\ue6ca"; + public const string group_list_24_regular = "\uf467"; + public const string group_return_20_regular = "\ue6cb"; + public const string group_return_24_regular = "\ue6cc"; + public const string guardian_20_regular = "\ue6cd"; + public const string guardian_24_regular = "\ue6ce"; + public const string guardian_28_regular = "\ue6cf"; + public const string guardian_48_regular = "\ue6d0"; + public const string guest_12_regular = "\U000f050e"; + public const string guest_16_regular = "\uf468"; + public const string guest_20_regular = "\uf469"; + public const string guest_24_regular = "\uf46a"; + public const string guest_28_regular = "\uf46b"; + public const string guest_32_regular = "\U000f050f"; + public const string guest_48_regular = "\U000f0510"; + public const string guest_add_20_regular = "\ue6d1"; + public const string guest_add_24_regular = "\uf46c"; + public const string guitar_16_regular = "\ue6d2"; + public const string guitar_20_regular = "\ue6d3"; + public const string guitar_24_regular = "\ue6d4"; + public const string guitar_28_regular = "\ue6d5"; + public const string hand_draw_16_regular = "\ue6d6"; + public const string hand_draw_20_regular = "\ue6d7"; + public const string hand_draw_24_regular = "\ue6d8"; + public const string hand_draw_28_regular = "\ue6d9"; + public const string hand_left_16_regular = "\ue6da"; + public const string hand_left_20_regular = "\ue6db"; + public const string hand_left_24_regular = "\ue6dc"; + public const string hand_left_28_regular = "\ue6dd"; + public const string hand_left_chat_16_regular = "\ueed1"; + public const string hand_left_chat_20_regular = "\ueed2"; + public const string hand_left_chat_24_regular = "\ueed3"; + public const string hand_left_chat_28_regular = "\ueed4"; + public const string hand_open_heart_20_regular = "\uef01"; + public const string hand_open_heart_32_regular = "\uef02"; + public const string hand_point_16_regular = "\U000f0587"; + public const string hand_point_20_regular = "\U000f0588"; + public const string hand_point_24_regular = "\U000f0589"; + public const string hand_point_28_regular = "\U000f058a"; + public const string hand_point_32_regular = "\U000f058b"; + public const string hand_point_48_regular = "\U000f058c"; + public const string hand_right_16_regular = "\ue6de"; + public const string hand_right_20_regular = "\ue6df"; + public const string hand_right_24_regular = "\ue6e0"; + public const string hand_right_28_regular = "\ue6e1"; + public const string hand_right_off_16_regular = "\U000f0270"; + public const string hand_right_off_20_regular = "\ue6e2"; + public const string hand_right_off_24_regular = "\U000f0271"; + public const string hand_right_off_28_regular = "\U000f0272"; + public const string hand_wave_16_regular = "\uef03"; + public const string hand_wave_20_regular = "\uef04"; + public const string hand_wave_24_regular = "\uef05"; + public const string handshake_16_regular = "\uf46e"; + public const string handshake_20_regular = "\uf46f"; + public const string handshake_24_regular = "\uf470"; + public const string handshake_32_regular = "\uef06"; + public const string haptic_strong_16_regular = "\U000f05a5"; + public const string haptic_strong_20_regular = "\U000f05a6"; + public const string haptic_strong_24_regular = "\U000f05a7"; + public const string haptic_weak_16_regular = "\U000f05a8"; + public const string haptic_weak_20_regular = "\U000f05a9"; + public const string haptic_weak_24_regular = "\U000f05aa"; + public const string hard_drive_16_regular = "\uf0ea"; + public const string hard_drive_20_regular = "\ue6e3"; + public const string hard_drive_24_regular = "\U000f0306"; + public const string hard_drive_28_regular = "\U000f04f1"; + public const string hard_drive_32_regular = "\U000f0307"; + public const string hard_drive_48_regular = "\U000f04f2"; + public const string hard_drive_call_24_regular = "\U000f0308"; + public const string hard_drive_call_32_regular = "\U000f0309"; + public const string hat_graduation_12_regular = "\ue6e4"; + public const string hat_graduation_16_regular = "\ue6e5"; + public const string hat_graduation_20_regular = "\ue6e6"; + public const string hat_graduation_24_regular = "\ue6e7"; + public const string hat_graduation_28_regular = "\U000f01ef"; + public const string hat_graduation_add_16_regular = "\U000f03ff"; + public const string hat_graduation_add_20_regular = "\U000f0400"; + public const string hat_graduation_add_24_regular = "\U000f0401"; + public const string hat_graduation_sparkle_16_regular = "\U000f0273"; + public const string hat_graduation_sparkle_20_regular = "\U000f0218"; + public const string hat_graduation_sparkle_24_regular = "\U000f0219"; + public const string hat_graduation_sparkle_28_regular = "\U000f021a"; + public const string hd_16_regular = "\ue6e8"; + public const string hd_20_regular = "\ue6e9"; + public const string hd_24_regular = "\ue6ea"; + public const string hdr_20_regular = "\ue6eb"; + public const string hdr_24_regular = "\uf471"; + public const string hdr_off_20_regular = "\ue6ec"; + public const string hdr_off_24_regular = "\ue6ed"; + public const string headphones_20_regular = "\ue6ee"; + public const string headphones_24_regular = "\uf472"; + public const string headphones_28_regular = "\uf473"; + public const string headphones_32_regular = "\ue6ef"; + public const string headphones_48_regular = "\ue6f0"; + public const string headphones_sound_wave_20_regular = "\ue6f1"; + public const string headphones_sound_wave_24_regular = "\ue6f2"; + public const string headphones_sound_wave_28_regular = "\ue6f3"; + public const string headphones_sound_wave_32_regular = "\ue6f4"; + public const string headphones_sound_wave_48_regular = "\ue6f5"; + public const string headset_16_regular = "\ue6f6"; + public const string headset_20_regular = "\ue6f7"; + public const string headset_24_regular = "\uf474"; + public const string headset_28_regular = "\uf475"; + public const string headset_32_regular = "\ue6f8"; + public const string headset_48_regular = "\ue6f9"; + public const string headset_add_20_regular = "\uf4fe"; + public const string headset_add_24_regular = "\uf4ff"; + public const string headset_vr_20_regular = "\uf476"; + public const string headset_vr_24_regular = "\uf477"; + public const string heart_12_regular = "\ue6fa"; + public const string heart_16_regular = "\uf478"; + public const string heart_20_regular = "\uf479"; + public const string heart_24_regular = "\uf47a"; + public const string heart_28_regular = "\uf500"; + public const string heart_32_regular = "\ue6fb"; + public const string heart_48_regular = "\ue6fc"; + public const string heart_broken_16_regular = "\uf501"; + public const string heart_broken_20_regular = "\ue6fd"; + public const string heart_broken_24_regular = "\uef25"; + public const string heart_circle_16_regular = "\ue6fe"; + public const string heart_circle_20_regular = "\ue6ff"; + public const string heart_circle_24_regular = "\ue700"; + public const string heart_circle_hint_16_regular = "\uf076"; + public const string heart_circle_hint_20_regular = "\uf077"; + public const string heart_circle_hint_24_regular = "\uf078"; + public const string heart_circle_hint_28_regular = "\uf079"; + public const string heart_circle_hint_32_regular = "\uf07a"; + public const string heart_circle_hint_48_regular = "\uf07b"; + public const string heart_off_16_regular = "\U000f02b0"; + public const string heart_off_20_regular = "\U000f02b1"; + public const string heart_off_24_regular = "\U000f02b2"; + public const string heart_pulse_20_regular = "\ue701"; + public const string heart_pulse_24_regular = "\ue702"; + public const string heart_pulse_32_regular = "\ue703"; + public const string heart_pulse_checkmark_20_regular = "\U000f01d2"; + public const string heart_pulse_error_20_regular = "\U000f01d3"; + public const string heart_pulse_warning_20_regular = "\U000f01d4"; + public const string hexagon_12_regular = "\U000f02d8"; + public const string hexagon_16_regular = "\U000f02b3"; + public const string hexagon_20_regular = "\U000f02b4"; + public const string hexagon_24_regular = "\U000f02d9"; + public const string hexagon_28_regular = "\U000f0390"; + public const string hexagon_32_regular = "\U000f0391"; + public const string hexagon_48_regular = "\U000f0392"; + public const string hexagon_sparkle_20_regular = "\U000f05ab"; + public const string hexagon_sparkle_24_regular = "\U000f05ac"; + public const string hexagon_three_12_regular = "\U000f02da"; + public const string hexagon_three_16_regular = "\U000f02b5"; + public const string hexagon_three_20_regular = "\U000f02b6"; + public const string hexagon_three_24_regular = "\U000f02db"; + public const string highlight_16_regular = "\uf47b"; + public const string highlight_20_regular = "\uf47c"; + public const string highlight_24_regular = "\uf47d"; + public const string highlight_link_20_regular = "\ue704"; + public const string highway_20_regular = "\U000f0569"; + public const string highway_24_regular = "\U000f056a"; + public const string history_16_regular = "\ue705"; + public const string history_20_regular = "\uf47e"; + public const string history_24_regular = "\uf47f"; + public const string history_28_regular = "\ue706"; + public const string history_32_regular = "\ue707"; + public const string history_48_regular = "\ue708"; + public const string history_dismiss_20_regular = "\ue709"; + public const string history_dismiss_24_regular = "\ue70a"; + public const string history_dismiss_28_regular = "\ue70b"; + public const string history_dismiss_32_regular = "\ue70c"; + public const string history_dismiss_48_regular = "\ue70d"; + public const string home_12_regular = "\ue70e"; + public const string home_16_regular = "\ue70f"; + public const string home_20_regular = "\uf480"; + public const string home_24_regular = "\uf481"; + public const string home_28_regular = "\uf482"; + public const string home_32_regular = "\ue710"; + public const string home_48_regular = "\ue711"; + public const string home_add_20_regular = "\ue712"; + public const string home_add_24_regular = "\uf483"; + public const string home_checkmark_16_regular = "\ue713"; + public const string home_checkmark_20_regular = "\ue714"; + public const string home_checkmark_24_regular = "\uf484"; + public const string home_database_20_regular = "\ue715"; + public const string home_database_24_regular = "\ueed5"; + public const string home_database_32_regular = "\ueed6"; + public const string home_garage_20_regular = "\U000f052e"; + public const string home_garage_24_regular = "\U000f052f"; + public const string home_heart_16_regular = "\U000f01d5"; + public const string home_heart_20_regular = "\U000f01d6"; + public const string home_heart_24_regular = "\U000f01d7"; + public const string home_heart_32_regular = "\U000f01d8"; + public const string home_more_20_regular = "\ue716"; + public const string home_more_24_regular = "\ueed7"; + public const string home_more_32_regular = "\ueed8"; + public const string home_more_48_regular = "\U000f0046"; + public const string home_person_20_regular = "\ue717"; + public const string home_person_24_regular = "\ue718"; + public const string home_split_20_regular = "\uf038"; + public const string home_split_24_regular = "\uf039"; + public const string home_split_32_regular = "\uf03a"; + public const string home_split_48_regular = "\uf03b"; + public const string hourglass_16_regular = "\uf0eb"; + public const string hourglass_20_regular = "\uef6b"; + public const string hourglass_24_regular = "\uef6c"; + public const string hourglass_half_16_regular = "\uf0ec"; + public const string hourglass_half_20_regular = "\uef6d"; + public const string hourglass_half_24_regular = "\uef6e"; + public const string hourglass_one_quarter_16_regular = "\uf0ed"; + public const string hourglass_one_quarter_20_regular = "\uef6f"; + public const string hourglass_one_quarter_24_regular = "\uef70"; + public const string hourglass_three_quarter_16_regular = "\uf0ee"; + public const string hourglass_three_quarter_20_regular = "\uef71"; + public const string hourglass_three_quarter_24_regular = "\uef72"; + public const string icons_20_regular = "\uf485"; + public const string icons_24_regular = "\uf486"; + public const string image_16_regular = "\uf487"; + public const string image_20_regular = "\uf488"; + public const string image_24_regular = "\uf489"; + public const string image_28_regular = "\uf48a"; + public const string image_32_regular = "\ue719"; + public const string image_48_regular = "\uf48b"; + public const string image_add_20_regular = "\ue71a"; + public const string image_add_24_regular = "\uf48c"; + public const string image_alt_text_16_regular = "\ue71b"; + public const string image_alt_text_20_regular = "\uf48d"; + public const string image_alt_text_24_regular = "\uf48e"; + public const string image_arrow_back_20_regular = "\ue71c"; + public const string image_arrow_back_24_regular = "\ue71d"; + public const string image_arrow_counterclockwise_20_regular = "\ue71e"; + public const string image_arrow_counterclockwise_24_regular = "\ue71f"; + public const string image_arrow_forward_20_regular = "\ue720"; + public const string image_arrow_forward_24_regular = "\ue721"; + public const string image_border_16_regular = "\U000f0047"; + public const string image_border_20_regular = "\U000f0048"; + public const string image_border_24_regular = "\U000f0049"; + public const string image_border_28_regular = "\U000f004a"; + public const string image_border_32_regular = "\U000f004b"; + public const string image_border_48_regular = "\U000f004c"; + public const string image_circle_16_regular = "\U000f004d"; + public const string image_circle_20_regular = "\U000f004e"; + public const string image_circle_24_regular = "\U000f004f"; + public const string image_circle_28_regular = "\U000f0050"; + public const string image_circle_32_regular = "\U000f0051"; + public const string image_circle_48_regular = "\U000f0052"; + public const string image_copy_20_regular = "\uf48f"; + public const string image_copy_24_regular = "\uf490"; + public const string image_copy_28_regular = "\uf491"; + public const string image_edit_16_regular = "\uf492"; + public const string image_edit_20_regular = "\uf493"; + public const string image_edit_24_regular = "\uf494"; + public const string image_globe_20_regular = "\ue722"; + public const string image_globe_24_regular = "\ue723"; + public const string image_multiple_16_regular = "\ue724"; + public const string image_multiple_20_regular = "\ue725"; + public const string image_multiple_24_regular = "\ue726"; + public const string image_multiple_28_regular = "\ue727"; + public const string image_multiple_32_regular = "\ue728"; + public const string image_multiple_48_regular = "\ue729"; + public const string image_multiple_off_16_regular = "\ue72a"; + public const string image_multiple_off_20_regular = "\ue72b"; + public const string image_off_20_regular = "\ue72c"; + public const string image_off_24_regular = "\uf498"; + public const string image_off_28_regular = "\U000f01d9"; + public const string image_off_32_regular = "\U000f01da"; + public const string image_off_48_regular = "\U000f01db"; + public const string image_prohibited_20_regular = "\ue72d"; + public const string image_prohibited_24_regular = "\ue72e"; + public const string image_reflection_20_regular = "\ue72f"; + public const string image_reflection_24_regular = "\ue730"; + public const string image_search_20_regular = "\uf499"; + public const string image_search_24_regular = "\uf49a"; + public const string image_shadow_20_regular = "\ue731"; + public const string image_shadow_24_regular = "\ue732"; + public const string image_sparkle_16_regular = "\U000f01f0"; + public const string image_sparkle_20_regular = "\U000f01f1"; + public const string image_sparkle_24_regular = "\U000f01f2"; + public const string image_split_20_regular = "\U000f0530"; + public const string image_split_24_regular = "\U000f0531"; + public const string image_stack_16_regular = "\U000f018d"; + public const string image_stack_20_regular = "\U000f018e"; + public const string image_table_16_regular = "\U000f0053"; + public const string image_table_20_regular = "\U000f0054"; + public const string image_table_24_regular = "\U000f0055"; + public const string image_table_28_regular = "\U000f0056"; + public const string image_table_32_regular = "\U000f0057"; + public const string image_table_48_regular = "\U000f0058"; + public const string immersive_reader_16_regular = "\ue733"; + public const string immersive_reader_20_regular = "\uf49b"; + public const string immersive_reader_24_regular = "\uf49c"; + public const string immersive_reader_28_regular = "\ue734"; + public const string important_12_regular = "\uf49d"; + public const string important_16_regular = "\uf49e"; + public const string important_20_regular = "\uf49f"; + public const string important_24_regular = "\uf4a0"; + public const string important_32_regular = "\U000f0444"; + public const string incognito_20_regular = "\ue735"; + public const string incognito_24_regular = "\uf4a1"; + public const string info_12_regular = "\ue736"; + public const string info_16_regular = "\uf4a2"; + public const string info_20_regular = "\uf4a3"; + public const string info_24_regular = "\uf4a4"; + public const string info_28_regular = "\uf4a5"; + public const string info_32_regular = "\U000f0059"; + public const string info_48_regular = "\U000f005a"; + public const string info_shield_20_regular = "\ue737"; + public const string ink_stroke_20_regular = "\ue738"; + public const string ink_stroke_24_regular = "\ue739"; + public const string ink_stroke_arrow_down_20_regular = "\uef73"; + public const string ink_stroke_arrow_down_24_regular = "\uef74"; + public const string ink_stroke_arrow_up_down_20_regular = "\uef75"; + public const string ink_stroke_arrow_up_down_24_regular = "\uef76"; + public const string inking_tool_16_regular = "\uf4a6"; + public const string inking_tool_20_regular = "\uf4a7"; + public const string inking_tool_24_regular = "\uf4a8"; + public const string inking_tool_32_regular = "\ue73a"; + public const string inprivate_account_16_regular = "\uf4a9"; + public const string inprivate_account_20_regular = "\uf4aa"; + public const string inprivate_account_24_regular = "\uf4ab"; + public const string inprivate_account_28_regular = "\uf4ac"; + public const string insert_20_regular = "\uf4ad"; + public const string ios_arrow_ltr_24_regular = "\ue73b"; + public const string ios_arrow_rtl_24_regular = "\ue73c"; + public const string ios_chevron_right_20_regular = "\uf4b2"; + public const string iot_16_regular = "\U000f005b"; + public const string iot_20_regular = "\ue73d"; + public const string iot_24_regular = "\ue73e"; + public const string iot_alert_16_regular = "\U000f005c"; + public const string iot_alert_20_regular = "\U000f005d"; + public const string iot_alert_24_regular = "\U000f005e"; + public const string javascript_16_regular = "\uf4b3"; + public const string javascript_20_regular = "\uf4b4"; + public const string javascript_24_regular = "\uf4b5"; + public const string joystick_20_regular = "\ue73f"; + public const string key_16_regular = "\ue740"; + public const string key_20_regular = "\uf4b6"; + public const string key_24_regular = "\uf4b7"; + public const string key_32_regular = "\ue741"; + public const string key_command_16_regular = "\ue742"; + public const string key_command_20_regular = "\ue743"; + public const string key_command_24_regular = "\ue744"; + public const string key_multiple_16_regular = "\U000f0274"; + public const string key_multiple_20_regular = "\ue745"; + public const string key_multiple_24_regular = "\U000f0275"; + public const string key_reset_20_regular = "\ue746"; + public const string key_reset_24_regular = "\ue747"; + public const string keyboard_123_20_regular = "\ue748"; + public const string keyboard_123_24_regular = "\ue749"; + public const string keyboard_16_regular = "\ue74a"; + public const string keyboard_20_regular = "\uf4b8"; + public const string keyboard_24_regular = "\uf4b9"; + public const string keyboard_dock_20_regular = "\ue74b"; + public const string keyboard_dock_24_regular = "\uf4ba"; + public const string keyboard_layout_float_20_regular = "\ue74c"; + public const string keyboard_layout_float_24_regular = "\uf4bb"; + public const string keyboard_layout_one_handed_left_20_regular = "\ue74d"; + public const string keyboard_layout_one_handed_left_24_regular = "\uf4bc"; + public const string keyboard_layout_resize_20_regular = "\ue74e"; + public const string keyboard_layout_resize_24_regular = "\uf4bd"; + public const string keyboard_layout_split_20_regular = "\ue74f"; + public const string keyboard_layout_split_24_regular = "\uf4be"; + public const string keyboard_mouse_16_regular = "\uf0ef"; + public const string keyboard_shift_16_regular = "\ue750"; + public const string keyboard_shift_20_regular = "\ue751"; + public const string keyboard_shift_24_regular = "\uf4bf"; + public const string keyboard_shift_uppercase_16_regular = "\ue752"; + public const string keyboard_shift_uppercase_20_regular = "\ue753"; + public const string keyboard_shift_uppercase_24_regular = "\uf4c0"; + public const string keyboard_tab_20_regular = "\ue754"; + public const string keyboard_tab_24_regular = "\uf4c1"; + public const string kiosk_24_regular = "\U000f021b"; + public const string laptop_16_regular = "\uf4c2"; + public const string laptop_20_regular = "\uf4c3"; + public const string laptop_24_regular = "\uf4c4"; + public const string laptop_28_regular = "\uf4c5"; + public const string laptop_32_regular = "\U000f04f3"; + public const string laptop_48_regular = "\U000f0532"; + public const string laptop_briefcase_20_regular = "\U000f0511"; + public const string laptop_briefcase_24_regular = "\U000f0512"; + public const string laptop_briefcase_32_regular = "\U000f0513"; + public const string laptop_dismiss_16_regular = "\uf505"; + public const string laptop_dismiss_20_regular = "\ue755"; + public const string laptop_multiple_24_regular = "\U000f021c"; + public const string laptop_person_20_regular = "\U000f056b"; + public const string laptop_person_24_regular = "\U000f056c"; + public const string laptop_person_48_regular = "\U000f056d"; + public const string laptop_settings_20_regular = "\U000f04f4"; + public const string laptop_settings_24_regular = "\U000f04f5"; + public const string laptop_settings_32_regular = "\U000f04f6"; + public const string laptop_shield_16_regular = "\U000f018f"; + public const string laptop_shield_20_regular = "\U000f0190"; + public const string laser_tool_20_regular = "\uef1f"; + public const string lasso_20_regular = "\ue756"; + public const string lasso_24_regular = "\uf4c9"; + public const string lasso_28_regular = "\ue757"; + public const string launcher_settings_20_regular = "\ue758"; + public const string launcher_settings_24_regular = "\uf4ca"; + public const string layer_20_regular = "\uf4cb"; + public const string layer_24_regular = "\uf4cc"; + public const string layer_diagonal_16_regular = "\U000f0445"; + public const string layer_diagonal_20_regular = "\uef26"; + public const string layer_diagonal_24_regular = "\U000f04ca"; + public const string layer_diagonal_add_20_regular = "\U000f0402"; + public const string layer_diagonal_add_24_regular = "\U000f05f0"; + public const string layer_diagonal_person_16_regular = "\U000f0446"; + public const string layer_diagonal_person_20_regular = "\uef27"; + public const string layer_diagonal_person_24_regular = "\U000f04cb"; + public const string layer_diagonal_sparkle_16_regular = "\U000f0514"; + public const string layer_diagonal_sparkle_20_regular = "\U000f0515"; + public const string layer_diagonal_sparkle_24_regular = "\U000f0516"; + public const string layout_cell_four_16_regular = "\U000f0486"; + public const string layout_cell_four_20_regular = "\U000f0487"; + public const string table_simple_24_regular = "\uec52"; + public const string layout_column_four_16_regular = "\U000f0489"; + public const string layout_column_four_20_regular = "\U000f048a"; + public const string layout_column_four_24_regular = "\U000f048b"; + public const string layout_column_one_third_left_16_regular = "\U000f048c"; + public const string layout_column_one_third_left_20_regular = "\U000f048d"; + public const string layout_column_one_third_left_24_regular = "\U000f048e"; + public const string layout_column_one_third_right_16_regular = "\U000f048f"; + public const string layout_column_one_third_right_20_regular = "\U000f0490"; + public const string layout_column_one_third_right_24_regular = "\U000f0491"; + public const string layout_column_one_third_right_hint_16_regular = "\U000f0492"; + public const string layout_column_one_third_right_hint_20_regular = "\U000f0493"; + public const string layout_column_one_third_right_hint_24_regular = "\U000f0494"; + public const string layout_column_three_16_regular = "\U000f0495"; + public const string layout_column_three_20_regular = "\U000f0496"; + public const string layout_column_three_24_regular = "\U000f0497"; + public const string layout_column_two_16_regular = "\U000f0498"; + public const string layout_column_two_20_regular = "\U000f0499"; + public const string layout_column_two_24_regular = "\U000f049a"; + public const string layout_column_two_32_regular = "\U000f05d7"; + public const string layout_column_two_split_left_16_regular = "\U000f049b"; + public const string layout_column_two_split_left_20_regular = "\U000f049c"; + public const string layout_column_two_split_left_24_regular = "\U000f049d"; + public const string layout_column_two_split_right_16_regular = "\U000f049e"; + public const string layout_column_two_split_right_20_regular = "\U000f049f"; + public const string layout_column_two_split_right_24_regular = "\U000f04a0"; + public const string layout_row_four_16_regular = "\U000f04a1"; + public const string layout_row_four_20_regular = "\U000f04a2"; + public const string layout_row_four_24_regular = "\U000f04a3"; + public const string layout_row_three_16_regular = "\U000f04a4"; + public const string layout_row_three_20_regular = "\U000f04a5"; + public const string layout_row_three_24_regular = "\U000f04a6"; + public const string layout_row_two_16_regular = "\U000f04a7"; + public const string layout_row_two_20_regular = "\U000f04a8"; + public const string layout_row_two_24_regular = "\U000f04a9"; + public const string layout_row_two_28_regular = "\U000f05fe"; + public const string layout_row_two_32_regular = "\U000f05d8"; + public const string layout_row_two_48_regular = "\U000f05ff"; + public const string layout_row_two_split_bottom_16_regular = "\U000f04aa"; + public const string layout_row_two_split_bottom_20_regular = "\U000f04ab"; + public const string layout_row_two_split_bottom_24_regular = "\U000f04ac"; + public const string layout_row_two_split_top_16_regular = "\U000f04ad"; + public const string layout_row_two_split_top_20_regular = "\U000f04ae"; + public const string layout_row_two_split_top_24_regular = "\U000f04af"; + public const string leaf_one_16_regular = "\ue759"; + public const string leaf_one_20_regular = "\ue75a"; + public const string leaf_one_24_regular = "\ue75b"; + public const string leaf_one_32_regular = "\uef07"; + public const string leaf_three_16_regular = "\ue75c"; + public const string leaf_three_20_regular = "\ue75d"; + public const string leaf_three_24_regular = "\ue75e"; + public const string leaf_two_16_regular = "\uf4d0"; + public const string leaf_two_20_regular = "\uf4d1"; + public const string leaf_two_24_regular = "\uf4d2"; + public const string leaf_two_32_regular = "\uef08"; + public const string leaf_two_48_regular = "\uf03c"; + public const string learning_app_20_regular = "\ue75f"; + public const string learning_app_24_regular = "\ue760"; + public const string library_16_regular = "\ue761"; + public const string library_20_regular = "\ue762"; + public const string library_24_regular = "\uf4d3"; + public const string library_28_regular = "\uf4d4"; + public const string library_32_regular = "\U000f0403"; + public const string lightbulb_16_regular = "\uf4d5"; + public const string lightbulb_20_regular = "\uf4d6"; + public const string lightbulb_24_regular = "\uf4d7"; + public const string lightbulb_28_regular = "\uf07c"; + public const string lightbulb_32_regular = "\uf07d"; + public const string lightbulb_48_regular = "\uf07e"; + public const string lightbulb_checkmark_20_regular = "\U000f012a"; + public const string lightbulb_circle_20_regular = "\ue763"; + public const string lightbulb_circle_24_regular = "\uf4d8"; + public const string lightbulb_filament_16_regular = "\uf4d9"; + public const string lightbulb_filament_20_regular = "\uf4da"; + public const string lightbulb_filament_24_regular = "\uf4db"; + public const string lightbulb_filament_32_regular = "\U000f0404"; + public const string lightbulb_filament_48_regular = "\ue764"; + public const string lightbulb_person_16_regular = "\uf07f"; + public const string lightbulb_person_20_regular = "\uf080"; + public const string lightbulb_person_24_regular = "\uf081"; + public const string lightbulb_person_28_regular = "\uf082"; + public const string lightbulb_person_32_regular = "\uf083"; + public const string lightbulb_person_48_regular = "\uf084"; + public const string likert_16_regular = "\uf4dd"; + public const string likert_20_regular = "\uf4de"; + public const string likert_24_regular = "\uf4df"; + public const string line_20_regular = "\ue765"; + public const string line_24_regular = "\ue766"; + public const string line_32_regular = "\ue767"; + public const string line_48_regular = "\ue768"; + public const string line_dashes_20_regular = "\ue769"; + public const string line_dashes_24_regular = "\ue76a"; + public const string line_dashes_32_regular = "\ue76b"; + public const string line_dashes_48_regular = "\ue76c"; + public const string line_flow_diagonal_up_right_16_regular = "\U000f0533"; + public const string line_flow_diagonal_up_right_20_regular = "\U000f0534"; + public const string line_flow_diagonal_up_right_24_regular = "\U000f0535"; + public const string line_flow_diagonal_up_right_32_regular = "\U000f0536"; + public const string line_horizontal_1_16_regular = "\U000f02b7"; + public const string line_horizontal_1_20_regular = "\uf4e0"; + public const string line_horizontal_1_24_regular = "\U000f02b8"; + public const string line_horizontal_1_28_regular = "\U000f02b9"; + public const string line_horizontal_1_dashes_16_regular = "\U000f02ba"; + public const string line_horizontal_1_dashes_20_regular = "\U000f02bb"; + public const string line_horizontal_1_dashes_24_regular = "\U000f02bc"; + public const string line_horizontal_1_dashes_28_regular = "\U000f02bd"; + public const string line_horizontal_2_dashes_solid_16_regular = "\U000f02be"; + public const string line_horizontal_2_dashes_solid_20_regular = "\U000f02bf"; + public const string line_horizontal_2_dashes_solid_24_regular = "\U000f02c0"; + public const string line_horizontal_2_dashes_solid_28_regular = "\U000f02c1"; + public const string line_horizontal_3_20_regular = "\uf4e1"; + public const string line_horizontal_4_16_regular = "\U000f012b"; + public const string line_horizontal_4_20_regular = "\U000f005f"; + public const string line_horizontal_4_search_16_regular = "\U000f012c"; + public const string line_horizontal_4_search_20_regular = "\U000f0060"; + public const string line_horizontal_5_20_regular = "\uf4e2"; + public const string line_horizontal_5_error_20_regular = "\ue76d"; + public const string line_style_20_regular = "\ue76e"; + public const string line_style_24_regular = "\ue76f"; + public const string line_thickness_20_regular = "\U000f0061"; + public const string line_thickness_24_regular = "\U000f0062"; + public const string link_12_regular = "\ue770"; + public const string link_16_regular = "\uf4e3"; + public const string link_20_regular = "\uf4e4"; + public const string link_24_regular = "\uf4e5"; + public const string link_28_regular = "\uf4e6"; + public const string link_32_regular = "\ue771"; + public const string link_48_regular = "\uf4e7"; + public const string link_add_16_regular = "\U000f0405"; + public const string link_add_20_regular = "\U000f0406"; + public const string link_add_24_regular = "\U000f021d"; + public const string link_dismiss_16_regular = "\ue772"; + public const string link_dismiss_20_regular = "\ue773"; + public const string link_dismiss_24_regular = "\ue774"; + public const string link_edit_16_regular = "\uf4e8"; + public const string link_edit_20_regular = "\uf4e9"; + public const string link_edit_24_regular = "\uf4ea"; + public const string link_multiple_16_regular = "\U000f0276"; + public const string link_multiple_20_regular = "\U000f0277"; + public const string link_multiple_24_regular = "\U000f0278"; + public const string link_person_16_regular = "\U000f03ba"; + public const string link_person_20_regular = "\U000f03bb"; + public const string link_person_24_regular = "\U000f03bc"; + public const string link_person_32_regular = "\U000f03bd"; + public const string link_person_48_regular = "\U000f03be"; + public const string link_settings_24_regular = "\U000f021e"; + public const string link_square_12_regular = "\ue775"; + public const string link_square_16_regular = "\ue776"; + public const string link_square_20_regular = "\ue777"; + public const string link_square_24_regular = "\uf4ec"; + public const string link_toolbox_20_regular = "\ue778"; + public const string list_16_regular = "\ue779"; + public const string list_20_regular = "\uf4ed"; + public const string list_24_regular = "\uf4ee"; + public const string list_28_regular = "\uf4ef"; + public const string list_bar_16_regular = "\U000f0191"; + public const string list_bar_20_regular = "\U000f0192"; + public const string list_bar_tree_16_regular = "\U000f0193"; + public const string list_bar_tree_20_regular = "\U000f0194"; + public const string list_bar_tree_offset_16_regular = "\U000f0195"; + public const string list_bar_tree_offset_20_regular = "\U000f0196"; + public const string list_rtl_16_regular = "\U000f0197"; + public const string list_rtl_20_regular = "\U000f0198"; + public const string live_20_regular = "\uf4f0"; + public const string live_24_regular = "\uf4f1"; + public const string live_off_20_regular = "\ue77a"; + public const string live_off_24_regular = "\ue77b"; + public const string local_language_16_regular = "\uf4f2"; + public const string local_language_20_regular = "\uf4f3"; + public const string local_language_24_regular = "\uf4f4"; + public const string local_language_28_regular = "\uf4f5"; + public const string location_12_regular = "\uf4f6"; + public const string location_16_regular = "\uf4f7"; + public const string location_20_regular = "\uf4f8"; + public const string location_24_regular = "\uf4f9"; + public const string location_28_regular = "\uf4fa"; + public const string location_48_regular = "\ue77c"; + public const string location_add_16_regular = "\ue77d"; + public const string location_add_20_regular = "\ue77e"; + public const string location_add_24_regular = "\ue77f"; + public const string location_add_left_20_regular = "\ue780"; + public const string location_add_right_20_regular = "\ue781"; + public const string location_add_up_20_regular = "\ue782"; + public const string location_arrow_12_regular = "\U000f0063"; + public const string location_arrow_16_regular = "\U000f0064"; + public const string location_arrow_20_regular = "\U000f0065"; + public const string location_arrow_24_regular = "\U000f0066"; + public const string location_arrow_28_regular = "\U000f0067"; + public const string location_arrow_32_regular = "\U000f0068"; + public const string location_arrow_48_regular = "\U000f0069"; + public const string location_arrow_left_16_regular = "\U000f006a"; + public const string location_arrow_left_48_regular = "\ue783"; + public const string location_arrow_right_16_regular = "\U000f006b"; + public const string location_arrow_right_48_regular = "\ue784"; + public const string location_arrow_up_16_regular = "\U000f006c"; + public const string location_arrow_up_48_regular = "\ue785"; + public const string location_dismiss_20_regular = "\ue786"; + public const string location_dismiss_24_regular = "\ue787"; + public const string location_live_20_regular = "\uf4fb"; + public const string location_live_24_regular = "\uf4fc"; + public const string location_off_16_regular = "\ue788"; + public const string location_off_20_regular = "\ue789"; + public const string location_off_24_regular = "\ue78a"; + public const string location_off_28_regular = "\ue78b"; + public const string location_off_48_regular = "\ue78c"; + public const string location_ripple_12_regular = "\U000f05cb"; + public const string location_ripple_16_regular = "\U000f056e"; + public const string location_ripple_20_regular = "\U000f056f"; + public const string location_ripple_24_regular = "\U000f0570"; + public const string location_target_square_16_regular = "\U000f04b0"; + public const string location_target_square_20_regular = "\U000f04b1"; + public const string location_target_square_24_regular = "\U000f04b2"; + public const string location_target_square_32_regular = "\U000f04b3"; + public const string lock_closed_12_regular = "\ue78d"; + public const string lock_closed_16_regular = "\ue78e"; + public const string lock_closed_20_regular = "\ue78f"; + public const string lock_closed_24_regular = "\ue790"; + public const string lock_closed_28_regular = "\U000f021f"; + public const string lock_closed_32_regular = "\ue791"; + public const string lock_closed_48_regular = "\U000f0220"; + public const string lock_closed_key_16_regular = "\U000f00df"; + public const string lock_closed_key_20_regular = "\U000f00e0"; + public const string lock_closed_key_24_regular = "\U000f00e1"; + public const string lock_multiple_20_regular = "\ue792"; + public const string lock_multiple_24_regular = "\ue793"; + public const string lock_open_12_regular = "\U000f0221"; + public const string lock_open_16_regular = "\ue794"; + public const string lock_open_20_regular = "\ue795"; + public const string lock_open_24_regular = "\ue796"; + public const string lock_open_28_regular = "\ue797"; + public const string lock_open_32_regular = "\U000f0222"; + public const string lock_open_48_regular = "\U000f0223"; + public const string lock_shield_16_regular = "\U000f0407"; + public const string lock_shield_20_regular = "\uf502"; + public const string lock_shield_24_regular = "\uf503"; + public const string lock_shield_28_regular = "\U000f0408"; + public const string lock_shield_32_regular = "\U000f0409"; + public const string lock_shield_48_regular = "\uf504"; + public const string lottery_20_regular = "\ue798"; + public const string lottery_24_regular = "\ue799"; + public const string luggage_16_regular = "\ue79a"; + public const string luggage_20_regular = "\ue79b"; + public const string luggage_24_regular = "\ue79c"; + public const string luggage_28_regular = "\ue79d"; + public const string luggage_32_regular = "\ue79e"; + public const string luggage_48_regular = "\ue79f"; + public const string mail_12_regular = "\ue7a0"; + public const string mail_16_regular = "\ue7a1"; + public const string mail_20_regular = "\uf506"; + public const string mail_24_regular = "\uf507"; + public const string mail_28_regular = "\uf508"; + public const string mail_32_regular = "\U000f01f3"; + public const string mail_48_regular = "\uf509"; + public const string mail_add_16_regular = "\uf50d"; + public const string mail_add_20_regular = "\uf51f"; + public const string mail_add_24_regular = "\uf50a"; + public const string mail_alert_16_regular = "\uf520"; + public const string mail_alert_20_regular = "\uf52a"; + public const string mail_alert_24_regular = "\uf52b"; + public const string mail_alert_28_regular = "\ue7a2"; + public const string mail_alert_32_regular = "\U000f05f1"; + public const string mail_all_read_16_regular = "\ue7a3"; + public const string mail_all_read_20_regular = "\uf50e"; + public const string mail_all_read_24_regular = "\ue7a4"; + public const string mail_all_read_28_regular = "\ue7a5"; + public const string mail_all_unread_20_regular = "\uf50f"; + public const string mail_arrow_clockwise_16_regular = "\U000f0537"; + public const string mail_arrow_clockwise_20_regular = "\U000f0538"; + public const string mail_arrow_clockwise_24_regular = "\U000f0539"; + public const string mail_arrow_clockwise_32_regular = "\U000f05f2"; + public const string mail_arrow_double_back_16_regular = "\ue7a6"; + public const string mail_arrow_double_back_20_regular = "\ue7a7"; + public const string mail_arrow_double_back_24_regular = "\U000f006d"; + public const string mail_arrow_double_back_32_regular = "\U000f0571"; + public const string mail_arrow_down_16_regular = "\uf52c"; + public const string mail_arrow_down_20_regular = "\ue7a8"; + public const string mail_arrow_forward_16_regular = "\ue7a9"; + public const string mail_arrow_forward_20_regular = "\ue7aa"; + public const string mail_arrow_up_16_regular = "\ue7ab"; + public const string mail_arrow_up_20_regular = "\uf52d"; + public const string mail_arrow_up_24_regular = "\uf54b"; + public const string mail_attach_16_regular = "\ue7ac"; + public const string mail_attach_20_regular = "\ue7ad"; + public const string mail_attach_24_regular = "\ue7ae"; + public const string mail_attach_28_regular = "\ue7af"; + public const string mail_briefcase_48_regular = "\U000f0572"; + public const string mail_checkmark_16_regular = "\uf54c"; + public const string mail_checkmark_20_regular = "\ue7b0"; + public const string mail_checkmark_24_regular = "\U000f006e"; + public const string mail_clock_16_regular = "\uf551"; + public const string mail_clock_20_regular = "\uf510"; + public const string mail_clock_24_regular = "\uf552"; + public const string mail_copy_20_regular = "\uf511"; + public const string mail_copy_24_regular = "\uf512"; + public const string mail_copy_32_regular = "\U000f05d9"; + public const string mail_dismiss_16_regular = "\ue7b1"; + public const string mail_dismiss_20_regular = "\uf553"; + public const string mail_dismiss_24_regular = "\uf554"; + public const string mail_dismiss_28_regular = "\ue7b2"; + public const string mail_edit_20_regular = "\ue7b3"; + public const string mail_edit_24_regular = "\ue7b4"; + public const string mail_edit_32_regular = "\U000f05ad"; + public const string mail_error_16_regular = "\ue7b5"; + public const string mail_error_20_regular = "\uf555"; + public const string mail_error_24_regular = "\uf55d"; + public const string mail_inbox_16_regular = "\uf513"; + public const string mail_inbox_20_regular = "\uf514"; + public const string mail_inbox_24_regular = "\uf515"; + public const string mail_inbox_28_regular = "\uf516"; + public const string mail_inbox_add_16_regular = "\uf517"; + public const string mail_inbox_add_20_regular = "\uf518"; + public const string mail_inbox_add_24_regular = "\uf519"; + public const string mail_inbox_add_28_regular = "\uf51a"; + public const string mail_inbox_all_20_regular = "\ue7b6"; + public const string mail_inbox_all_24_regular = "\ue7b7"; + public const string mail_inbox_arrow_down_16_regular = "\uf55e"; + public const string mail_inbox_arrow_down_20_regular = "\ue7b8"; + public const string mail_inbox_arrow_right_20_regular = "\ue7b9"; + public const string mail_inbox_arrow_right_24_regular = "\ue7ba"; + public const string mail_inbox_arrow_up_20_regular = "\ue7bb"; + public const string mail_inbox_arrow_up_24_regular = "\ue7bc"; + public const string mail_inbox_checkmark_16_regular = "\ue7bd"; + public const string mail_inbox_checkmark_20_regular = "\ue7be"; + public const string mail_inbox_checkmark_24_regular = "\ue7bf"; + public const string mail_inbox_checkmark_28_regular = "\ue7c0"; + public const string mail_inbox_dismiss_16_regular = "\uf51b"; + public const string mail_inbox_dismiss_20_regular = "\uf51c"; + public const string mail_inbox_dismiss_24_regular = "\uf51d"; + public const string mail_inbox_dismiss_28_regular = "\uf51e"; + public const string mail_link_20_regular = "\uf585"; + public const string mail_link_24_regular = "\uf58c"; + public const string mail_list_16_regular = "\ue7c1"; + public const string mail_list_20_regular = "\ue7c2"; + public const string mail_list_24_regular = "\ue7c3"; + public const string mail_list_28_regular = "\ue7c4"; + public const string mail_multiple_16_regular = "\ue7c5"; + public const string mail_multiple_20_regular = "\ue7c6"; + public const string mail_multiple_24_regular = "\ue7c7"; + public const string mail_multiple_28_regular = "\ue7c8"; + public const string mail_multiple_32_regular = "\U000f0447"; + public const string mail_off_16_regular = "\U000f0279"; + public const string mail_off_20_regular = "\ue7c9"; + public const string mail_off_24_regular = "\ue7ca"; + public const string mail_open_person_16_regular = "\ue7cb"; + public const string mail_open_person_20_regular = "\ue7cc"; + public const string mail_open_person_24_regular = "\ue7cd"; + public const string mail_pause_16_regular = "\uf5a6"; + public const string mail_pause_20_regular = "\ue7ce"; + public const string mail_prohibited_16_regular = "\ue7cf"; + public const string mail_prohibited_20_regular = "\uf5cb"; + public const string mail_prohibited_24_regular = "\uf5e2"; + public const string mail_prohibited_28_regular = "\ue7d0"; + public const string mail_read_16_regular = "\ue7d1"; + public const string mail_read_20_regular = "\uf521"; + public const string mail_read_24_regular = "\uf522"; + public const string mail_read_28_regular = "\uf523"; + public const string mail_read_32_regular = "\U000f0448"; + public const string mail_read_48_regular = "\uf524"; + public const string mail_read_briefcase_48_regular = "\U000f058d"; + public const string mail_read_multiple_20_regular = "\ueeab"; + public const string mail_read_multiple_32_regular = "\ueeac"; + public const string mail_rewind_16_regular = "\U000f030a"; + public const string mail_rewind_20_regular = "\U000f030b"; + public const string mail_rewind_24_regular = "\U000f030c"; + public const string mail_settings_16_regular = "\uf5e3"; + public const string mail_settings_20_regular = "\ue7d5"; + public const string mail_shield_16_regular = "\uf5e8"; + public const string mail_shield_20_regular = "\ue7d6"; + public const string mail_template_16_regular = "\ue7d7"; + public const string mail_template_20_regular = "\uf5e9"; + public const string mail_template_24_regular = "\uf5ed"; + public const string mail_unread_12_regular = "\U000f006f"; + public const string mail_unread_16_regular = "\uf525"; + public const string mail_unread_20_regular = "\uf526"; + public const string mail_unread_24_regular = "\uf527"; + public const string mail_unread_28_regular = "\uf528"; + public const string mail_unread_32_regular = "\U000f0449"; + public const string mail_unread_48_regular = "\uf529"; + public const string mail_warning_16_regular = "\uf5ee"; + public const string mail_warning_20_regular = "\ue7d8"; + public const string mail_warning_24_regular = "\ue7d9"; + public const string mailbox_16_regular = "\U000f044a"; + public const string mailbox_20_regular = "\U000f044b"; + public const string map_16_regular = "\U000f0070"; + public const string map_20_regular = "\ue7da"; + public const string map_24_regular = "\uf52e"; + public const string map_drive_16_regular = "\uf52f"; + public const string map_drive_20_regular = "\uf530"; + public const string map_drive_24_regular = "\uf531"; + public const string markdown_20_regular = "\ue7db"; + public const string match_app_layout_20_regular = "\ue7dc"; + public const string match_app_layout_24_regular = "\uf532"; + public const string math_format_linear_20_regular = "\ue7dd"; + public const string math_format_linear_24_regular = "\ue7de"; + public const string math_format_professional_16_regular = "\U000f012d"; + public const string math_format_professional_20_regular = "\ue7df"; + public const string math_format_professional_24_regular = "\ue7e0"; + public const string math_formula_16_regular = "\ue7e1"; + public const string math_formula_20_regular = "\ue7e2"; + public const string math_formula_24_regular = "\ue7e3"; + public const string math_formula_32_regular = "\ue7e4"; + public const string math_symbols_16_regular = "\ue7e5"; + public const string math_symbols_20_regular = "\ue7e6"; + public const string math_symbols_24_regular = "\ue7e7"; + public const string math_symbols_28_regular = "\ue7e8"; + public const string math_symbols_32_regular = "\ue7e9"; + public const string math_symbols_48_regular = "\ue7ea"; + public const string maximize_16_regular = "\uf533"; + public const string maximize_20_regular = "\ue7eb"; + public const string maximize_24_regular = "\ue7ec"; + public const string maximize_28_regular = "\ue7ed"; + public const string maximize_48_regular = "\ue7ee"; + public const string meet_now_16_regular = "\ue7ef"; + public const string meet_now_20_regular = "\uf534"; + public const string meet_now_24_regular = "\uf535"; + public const string meet_now_28_regular = "\uf5f6"; + public const string meet_now_32_regular = "\uf5f7"; + public const string meet_now_48_regular = "\uf631"; + public const string megaphone_16_regular = "\uf536"; + public const string megaphone_20_regular = "\uf537"; + public const string megaphone_24_regular = "\uf538"; + public const string megaphone_28_regular = "\uf539"; + public const string megaphone_circle_20_regular = "\uef77"; + public const string megaphone_circle_24_regular = "\uef78"; + public const string megaphone_loud_16_regular = "\ueead"; + public const string megaphone_loud_20_regular = "\uf64b"; + public const string megaphone_loud_24_regular = "\ue7f0"; + public const string megaphone_loud_28_regular = "\uf085"; + public const string megaphone_loud_32_regular = "\uf086"; + public const string megaphone_off_16_regular = "\ue7f1"; + public const string megaphone_off_20_regular = "\ue7f2"; + public const string megaphone_off_24_regular = "\uf53a"; + public const string megaphone_off_28_regular = "\ue7f3"; + public const string memory_16_regular = "\uf0f0"; + public const string mention_12_regular = "\ueff0"; + public const string mention_16_regular = "\uf53b"; + public const string mention_20_regular = "\uf53c"; + public const string mention_24_regular = "\uf53d"; + public const string mention_32_regular = "\U000f0071"; + public const string mention_48_regular = "\U000f0072"; + public const string mention_arrow_down_20_regular = "\ue7f4"; + public const string mention_brackets_20_regular = "\ue7f5"; + public const string merge_16_regular = "\ue7f6"; + public const string merge_20_regular = "\ue7f7"; + public const string merge_24_regular = "\uf53e"; + public const string mic_16_regular = "\ue7f8"; + public const string mic_20_regular = "\ue7f9"; + public const string mic_24_regular = "\ue7fa"; + public const string mic_28_regular = "\ue7fb"; + public const string mic_32_regular = "\ue7fc"; + public const string mic_48_regular = "\ue7fd"; + public const string mic_off_12_regular = "\uf53f"; + public const string mic_off_16_regular = "\uf540"; + public const string mic_off_20_regular = "\ue7fe"; + public const string mic_off_24_regular = "\uf541"; + public const string mic_off_28_regular = "\uf542"; + public const string mic_off_32_regular = "\ue7ff"; + public const string mic_off_48_regular = "\ue800"; + public const string mic_prohibited_16_regular = "\ue801"; + public const string mic_prohibited_20_regular = "\ue802"; + public const string mic_prohibited_24_regular = "\ue803"; + public const string mic_prohibited_28_regular = "\ue804"; + public const string mic_prohibited_48_regular = "\ue805"; + public const string mic_pulse_16_regular = "\ue806"; + public const string mic_pulse_20_regular = "\ue807"; + public const string mic_pulse_24_regular = "\ue808"; + public const string mic_pulse_28_regular = "\ue809"; + public const string mic_pulse_32_regular = "\ue80a"; + public const string mic_pulse_48_regular = "\ue80b"; + public const string mic_pulse_off_16_regular = "\ue80c"; + public const string mic_pulse_off_20_regular = "\ue80d"; + public const string mic_pulse_off_24_regular = "\ue80e"; + public const string mic_pulse_off_28_regular = "\ue80f"; + public const string mic_pulse_off_32_regular = "\ue810"; + public const string mic_pulse_off_48_regular = "\ue811"; + public const string mic_record_20_regular = "\U000f02c2"; + public const string mic_record_24_regular = "\U000f02c3"; + public const string mic_record_28_regular = "\U000f02c4"; + public const string mic_settings_20_regular = "\ue812"; + public const string mic_settings_24_regular = "\uf548"; + public const string mic_sparkle_16_regular = "\ue813"; + public const string mic_sparkle_20_regular = "\ue814"; + public const string mic_sparkle_24_regular = "\ue815"; + public const string mic_sync_20_regular = "\ue816"; + public const string microscope_20_regular = "\uf64c"; + public const string microscope_24_regular = "\uf64f"; + public const string midi_20_regular = "\uf549"; + public const string midi_24_regular = "\uf54a"; + public const string mobile_optimized_20_regular = "\ue817"; + public const string mobile_optimized_24_regular = "\uf54d"; + public const string mold_20_regular = "\U000f012e"; + public const string mold_24_regular = "\U000f012f"; + public const string mold_28_regular = "\U000f0130"; + public const string molecule_16_regular = "\uf650"; + public const string molecule_20_regular = "\uf659"; + public const string molecule_24_regular = "\uf65a"; + public const string molecule_28_regular = "\uf65d"; + public const string molecule_32_regular = "\uf65e"; + public const string molecule_48_regular = "\uf65f"; + public const string money_16_regular = "\uf54e"; + public const string money_20_regular = "\uf54f"; + public const string money_24_regular = "\uf550"; + public const string money_calculator_20_regular = "\ue818"; + public const string money_calculator_24_regular = "\ue819"; + public const string money_dismiss_20_regular = "\ue81a"; + public const string money_dismiss_24_regular = "\ue81b"; + public const string money_hand_16_regular = "\U000f01dc"; + public const string money_hand_20_regular = "\ue81c"; + public const string money_hand_24_regular = "\ue81d"; + public const string money_off_20_regular = "\ue81e"; + public const string money_off_24_regular = "\ue81f"; + public const string money_settings_16_regular = "\U000f01dd"; + public const string money_settings_20_regular = "\ue820"; + public const string money_settings_24_regular = "\U000f01de"; + public const string more_circle_16_regular = "\uf0f1"; + public const string more_circle_20_regular = "\ue821"; + public const string more_circle_24_regular = "\uf0f2"; + public const string more_circle_28_regular = "\uf0f3"; + public const string more_circle_32_regular = "\ue822"; + public const string more_circle_48_regular = "\uf0f4"; + public const string more_horizontal_16_regular = "\ue823"; + public const string more_horizontal_24_regular = "\ue825"; + public const string more_horizontal_28_regular = "\ue826"; + public const string more_horizontal_32_regular = "\ue827"; + public const string more_horizontal_48_regular = "\ue828"; + public const string more_vertical_16_regular = "\ue829"; + public const string more_vertical_20_regular = "\uf556"; + public const string more_vertical_24_regular = "\uf557"; + public const string more_vertical_28_regular = "\uf558"; + public const string more_vertical_32_regular = "\ue82a"; + public const string more_vertical_48_regular = "\uf559"; + public const string mountain_location_bottom_20_regular = "\U000f00e2"; + public const string mountain_location_bottom_24_regular = "\U000f00e3"; + public const string mountain_location_bottom_28_regular = "\U000f00e4"; + public const string mountain_location_top_20_regular = "\U000f00e5"; + public const string mountain_location_top_24_regular = "\U000f00e6"; + public const string mountain_location_top_28_regular = "\U000f00e7"; + public const string mountain_trail_20_regular = "\U000f00e8"; + public const string mountain_trail_24_regular = "\U000f00e9"; + public const string mountain_trail_28_regular = "\U000f00ea"; + public const string movies_and_tv_16_regular = "\ue82b"; + public const string movies_and_tv_20_regular = "\ue82c"; + public const string movies_and_tv_24_regular = "\uf55a"; + public const string multiplier_1_2x_20_regular = "\ue82d"; + public const string multiplier_1_2x_24_regular = "\ue82e"; + public const string multiplier_1_2x_28_regular = "\ue82f"; + public const string multiplier_1_2x_32_regular = "\ue830"; + public const string multiplier_1_2x_48_regular = "\ue831"; + public const string multiplier_1_5x_20_regular = "\ue832"; + public const string multiplier_1_5x_24_regular = "\ue833"; + public const string multiplier_1_5x_28_regular = "\ue834"; + public const string multiplier_1_5x_32_regular = "\ue835"; + public const string multiplier_1_5x_48_regular = "\ue836"; + public const string multiplier_1_8x_20_regular = "\ue837"; + public const string multiplier_1_8x_24_regular = "\ue838"; + public const string multiplier_1_8x_28_regular = "\ue839"; + public const string multiplier_1_8x_32_regular = "\ue83a"; + public const string multiplier_1_8x_48_regular = "\ue83b"; + public const string multiplier_1x_20_regular = "\ue83c"; + public const string multiplier_1x_24_regular = "\ue83d"; + public const string multiplier_1x_28_regular = "\ue83e"; + public const string multiplier_1x_32_regular = "\ue83f"; + public const string multiplier_1x_48_regular = "\ue840"; + public const string multiplier_2x_20_regular = "\ue841"; + public const string multiplier_2x_24_regular = "\ue842"; + public const string multiplier_2x_28_regular = "\ue843"; + public const string multiplier_2x_32_regular = "\ue844"; + public const string multiplier_2x_48_regular = "\ue845"; + public const string multiplier_5x_20_regular = "\ue846"; + public const string multiplier_5x_24_regular = "\ue847"; + public const string multiplier_5x_28_regular = "\ue848"; + public const string multiplier_5x_32_regular = "\ue849"; + public const string multiplier_5x_48_regular = "\ue84a"; + public const string multiselect_ltr_16_regular = "\ue84b"; + public const string multiselect_ltr_20_regular = "\ue84c"; + public const string multiselect_ltr_24_regular = "\ue84d"; + public const string multiselect_rtl_16_regular = "\ue84e"; + public const string multiselect_rtl_20_regular = "\ue84f"; + public const string multiselect_rtl_24_regular = "\ue850"; + public const string music_note_1_20_regular = "\ue851"; + public const string music_note_1_24_regular = "\ue852"; + public const string music_note_2_16_regular = "\ue853"; + public const string music_note_2_20_regular = "\ue854"; + public const string music_note_2_24_regular = "\ue855"; + public const string music_note_2_play_20_regular = "\ue856"; + public const string music_note_off_1_20_regular = "\ue857"; + public const string music_note_off_1_24_regular = "\ue858"; + public const string music_note_off_2_16_regular = "\ue859"; + public const string music_note_off_2_20_regular = "\ue85a"; + public const string music_note_off_2_24_regular = "\ue85b"; + public const string my_location_12_regular = "\ue85c"; + public const string my_location_16_regular = "\ue85d"; + public const string my_location_20_regular = "\ue85e"; + public const string my_location_24_regular = "\uf55f"; + public const string navigation_16_regular = "\ue85f"; + public const string navigation_24_regular = "\uf561"; + public const string navigation_location_target_20_regular = "\ue860"; + public const string navigation_play_20_regular = "\ue861"; + public const string navigation_unread_20_regular = "\ue862"; + public const string navigation_unread_24_regular = "\ue863"; + public const string network_adapter_16_regular = "\uf0f5"; + public const string network_check_20_regular = "\ue864"; + public const string network_check_24_regular = "\uf562"; + public const string new_16_regular = "\uf563"; + public const string new_20_regular = "\ue865"; + public const string new_24_regular = "\uf564"; + public const string news_16_regular = "\ue866"; + public const string news_20_regular = "\uf565"; + public const string news_24_regular = "\uf566"; + public const string news_28_regular = "\uf567"; + public const string next_16_regular = "\uf568"; + public const string next_20_regular = "\uf569"; + public const string next_24_regular = "\uf56a"; + public const string next_28_regular = "\ue867"; + public const string next_32_regular = "\ue868"; + public const string next_48_regular = "\ue869"; + public const string next_frame_20_regular = "\U000f02dc"; + public const string next_frame_24_regular = "\U000f02dd"; + public const string note_16_regular = "\uf663"; + public const string note_20_regular = "\uf56b"; + public const string note_24_regular = "\uf56c"; + public const string note_28_regular = "\ue86a"; + public const string note_48_regular = "\ue86b"; + public const string note_add_16_regular = "\uf56d"; + public const string note_add_20_regular = "\uf56e"; + public const string note_add_24_regular = "\uf56f"; + public const string note_add_28_regular = "\ue86c"; + public const string note_add_48_regular = "\ue86d"; + public const string note_edit_20_regular = "\ue86e"; + public const string note_edit_24_regular = "\ue86f"; + public const string note_pin_16_regular = "\uf664"; + public const string note_pin_20_regular = "\ue870"; + public const string notebook_16_regular = "\uef09"; + public const string notebook_20_regular = "\ue871"; + public const string notebook_24_regular = "\uf570"; + public const string notebook_32_regular = "\ueed9"; + public const string notebook_add_20_regular = "\ue872"; + public const string notebook_add_24_regular = "\ue873"; + public const string notebook_arrow_curve_down_20_regular = "\ue874"; + public const string notebook_error_20_regular = "\ue875"; + public const string notebook_error_24_regular = "\uf571"; + public const string notebook_eye_20_regular = "\ue876"; + public const string notebook_lightning_20_regular = "\ue877"; + public const string notebook_lightning_24_regular = "\uf572"; + public const string notebook_question_mark_20_regular = "\ue878"; + public const string notebook_question_mark_24_regular = "\uf573"; + public const string notebook_section_20_regular = "\ue879"; + public const string notebook_section_24_regular = "\uf574"; + public const string notebook_section_arrow_right_20_regular = "\uef7c"; + public const string notebook_section_arrow_right_24_regular = "\ue87a"; + public const string notebook_subsection_20_regular = "\ue87b"; + public const string notebook_subsection_24_regular = "\ue87c"; + public const string notebook_sync_20_regular = "\ue87d"; + public const string notebook_sync_24_regular = "\uf575"; + public const string notepad_12_regular = "\ue87e"; + public const string notepad_16_regular = "\uf665"; + public const string notepad_20_regular = "\uf576"; + public const string notepad_24_regular = "\uf577"; + public const string notepad_28_regular = "\uf578"; + public const string notepad_32_regular = "\ue87f"; + public const string notepad_edit_16_regular = "\uf666"; + public const string notepad_edit_20_regular = "\ue880"; + public const string notepad_person_16_regular = "\ue881"; + public const string notepad_person_20_regular = "\ue882"; + public const string notepad_person_24_regular = "\ue883"; + public const string notepad_sparkle_16_regular = "\U000f0600"; + public const string notepad_sparkle_20_regular = "\U000f0601"; + public const string notepad_sparkle_24_regular = "\U000f0602"; + public const string notepad_sparkle_28_regular = "\U000f0603"; + public const string notepad_sparkle_32_regular = "\U000f0604"; + public const string number_circle_0_16_regular = "\U000f0342"; + public const string number_circle_0_20_regular = "\U000f0343"; + public const string number_circle_0_24_regular = "\U000f0344"; + public const string number_circle_0_28_regular = "\U000f0345"; + public const string number_circle_0_32_regular = "\U000f0346"; + public const string number_circle_0_48_regular = "\U000f0347"; + public const string number_circle_1_16_regular = "\ue884"; + public const string number_circle_1_20_regular = "\ue885"; + public const string number_circle_1_24_regular = "\ue886"; + public const string number_circle_1_28_regular = "\U000f024b"; + public const string number_circle_1_32_regular = "\U000f024c"; + public const string number_circle_1_48_regular = "\U000f024d"; + public const string number_circle_2_16_regular = "\U000f024e"; + public const string number_circle_2_20_regular = "\U000f024f"; + public const string number_circle_2_24_regular = "\U000f0250"; + public const string number_circle_2_28_regular = "\U000f0251"; + public const string number_circle_2_32_regular = "\U000f0252"; + public const string number_circle_2_48_regular = "\U000f0253"; + public const string number_circle_3_16_regular = "\U000f0254"; + public const string number_circle_3_20_regular = "\U000f0255"; + public const string number_circle_3_24_regular = "\U000f0256"; + public const string number_circle_3_28_regular = "\U000f0257"; + public const string number_circle_3_32_regular = "\U000f0258"; + public const string number_circle_3_48_regular = "\U000f0259"; + public const string number_circle_4_16_regular = "\U000f025a"; + public const string number_circle_4_20_regular = "\U000f025b"; + public const string number_circle_4_24_regular = "\U000f025c"; + public const string number_circle_4_28_regular = "\U000f025d"; + public const string number_circle_4_32_regular = "\U000f025e"; + public const string number_circle_4_48_regular = "\U000f025f"; + public const string number_circle_5_16_regular = "\U000f0260"; + public const string number_circle_5_20_regular = "\U000f0261"; + public const string number_circle_5_24_regular = "\U000f0262"; + public const string number_circle_5_28_regular = "\U000f0263"; + public const string number_circle_5_32_regular = "\U000f0264"; + public const string number_circle_5_48_regular = "\U000f0265"; + public const string number_circle_6_16_regular = "\U000f0348"; + public const string number_circle_6_20_regular = "\U000f0349"; + public const string number_circle_6_24_regular = "\U000f034a"; + public const string number_circle_6_28_regular = "\U000f034b"; + public const string number_circle_6_32_regular = "\U000f034c"; + public const string number_circle_6_48_regular = "\U000f034d"; + public const string number_circle_7_16_regular = "\U000f034e"; + public const string number_circle_7_20_regular = "\U000f034f"; + public const string number_circle_7_24_regular = "\U000f0350"; + public const string number_circle_7_28_regular = "\U000f0351"; + public const string number_circle_7_32_regular = "\U000f0352"; + public const string number_circle_7_48_regular = "\U000f0353"; + public const string number_circle_8_16_regular = "\U000f0354"; + public const string number_circle_8_20_regular = "\U000f0355"; + public const string number_circle_8_24_regular = "\U000f0356"; + public const string number_circle_8_28_regular = "\U000f0357"; + public const string number_circle_8_32_regular = "\U000f0358"; + public const string number_circle_8_48_regular = "\U000f0359"; + public const string number_circle_9_16_regular = "\U000f035a"; + public const string number_circle_9_20_regular = "\U000f035b"; + public const string number_circle_9_24_regular = "\U000f035c"; + public const string number_circle_9_28_regular = "\U000f035d"; + public const string number_circle_9_32_regular = "\U000f035e"; + public const string number_circle_9_48_regular = "\U000f035f"; + public const string number_row_16_regular = "\uf579"; + public const string number_row_20_regular = "\uf57a"; + public const string number_row_24_regular = "\uf57b"; + public const string number_symbol_16_regular = "\uf57c"; + public const string number_symbol_20_regular = "\uf57d"; + public const string number_symbol_24_regular = "\uf57e"; + public const string number_symbol_28_regular = "\ue887"; + public const string number_symbol_32_regular = "\ue888"; + public const string number_symbol_48_regular = "\ue889"; + public const string number_symbol_dismiss_20_regular = "\ue88a"; + public const string number_symbol_dismiss_24_regular = "\ue88b"; + public const string number_symbol_square_20_regular = "\ue88c"; + public const string number_symbol_square_24_regular = "\ue88d"; + public const string open_12_regular = "\U000f02c5"; + public const string open_16_regular = "\uf581"; + public const string open_20_regular = "\uf582"; + public const string open_24_regular = "\uf583"; + public const string open_28_regular = "\ue88e"; + public const string open_32_regular = "\uf667"; + public const string open_48_regular = "\ue88f"; + public const string open_folder_16_regular = "\ue890"; + public const string open_folder_20_regular = "\ue891"; + public const string open_folder_24_regular = "\uf584"; + public const string open_folder_28_regular = "\ue892"; + public const string open_folder_48_regular = "\ue893"; + public const string open_off_16_regular = "\ue894"; + public const string open_off_20_regular = "\ue895"; + public const string open_off_24_regular = "\ue896"; + public const string open_off_28_regular = "\ue897"; + public const string open_off_48_regular = "\ue898"; + public const string options_16_regular = "\uf586"; + public const string options_20_regular = "\uf587"; + public const string options_24_regular = "\uf588"; + public const string options_28_regular = "\U000f0573"; + public const string options_32_regular = "\U000f0574"; + public const string options_48_regular = "\ue899"; + public const string organization_12_regular = "\ue89a"; + public const string organization_16_regular = "\ue89b"; + public const string organization_20_regular = "\uf589"; + public const string organization_24_regular = "\uf58a"; + public const string organization_28_regular = "\uf58b"; + public const string organization_32_regular = "\ue89c"; + public const string organization_48_regular = "\ue89d"; + public const string organization_horizontal_16_regular = "\U000f044c"; + public const string organization_horizontal_20_regular = "\ue89e"; + public const string organization_horizontal_24_regular = "\U000f044d"; + public const string orientation_20_regular = "\ue89f"; + public const string orientation_24_regular = "\ue8a0"; + public const string oval_16_regular = "\ue8a1"; + public const string oval_20_regular = "\ue8a2"; + public const string oval_24_regular = "\ue8a3"; + public const string oval_28_regular = "\ue8a4"; + public const string oval_32_regular = "\ue8a5"; + public const string oval_48_regular = "\ue8a6"; + public const string oven_20_regular = "\ueff1"; + public const string oven_24_regular = "\ueff2"; + public const string oven_32_regular = "\ueff3"; + public const string oven_48_regular = "\ueff4"; + public const string padding_down_20_regular = "\uf681"; + public const string padding_down_24_regular = "\uf682"; + public const string padding_left_20_regular = "\uf695"; + public const string padding_left_24_regular = "\uf69e"; + public const string padding_right_20_regular = "\uf69f"; + public const string padding_right_24_regular = "\uf6a0"; + public const string padding_top_20_regular = "\uf6b4"; + public const string padding_top_24_regular = "\uf6b9"; + public const string page_fit_16_regular = "\uf58e"; + public const string page_fit_20_regular = "\uf58f"; + public const string page_fit_24_regular = "\uf590"; + public const string paint_brush_16_regular = "\uf591"; + public const string paint_brush_20_regular = "\uf592"; + public const string paint_brush_24_regular = "\uf593"; + public const string paint_brush_28_regular = "\U000f0605"; + public const string paint_brush_32_regular = "\U000f0224"; + public const string paint_brush_arrow_down_20_regular = "\ue8a7"; + public const string paint_brush_arrow_down_24_regular = "\ue8a8"; + public const string paint_brush_arrow_up_20_regular = "\ue8a9"; + public const string paint_brush_arrow_up_24_regular = "\ue8aa"; + public const string paint_brush_sparkle_20_regular = "\U000f05da"; + public const string paint_brush_sparkle_24_regular = "\U000f05db"; + public const string paint_brush_subtract_16_regular = "\U000f0606"; + public const string paint_brush_subtract_20_regular = "\U000f0607"; + public const string paint_brush_subtract_24_regular = "\U000f0608"; + public const string paint_brush_subtract_28_regular = "\U000f0609"; + public const string paint_brush_subtract_32_regular = "\U000f060a"; + public const string paint_bucket_16_regular = "\uf594"; + public const string paint_bucket_20_regular = "\uf595"; + public const string paint_bucket_24_regular = "\uf596"; + public const string pair_20_regular = "\ue8ab"; + public const string pair_24_regular = "\uf597"; + public const string panel_bottom_20_regular = "\ue8ac"; + public const string panel_bottom_contract_20_regular = "\ue8ad"; + public const string panel_bottom_expand_20_regular = "\ue8ae"; + public const string panel_left_16_regular = "\ue8af"; + public const string panel_left_20_regular = "\ue8b0"; + public const string panel_left_24_regular = "\ue8b1"; + public const string panel_left_28_regular = "\ue8b2"; + public const string panel_left_32_regular = "\ueff6"; + public const string panel_left_48_regular = "\ue8b3"; + public const string panel_left_add_16_regular = "\ueff7"; + public const string panel_left_add_20_regular = "\ueff8"; + public const string panel_left_add_24_regular = "\ueff9"; + public const string panel_left_add_28_regular = "\ueffa"; + public const string panel_left_add_32_regular = "\ueffb"; + public const string panel_left_add_48_regular = "\ueffc"; + public const string panel_left_contract_16_regular = "\ue8b4"; + public const string panel_left_contract_20_regular = "\ue8b5"; + public const string panel_left_contract_24_regular = "\ue8b6"; + public const string panel_left_contract_28_regular = "\ue8b7"; + public const string panel_left_expand_16_regular = "\ue8b8"; + public const string panel_left_expand_20_regular = "\ue8b9"; + public const string panel_left_expand_24_regular = "\ue8ba"; + public const string panel_left_expand_28_regular = "\ue8bb"; + public const string panel_left_header_16_regular = "\U000f0073"; + public const string panel_left_header_20_regular = "\U000f0074"; + public const string panel_left_header_24_regular = "\U000f0075"; + public const string panel_left_header_28_regular = "\U000f0076"; + public const string panel_left_header_32_regular = "\U000f0077"; + public const string panel_left_header_48_regular = "\U000f0078"; + public const string panel_left_header_add_16_regular = "\U000f0079"; + public const string panel_left_header_add_20_regular = "\U000f007a"; + public const string panel_left_header_add_24_regular = "\U000f007b"; + public const string panel_left_header_add_28_regular = "\U000f007c"; + public const string panel_left_header_add_32_regular = "\U000f007d"; + public const string panel_left_header_add_48_regular = "\U000f007e"; + public const string panel_left_header_key_16_regular = "\U000f007f"; + public const string panel_left_header_key_20_regular = "\U000f0080"; + public const string panel_left_header_key_24_regular = "\U000f0081"; + public const string panel_left_key_16_regular = "\ueffd"; + public const string panel_left_key_20_regular = "\ueffe"; + public const string panel_left_key_24_regular = "\uefff"; + public const string panel_left_text_16_regular = "\U000f0199"; + public const string panel_left_text_20_regular = "\U000f019a"; + public const string panel_left_text_24_regular = "\U000f019b"; + public const string panel_left_text_28_regular = "\U000f019c"; + public const string panel_left_text_32_regular = "\U000f019d"; + public const string panel_left_text_48_regular = "\U000f019e"; + public const string panel_left_text_add_16_regular = "\U000f019f"; + public const string panel_left_text_add_20_regular = "\U000f01a0"; + public const string panel_left_text_add_24_regular = "\U000f01a1"; + public const string panel_left_text_add_28_regular = "\U000f01a2"; + public const string panel_left_text_add_32_regular = "\U000f01a3"; + public const string panel_left_text_add_48_regular = "\U000f01a4"; + public const string panel_left_text_dismiss_16_regular = "\U000f01a5"; + public const string panel_left_text_dismiss_20_regular = "\U000f01a6"; + public const string panel_left_text_dismiss_24_regular = "\U000f01a7"; + public const string panel_left_text_dismiss_28_regular = "\U000f01a8"; + public const string panel_left_text_dismiss_32_regular = "\U000f01a9"; + public const string panel_left_text_dismiss_48_regular = "\U000f01aa"; + public const string panel_right_16_regular = "\ue8bc"; + public const string panel_right_20_regular = "\ue8bd"; + public const string panel_right_24_regular = "\ue8be"; + public const string panel_right_28_regular = "\ue8bf"; + public const string panel_right_32_regular = "\uf000"; + public const string panel_right_48_regular = "\ue8c0"; + public const string panel_right_add_20_regular = "\ueeae"; + public const string panel_right_contract_16_regular = "\ue8c1"; + public const string panel_right_contract_20_regular = "\ue8c2"; + public const string panel_right_contract_24_regular = "\ue8c3"; + public const string panel_right_cursor_20_regular = "\uf03d"; + public const string panel_right_cursor_24_regular = "\uf03e"; + public const string panel_right_expand_20_regular = "\ue8c4"; + public const string panel_right_gallery_16_regular = "\U000f030d"; + public const string panel_right_gallery_20_regular = "\U000f030e"; + public const string panel_right_gallery_24_regular = "\U000f030f"; + public const string panel_right_gallery_28_regular = "\U000f0310"; + public const string panel_separate_window_20_regular = "\ue8c5"; + public const string panel_top_contract_20_regular = "\ue8c6"; + public const string panel_top_expand_20_regular = "\ue8c7"; + public const string panel_top_gallery_16_regular = "\U000f0311"; + public const string panel_top_gallery_20_regular = "\U000f0312"; + public const string panel_top_gallery_24_regular = "\U000f0313"; + public const string panel_top_gallery_28_regular = "\U000f0314"; + public const string password_16_regular = "\ue8c8"; + public const string password_20_regular = "\ue8c9"; + public const string password_24_regular = "\uf59e"; + public const string password_32_regular = "\U000f05ae"; + public const string password_48_regular = "\U000f05af"; + public const string password_clock_48_regular = "\U000f05b0"; + public const string password_reset_48_regular = "\U000f05b1"; + public const string patch_20_regular = "\uf6ba"; + public const string patch_24_regular = "\uf6bb"; + public const string patient_20_regular = "\ue8ca"; + public const string patient_24_regular = "\uf59f"; + public const string patient_32_regular = "\ue8cb"; + public const string pause_12_regular = "\ue8cc"; + public const string pause_16_regular = "\uf5a0"; + public const string pause_20_regular = "\uf5a1"; + public const string pause_24_regular = "\uf5a2"; + public const string pause_28_regular = "\ue8cd"; + public const string pause_32_regular = "\ue8ce"; + public const string pause_48_regular = "\uf5a3"; + public const string pause_circle_20_regular = "\uf6bc"; + public const string pause_circle_24_regular = "\ue8cf"; + public const string pause_circle_32_regular = "\U000f0225"; + public const string pause_circle_48_regular = "\U000f0226"; + public const string pause_off_16_regular = "\ue8d0"; + public const string pause_off_20_regular = "\ue8d1"; + public const string pause_settings_16_regular = "\ue8d2"; + public const string pause_settings_20_regular = "\ue8d3"; + public const string payment_16_regular = "\ue8d4"; + public const string payment_20_regular = "\uf5a4"; + public const string payment_24_regular = "\uf5a5"; + public const string payment_28_regular = "\ue8d5"; + public const string payment_32_regular = "\ueeda"; + public const string payment_48_regular = "\ueedb"; + public const string payment_wireless_16_regular = "\U000f0517"; + public const string payment_wireless_20_regular = "\U000f0518"; + public const string payment_wireless_24_regular = "\U000f0519"; + public const string payment_wireless_28_regular = "\U000f051a"; + public const string payment_wireless_32_regular = "\U000f051b"; + public const string payment_wireless_48_regular = "\U000f051c"; + public const string pen_16_regular = "\ue8d6"; + public const string pen_20_regular = "\ue8d7"; + public const string pen_24_regular = "\ue8d8"; + public const string pen_28_regular = "\ue8d9"; + public const string pen_32_regular = "\ue8da"; + public const string pen_48_regular = "\ue8db"; + public const string pen_dismiss_16_regular = "\U000f00eb"; + public const string pen_dismiss_20_regular = "\U000f00ec"; + public const string pen_dismiss_24_regular = "\U000f00ed"; + public const string pen_dismiss_28_regular = "\U000f00ee"; + public const string pen_dismiss_32_regular = "\U000f00ef"; + public const string pen_dismiss_48_regular = "\U000f00f0"; + public const string pen_off_16_regular = "\ue8dc"; + public const string pen_off_20_regular = "\ue8dd"; + public const string pen_off_24_regular = "\ue8de"; + public const string pen_off_28_regular = "\ue8df"; + public const string pen_off_32_regular = "\ue8e0"; + public const string pen_off_48_regular = "\ue8e1"; + public const string pen_prohibited_16_regular = "\ue8e2"; + public const string pen_prohibited_20_regular = "\ue8e3"; + public const string pen_prohibited_24_regular = "\ue8e4"; + public const string pen_prohibited_28_regular = "\ue8e5"; + public const string pen_prohibited_32_regular = "\ue8e6"; + public const string pen_prohibited_48_regular = "\ue8e7"; + public const string pen_sparkle_16_regular = "\U000f0227"; + public const string pen_sparkle_20_regular = "\U000f0228"; + public const string pen_sparkle_24_regular = "\U000f0229"; + public const string pen_sparkle_28_regular = "\U000f022a"; + public const string pen_sparkle_32_regular = "\U000f022b"; + public const string pen_sparkle_48_regular = "\U000f022c"; + public const string pentagon_20_regular = "\ue8e8"; + public const string pentagon_32_regular = "\ue8e9"; + public const string pentagon_48_regular = "\ue8ea"; + public const string people_12_regular = "\ue8eb"; + public const string people_16_regular = "\uf5a7"; + public const string people_20_regular = "\uf5a8"; + public const string people_24_regular = "\uf5a9"; + public const string people_28_regular = "\uf5aa"; + public const string people_32_regular = "\ue8ec"; + public const string people_48_regular = "\ue8ed"; + public const string people_add_16_regular = "\uf5ab"; + public const string people_add_20_regular = "\uf5ac"; + public const string people_add_24_regular = "\uf5ad"; + public const string people_add_28_regular = "\ue8ee"; + public const string people_add_32_regular = "\U000f0575"; + public const string people_audience_20_regular = "\ue8ef"; + public const string people_audience_24_regular = "\uf5ae"; + public const string people_audience_32_regular = "\U000f04f7"; + public const string people_call_16_regular = "\ue8f0"; + public const string people_call_20_regular = "\ue8f1"; + public const string people_call_24_regular = "\U000f0082"; + public const string people_chat_16_regular = "\U000f03bf"; + public const string people_chat_20_regular = "\U000f03c0"; + public const string people_chat_24_regular = "\U000f03c1"; + public const string people_checkmark_16_regular = "\ue8f2"; + public const string people_checkmark_20_regular = "\ue8f3"; + public const string people_checkmark_24_regular = "\ue8f4"; + public const string people_community_12_regular = "\U000f05dc"; + public const string people_community_16_regular = "\uf5af"; + public const string people_community_20_regular = "\uf5b0"; + public const string people_community_24_regular = "\uf5b1"; + public const string people_community_28_regular = "\uf5b2"; + public const string people_community_32_regular = "\U000f0083"; + public const string people_community_48_regular = "\U000f0084"; + public const string people_community_add_20_regular = "\ue8f5"; + public const string people_community_add_24_regular = "\uf5b3"; + public const string people_community_add_28_regular = "\ue8f6"; + public const string people_edit_16_regular = "\U000f01df"; + public const string people_edit_20_regular = "\ue8f7"; + public const string people_edit_24_regular = "\U000f01e0"; + public const string people_error_16_regular = "\ue8f8"; + public const string people_error_20_regular = "\ue8f9"; + public const string people_error_24_regular = "\ue8fa"; + public const string people_eye_16_regular = "\U000f05b2"; + public const string people_eye_20_regular = "\U000f05b3"; + public const string people_list_16_regular = "\ue8fb"; + public const string people_list_20_regular = "\ue8fc"; + public const string people_list_24_regular = "\ue8fd"; + public const string people_list_28_regular = "\ue8fe"; + public const string people_list_32_regular = "\U000f044e"; + public const string people_lock_20_regular = "\ue8ff"; + public const string people_lock_24_regular = "\ue900"; + public const string people_money_20_regular = "\ue901"; + public const string people_money_24_regular = "\ue902"; + public const string people_prohibited_16_regular = "\ue903"; + public const string people_prohibited_20_regular = "\uf5b4"; + public const string people_prohibited_24_regular = "\ue904"; + public const string people_queue_20_regular = "\ue905"; + public const string people_queue_24_regular = "\ue906"; + public const string people_search_20_regular = "\ue907"; + public const string person_search_24_regular = "\uef7e"; + public const string people_settings_20_regular = "\uf5b6"; + public const string people_settings_24_regular = "\ue908"; + public const string people_settings_28_regular = "\ue909"; + public const string people_star_16_regular = "\uf0f6"; + public const string people_star_20_regular = "\uf0f7"; + public const string people_star_24_regular = "\uf0f8"; + public const string people_star_28_regular = "\uf0f9"; + public const string people_star_32_regular = "\uf0fa"; + public const string people_star_48_regular = "\uf0fb"; + public const string people_subtract_20_regular = "\U000f058e"; + public const string people_subtract_24_regular = "\U000f058f"; + public const string people_subtract_32_regular = "\U000f0590"; + public const string people_swap_16_regular = "\ue90a"; + public const string people_swap_20_regular = "\ue90b"; + public const string people_swap_24_regular = "\ue90c"; + public const string people_swap_28_regular = "\ue90d"; + public const string people_sync_16_regular = "\uf6bd"; + public const string people_sync_20_regular = "\ue90e"; + public const string people_sync_28_regular = "\ue90f"; + public const string people_team_16_regular = "\uf5b7"; + public const string people_team_20_regular = "\uf5b8"; + public const string people_team_24_regular = "\uf5b9"; + public const string people_team_28_regular = "\uf5ba"; + public const string people_team_32_regular = "\ue910"; + public const string people_team_48_regular = "\U000f0131"; + public const string people_team_add_20_regular = "\ue911"; + public const string people_team_add_24_regular = "\ue912"; + public const string people_team_delete_16_regular = "\ue913"; + public const string people_team_delete_20_regular = "\ue914"; + public const string people_team_delete_24_regular = "\ue915"; + public const string people_team_delete_28_regular = "\ue916"; + public const string people_team_delete_32_regular = "\ue917"; + public const string people_team_toolbox_20_regular = "\ue918"; + public const string people_team_toolbox_24_regular = "\ue919"; + public const string people_toolbox_16_regular = "\uf6ca"; + public const string people_toolbox_20_regular = "\ue91a"; + public const string person_12_regular = "\uf5bb"; + public const string person_16_regular = "\uf5bc"; + public const string person_20_regular = "\uf5bd"; + public const string person_24_regular = "\uf5be"; + public const string person_28_regular = "\uf5bf"; + public const string person_32_regular = "\ue91b"; + public const string person_48_regular = "\uf5c0"; + public const string person_5_20_regular = "\ue91c"; + public const string person_5_32_regular = "\ue91d"; + public const string person_6_20_regular = "\ue91e"; + public const string person_6_32_regular = "\ue91f"; + public const string person_accounts_20_regular = "\ue920"; + public const string person_accounts_24_regular = "\uf5c1"; + public const string person_add_16_regular = "\ue921"; + public const string person_add_20_regular = "\uf5c2"; + public const string person_add_24_regular = "\uf5c3"; + public const string person_add_28_regular = "\ue922"; + public const string person_add_32_regular = "\U000f044f"; + public const string person_alert_16_regular = "\uef91"; + public const string person_alert_20_regular = "\uef92"; + public const string person_alert_24_regular = "\uef93"; + public const string person_alert_32_regular = "\U000f0576"; + public const string person_alert_off_16_regular = "\U000f0591"; + public const string person_alert_off_20_regular = "\U000f0592"; + public const string person_alert_off_24_regular = "\U000f0593"; + public const string person_alert_off_32_regular = "\U000f0594"; + public const string person_arrow_back_16_regular = "\uef94"; + public const string person_arrow_back_20_regular = "\uef95"; + public const string person_arrow_back_24_regular = "\uef96"; + public const string person_arrow_back_28_regular = "\uef97"; + public const string person_arrow_back_32_regular = "\uef98"; + public const string person_arrow_back_48_regular = "\uef99"; + public const string person_arrow_left_16_regular = "\ue923"; + public const string person_arrow_left_20_regular = "\uf5c4"; + public const string person_arrow_left_24_regular = "\uf5c5"; + public const string person_arrow_right_16_regular = "\uf5c6"; + public const string person_arrow_right_20_regular = "\uf5c7"; + public const string person_arrow_right_24_regular = "\uf5c8"; + public const string person_available_16_regular = "\uf5c9"; + public const string person_available_20_regular = "\ue924"; + public const string person_available_24_regular = "\uf5ca"; + public const string person_board_12_regular = "\U000f05dd"; + public const string person_board_16_regular = "\uf5cc"; + public const string person_board_20_regular = "\uf5cd"; + public const string person_board_24_regular = "\uf5ce"; + public const string person_board_28_regular = "\uf03f"; + public const string person_board_32_regular = "\uf040"; + public const string person_call_16_regular = "\ue925"; + public const string person_call_20_regular = "\ue926"; + public const string person_call_24_regular = "\uf5cf"; + public const string person_chat_16_regular = "\uf6cb"; + public const string person_chat_20_regular = "\uf6d1"; + public const string person_chat_24_regular = "\uf6d3"; + public const string person_circle_12_regular = "\ue927"; + public const string person_circle_20_regular = "\ue928"; + public const string person_circle_24_regular = "\ue929"; + public const string person_circle_28_regular = "\uf041"; + public const string person_circle_32_regular = "\uf042"; + public const string person_clock_16_regular = "\ue92a"; + public const string person_clock_20_regular = "\ue92b"; + public const string person_clock_24_regular = "\ue92c"; + public const string person_delete_16_regular = "\uf5d0"; + public const string person_delete_20_regular = "\ue92d"; + public const string person_delete_24_regular = "\uf5d1"; + public const string person_desktop_20_regular = "\U000f0132"; + public const string person_edit_20_regular = "\ue92e"; + public const string person_edit_24_regular = "\ue92f"; + public const string person_edit_48_regular = "\U000f027a"; + public const string person_feedback_16_regular = "\ue930"; + public const string person_feedback_20_regular = "\uf5d2"; + public const string person_feedback_24_regular = "\uf5d3"; + public const string person_feedback_28_regular = "\U000f0085"; + public const string person_feedback_32_regular = "\U000f0086"; + public const string person_feedback_48_regular = "\U000f0087"; + public const string person_heart_20_regular = "\uef0a"; + public const string person_heart_24_regular = "\ue931"; + public const string person_info_16_regular = "\uf6d6"; + public const string person_info_20_regular = "\ue932"; + public const string person_info_24_regular = "\U000f01f4"; + public const string person_key_20_regular = "\ue933"; + public const string person_lightbulb_20_regular = "\ue934"; + public const string person_lightbulb_24_regular = "\ue935"; + public const string person_lightning_16_regular = "\U000f01ab"; + public const string person_lightning_20_regular = "\U000f01ac"; + public const string person_link_16_regular = "\uef9a"; + public const string person_link_20_regular = "\uef9b"; + public const string person_link_24_regular = "\uef9c"; + public const string person_link_28_regular = "\uef9d"; + public const string person_link_32_regular = "\uef9e"; + public const string person_link_48_regular = "\uef9f"; + public const string person_lock_16_regular = "\uf6d8"; + public const string person_lock_20_regular = "\uf6d9"; + public const string person_lock_24_regular = "\ue936"; + public const string person_mail_16_regular = "\ue937"; + public const string person_mail_20_regular = "\ue938"; + public const string person_mail_24_regular = "\ue939"; + public const string person_mail_28_regular = "\ue93a"; + public const string person_mail_48_regular = "\ue93b"; + public const string person_money_20_regular = "\ue93c"; + public const string person_money_24_regular = "\ue93d"; + public const string person_note_16_regular = "\ueeaf"; + public const string person_note_20_regular = "\ue93e"; + public const string person_note_24_regular = "\ue93f"; + public const string person_passkey_16_regular = "\U000f053a"; + public const string person_passkey_20_regular = "\U000f053b"; + public const string person_passkey_24_regular = "\U000f053c"; + public const string person_passkey_28_regular = "\U000f053d"; + public const string person_passkey_32_regular = "\U000f053e"; + public const string person_passkey_48_regular = "\U000f053f"; + public const string person_phone_24_regular = "\U000f022d"; + public const string person_pill_20_regular = "\ue940"; + public const string person_pill_24_regular = "\ue941"; + public const string person_prohibited_16_regular = "\ue942"; + public const string person_prohibited_20_regular = "\uf5d4"; + public const string person_prohibited_24_regular = "\ue943"; + public const string person_prohibited_28_regular = "\ue944"; + public const string person_prohibited_32_regular = "\U000f0540"; + public const string person_question_mark_16_regular = "\uf5d5"; + public const string person_question_mark_20_regular = "\uf5d6"; + public const string person_question_mark_24_regular = "\uf5d7"; + public const string person_ribbon_16_regular = "\U000f0133"; + public const string person_ribbon_20_regular = "\U000f0134"; + public const string person_ribbon_24_regular = "\U000f0541"; + public const string person_running_20_regular = "\ueedc"; + public const string person_search_16_regular = "\uf0fc"; + public const string person_search_32_regular = "\uf0fd"; + public const string person_settings_16_regular = "\ue945"; + public const string person_settings_20_regular = "\ue946"; + public const string person_square_16_regular = "\U000f0450"; + public const string person_square_20_regular = "\uf043"; + public const string person_square_24_regular = "\uf044"; + public const string person_square_32_regular = "\U000f0451"; + public const string person_square_checkmark_16_regular = "\U000f0452"; + public const string person_square_checkmark_20_regular = "\U000f0453"; + public const string person_square_checkmark_24_regular = "\U000f0454"; + public const string person_square_checkmark_32_regular = "\U000f0455"; + public const string person_standing_16_regular = "\uf0fe"; + public const string person_star_16_regular = "\uef0b"; + public const string person_star_20_regular = "\uef0c"; + public const string person_star_24_regular = "\uef0d"; + public const string person_star_28_regular = "\uef0e"; + public const string person_star_32_regular = "\uef0f"; + public const string person_star_48_regular = "\uef10"; + public const string person_starburst_20_regular = "\uf045"; + public const string person_starburst_24_regular = "\uf046"; + public const string person_subtract_16_regular = "\uf6ed"; + public const string person_subtract_20_regular = "\ue947"; + public const string person_subtract_24_regular = "\U000f022e"; + public const string person_support_16_regular = "\uf5d8"; + public const string person_support_20_regular = "\uf5d9"; + public const string person_support_24_regular = "\uf5da"; + public const string person_support_28_regular = "\U000f03c2"; + public const string person_support_32_regular = "\U000f05f3"; + public const string person_swap_16_regular = "\uf5db"; + public const string person_swap_20_regular = "\uf5dc"; + public const string person_swap_24_regular = "\uf5dd"; + public const string person_sync_16_regular = "\ue948"; + public const string person_sync_20_regular = "\ue949"; + public const string person_sync_24_regular = "\ue94a"; + public const string person_sync_28_regular = "\ue94b"; + public const string person_sync_32_regular = "\ue94c"; + public const string person_sync_48_regular = "\ue94d"; + public const string person_tag_20_regular = "\ue94e"; + public const string person_tag_24_regular = "\ue94f"; + public const string person_tag_28_regular = "\ue950"; + public const string person_tag_32_regular = "\ue951"; + public const string person_tag_48_regular = "\ue952"; + public const string person_tentative_16_regular = "\U000f05de"; + public const string person_tentative_20_regular = "\U000f05df"; + public const string person_tentative_24_regular = "\U000f05e0"; + public const string person_voice_16_regular = "\U000f040a"; + public const string person_voice_20_regular = "\uf5de"; + public const string person_voice_24_regular = "\uf5df"; + public const string person_walking_16_regular = "\uf0ff"; + public const string person_walking_20_regular = "\uf087"; + public const string person_walking_24_regular = "\uf088"; + public const string person_warning_16_regular = "\U000f040b"; + public const string person_warning_20_regular = "\U000f040c"; + public const string person_warning_24_regular = "\U000f040d"; + public const string person_warning_28_regular = "\U000f040e"; + public const string person_warning_32_regular = "\U000f040f"; + public const string person_warning_48_regular = "\U000f0410"; + public const string person_wrench_20_regular = "\U000f0135"; + public const string phone_12_regular = "\ue953"; + public const string phone_16_regular = "\uf6ee"; + public const string phone_20_regular = "\uf5e0"; + public const string phone_24_regular = "\uf5e1"; + public const string phone_28_regular = "\uefa0"; + public const string phone_32_regular = "\uefa1"; + public const string phone_48_regular = "\uefa2"; + public const string phone_add_20_regular = "\ue954"; + public const string phone_add_24_regular = "\ue955"; + public const string phone_arrow_right_20_regular = "\ue956"; + public const string phone_arrow_right_24_regular = "\ue957"; + public const string phone_briefcase_24_regular = "\U000f022f"; + public const string phone_chat_16_regular = "\uefa3"; + public const string phone_chat_20_regular = "\uefa4"; + public const string phone_chat_24_regular = "\uefa5"; + public const string phone_chat_28_regular = "\uefa6"; + public const string phone_checkmark_16_regular = "\uf6ef"; + public const string phone_checkmark_20_regular = "\ue958"; + public const string phone_desktop_16_regular = "\uf5e4"; + public const string phone_desktop_20_regular = "\uf5e5"; + public const string phone_desktop_24_regular = "\uf5e6"; + public const string phone_desktop_28_regular = "\uf5e7"; + public const string phone_desktop_32_regular = "\U000f0088"; + public const string phone_desktop_48_regular = "\U000f0089"; + public const string phone_desktop_add_20_regular = "\ue959"; + public const string phone_dismiss_20_regular = "\ue95a"; + public const string phone_dismiss_24_regular = "\ue95b"; + public const string phone_edit_20_regular = "\U000f00f1"; + public const string phone_edit_24_regular = "\U000f00f2"; + public const string phone_eraser_16_regular = "\ue95c"; + public const string phone_eraser_20_regular = "\ue95d"; + public const string phone_footer_arrow_down_20_regular = "\U000f0456"; + public const string phone_footer_arrow_down_24_regular = "\U000f0457"; + public const string phone_header_arrow_up_20_regular = "\U000f0458"; + public const string phone_header_arrow_up_24_regular = "\U000f0459"; + public const string phone_key_20_regular = "\ue95e"; + public const string phone_key_24_regular = "\ue95f"; + public const string phone_laptop_16_regular = "\ue960"; + public const string phone_laptop_20_regular = "\uf5ea"; + public const string phone_laptop_24_regular = "\uf5eb"; + public const string phone_laptop_32_regular = "\ue961"; + public const string phone_link_setup_20_regular = "\ue962"; + public const string phone_link_setup_24_regular = "\uf5ec"; + public const string phone_lock_20_regular = "\ue963"; + public const string phone_lock_24_regular = "\ue964"; + public const string phone_multiple_24_regular = "\U000f0230"; + public const string phone_multiple_settings_24_regular = "\U000f0231"; + public const string phone_page_header_20_regular = "\ue965"; + public const string phone_page_header_24_regular = "\uf5ef"; + public const string phone_pagination_20_regular = "\ue966"; + public const string phone_pagination_24_regular = "\uf5f0"; + public const string phone_person_24_regular = "\U000f0232"; + public const string phone_screen_time_20_regular = "\ue967"; + public const string phone_screen_time_24_regular = "\uf5f1"; + public const string phone_shake_20_regular = "\ue968"; + public const string phone_shake_24_regular = "\uf5f2"; + public const string phone_span_in_16_regular = "\ue969"; + public const string phone_span_in_20_regular = "\ue96a"; + public const string phone_span_in_24_regular = "\ue96b"; + public const string phone_span_in_28_regular = "\ue96c"; + public const string phone_span_out_16_regular = "\ue96d"; + public const string phone_span_out_20_regular = "\ue96e"; + public const string phone_span_out_24_regular = "\ue96f"; + public const string phone_span_out_28_regular = "\ue970"; + public const string phone_speaker_20_regular = "\ue971"; + public const string phone_speaker_24_regular = "\ue972"; + public const string phone_status_bar_20_regular = "\ue973"; + public const string phone_status_bar_24_regular = "\uf5f3"; + public const string phone_subtract_24_regular = "\U000f0233"; + public const string phone_tablet_20_regular = "\uf5f4"; + public const string phone_tablet_24_regular = "\uf5f5"; + public const string phone_update_20_regular = "\ue974"; + public const string phone_update_24_regular = "\uf5f8"; + public const string phone_update_checkmark_20_regular = "\ue975"; + public const string phone_update_checkmark_24_regular = "\ue976"; + public const string phone_vertical_scroll_20_regular = "\ue977"; + public const string phone_vertical_scroll_24_regular = "\uf5f9"; + public const string phone_vibrate_20_regular = "\ue978"; + public const string phone_vibrate_24_regular = "\uf5fa"; + public const string photo_filter_20_regular = "\ue979"; + public const string photo_filter_24_regular = "\uf5fb"; + public const string pi_20_regular = "\ue97a"; + public const string pi_24_regular = "\ue97b"; + public const string picture_in_picture_16_regular = "\uf5fc"; + public const string picture_in_picture_20_regular = "\uf5fd"; + public const string picture_in_picture_24_regular = "\uf5fe"; + public const string picture_in_picture_enter_16_regular = "\ue97c"; + public const string picture_in_picture_enter_20_regular = "\ue97d"; + public const string picture_in_picture_enter_24_regular = "\ue97e"; + public const string picture_in_picture_exit_16_regular = "\ue97f"; + public const string picture_in_picture_exit_20_regular = "\ue980"; + public const string picture_in_picture_exit_24_regular = "\ue981"; + public const string pill_16_regular = "\uf6f0"; + public const string pill_20_regular = "\uf6f1"; + public const string pill_24_regular = "\uf6f2"; + public const string pill_28_regular = "\uf6f3"; + public const string pin_12_regular = "\uf5ff"; + public const string pin_16_regular = "\uf600"; + public const string pin_20_regular = "\uf601"; + public const string pin_24_regular = "\uf602"; + public const string pin_28_regular = "\ue982"; + public const string pin_32_regular = "\ue983"; + public const string pin_48_regular = "\ue984"; + public const string pin_globe_16_regular = "\U000f05b4"; + public const string pin_globe_20_regular = "\U000f05b5"; + public const string pin_off_16_regular = "\ue985"; + public const string pin_off_20_regular = "\uf603"; + public const string pin_off_24_regular = "\uf604"; + public const string pin_off_28_regular = "\ue986"; + public const string pin_off_32_regular = "\ue987"; + public const string pin_off_48_regular = "\ue988"; + public const string pipeline_20_regular = "\ue989"; + public const string pipeline_24_regular = "\ueedd"; + public const string pipeline_32_regular = "\ueede"; + public const string pipeline_add_20_regular = "\ue98a"; + public const string pipeline_add_32_regular = "\uef11"; + public const string pipeline_arrow_curve_down_20_regular = "\ue98b"; + public const string pipeline_play_20_regular = "\ue98c"; + public const string pivot_20_regular = "\ue98d"; + public const string pivot_24_regular = "\ue98e"; + public const string plant_cattail_20_regular = "\U000f0542"; + public const string plant_cattail_24_regular = "\U000f0543"; + public const string plant_grass_20_regular = "\U000f0136"; + public const string plant_grass_24_regular = "\U000f0137"; + public const string plant_grass_28_regular = "\U000f0138"; + public const string plant_ragweed_20_regular = "\U000f0139"; + public const string plant_ragweed_24_regular = "\U000f013a"; + public const string plant_ragweed_28_regular = "\U000f013b"; + public const string play_12_regular = "\ue98f"; + public const string play_16_regular = "\ue990"; + public const string play_20_regular = "\uf605"; + public const string play_24_regular = "\uf606"; + public const string play_28_regular = "\ue991"; + public const string play_32_regular = "\ue992"; + public const string play_48_regular = "\uf607"; + public const string play_circle_16_regular = "\ue993"; + public const string play_circle_20_regular = "\ue994"; + public const string play_circle_24_regular = "\uf608"; + public const string play_circle_28_regular = "\ue995"; + public const string play_circle_48_regular = "\ue996"; + public const string play_circle_hint_16_regular = "\U000f008a"; + public const string play_circle_hint_20_regular = "\U000f008b"; + public const string play_circle_hint_24_regular = "\U000f008c"; + public const string play_circle_sparkle_16_regular = "\U000f060b"; + public const string play_circle_sparkle_20_regular = "\U000f060c"; + public const string play_circle_sparkle_24_regular = "\U000f060d"; + public const string play_multiple_16_regular = "\uf100"; + public const string play_settings_20_regular = "\ue997"; + public const string playing_cards_20_regular = "\ue998"; + public const string plug_connected_16_regular = "\U000f0393"; + public const string plug_connected_20_regular = "\ue999"; + public const string plug_connected_24_regular = "\ue99a"; + public const string plug_connected_add_20_regular = "\ue99b"; + public const string plug_connected_checkmark_20_regular = "\ue99c"; + public const string plug_connected_settings_20_regular = "\U000f0234"; + public const string plug_connected_settings_24_regular = "\U000f0235"; + public const string plug_disconnected_16_regular = "\U000f0394"; + public const string plug_disconnected_20_regular = "\uf609"; + public const string plug_disconnected_24_regular = "\uf60a"; + public const string plug_disconnected_28_regular = "\uf60b"; + public const string plug_disconnected_48_regular = "\U000f027b"; + public const string point_scan_20_regular = "\ue99d"; + public const string point_scan_24_regular = "\uf60c"; + public const string poll_16_regular = "\ue99e"; + public const string poll_20_regular = "\ue99f"; + public const string poll_24_regular = "\uf60d"; + public const string poll_32_regular = "\U000f045a"; + public const string poll_horizontal_16_regular = "\U000f008d"; + public const string poll_horizontal_20_regular = "\U000f008e"; + public const string poll_horizontal_24_regular = "\U000f008f"; + public const string poll_off_16_regular = "\U000f04cc"; + public const string poll_off_20_regular = "\U000f04cd"; + public const string poll_off_24_regular = "\U000f04ce"; + public const string poll_off_32_regular = "\U000f04cf"; + public const string port_hdmi_20_regular = "\ue9a0"; + public const string port_hdmi_24_regular = "\ue9a1"; + public const string port_micro_usb_20_regular = "\ue9a2"; + public const string port_micro_usb_24_regular = "\ue9a3"; + public const string port_usb_a_20_regular = "\ue9a4"; + public const string port_usb_a_24_regular = "\ue9a5"; + public const string port_usb_c_20_regular = "\ue9a6"; + public const string port_usb_c_24_regular = "\ue9a7"; + public const string position_backward_20_regular = "\ue9a8"; + public const string position_backward_24_regular = "\ue9a9"; + public const string position_forward_20_regular = "\ue9aa"; + public const string position_forward_24_regular = "\ue9ab"; + public const string position_to_back_20_regular = "\ue9ac"; + public const string position_to_back_24_regular = "\ue9ad"; + public const string position_to_front_20_regular = "\ue9ae"; + public const string position_to_front_24_regular = "\ue9af"; + public const string power_20_regular = "\uf60e"; + public const string power_24_regular = "\uf60f"; + public const string power_28_regular = "\uf610"; + public const string predictions_20_regular = "\ue9b0"; + public const string predictions_24_regular = "\uf611"; + public const string premium_12_regular = "\uefa7"; + public const string premium_16_regular = "\uf612"; + public const string premium_20_regular = "\uf613"; + public const string premium_24_regular = "\uf614"; + public const string premium_28_regular = "\uf615"; + public const string premium_32_regular = "\ue9b1"; + public const string premium_person_16_regular = "\ue9b2"; + public const string premium_person_20_regular = "\ue9b3"; + public const string premium_person_24_regular = "\ue9b4"; + public const string presence_available_10_regular = "\ue9b5"; + public const string presence_available_12_regular = "\ue9b6"; + public const string presence_available_16_regular = "\ue9b7"; + public const string presence_available_20_regular = "\ue9b8"; + public const string presence_available_24_regular = "\ue9b9"; + public const string presence_away_10_regular = "\U000f0090"; + public const string presence_away_12_regular = "\U000f0091"; + public const string presence_away_16_regular = "\U000f0092"; + public const string presence_away_20_regular = "\U000f0093"; + public const string presence_away_24_regular = "\U000f0094"; + public const string presence_blocked_10_regular = "\uf616"; + public const string presence_blocked_12_regular = "\uf617"; + public const string presence_blocked_16_regular = "\uf618"; + public const string presence_blocked_20_regular = "\ue9ba"; + public const string presence_blocked_24_regular = "\ue9bb"; + public const string presence_dnd_10_regular = "\ue9bc"; + public const string presence_dnd_12_regular = "\ue9bd"; + public const string presence_dnd_16_regular = "\ue9be"; + public const string presence_dnd_20_regular = "\ue9bf"; + public const string presence_dnd_24_regular = "\ue9c0"; + public const string presence_offline_10_regular = "\uf619"; + public const string presence_offline_12_regular = "\uf61a"; + public const string presence_offline_16_regular = "\uf61b"; + public const string presence_offline_20_regular = "\ue9c1"; + public const string presence_offline_24_regular = "\ue9c2"; + public const string presence_oof_10_regular = "\uf61c"; + public const string presence_oof_12_regular = "\uf61d"; + public const string presence_oof_16_regular = "\uf61e"; + public const string presence_oof_20_regular = "\ue9c3"; + public const string presence_oof_24_regular = "\ue9c4"; + public const string presence_unknown_10_regular = "\uf61f"; + public const string presence_unknown_12_regular = "\uf620"; + public const string presence_unknown_20_regular = "\ue9c5"; + public const string presence_unknown_24_regular = "\ue9c6"; + public const string presenter_20_regular = "\ue9c7"; + public const string presenter_24_regular = "\uf622"; + public const string presenter_off_20_regular = "\ue9c8"; + public const string presenter_off_24_regular = "\uf623"; + public const string preview_link_16_regular = "\uf624"; + public const string preview_link_20_regular = "\uf625"; + public const string preview_link_24_regular = "\uf626"; + public const string previous_16_regular = "\uf627"; + public const string previous_20_regular = "\uf628"; + public const string previous_24_regular = "\uf629"; + public const string previous_28_regular = "\ue9c9"; + public const string previous_32_regular = "\ue9ca"; + public const string previous_48_regular = "\ue9cb"; + public const string previous_frame_20_regular = "\U000f02de"; + public const string previous_frame_24_regular = "\U000f02df"; + public const string print_16_regular = "\uf6fa"; + public const string print_20_regular = "\uf62a"; + public const string print_24_regular = "\uf62b"; + public const string print_28_regular = "\ue9cc"; + public const string print_32_regular = "\ue9cd"; + public const string print_48_regular = "\uf62c"; + public const string print_add_20_regular = "\uf6fc"; + public const string print_add_24_regular = "\ue9ce"; + public const string production_20_regular = "\uf6fd"; + public const string production_24_regular = "\uf6fe"; + public const string production_checkmark_20_regular = "\uf703"; + public const string production_checkmark_24_regular = "\uf704"; + public const string prohibited_12_regular = "\ue9cf"; + public const string prohibited_16_regular = "\uf705"; + public const string prohibited_20_regular = "\uf62d"; + public const string prohibited_24_regular = "\uf62e"; + public const string prohibited_28_regular = "\uf62f"; + public const string prohibited_32_regular = "\U000f01f5"; + public const string prohibited_48_regular = "\uf630"; + public const string prohibited_multiple_16_regular = "\ue9d0"; + public const string prohibited_multiple_20_regular = "\ue9d1"; + public const string prohibited_multiple_24_regular = "\ue9d2"; + public const string prohibited_multiple_28_regular = "\U000f01f6"; + public const string prohibited_note_20_regular = "\ue9d3"; + public const string projection_screen_16_regular = "\ue9d4"; + public const string projection_screen_20_regular = "\ue9d5"; + public const string projection_screen_24_regular = "\ue9d6"; + public const string projection_screen_28_regular = "\ue9d7"; + public const string projection_screen_dismiss_16_regular = "\ue9d8"; + public const string projection_screen_dismiss_20_regular = "\ue9d9"; + public const string projection_screen_dismiss_24_regular = "\ue9da"; + public const string projection_screen_dismiss_28_regular = "\ue9db"; + public const string projection_screen_text_20_regular = "\U000f0395"; + public const string projection_screen_text_24_regular = "\U000f0095"; + public const string prompt_16_regular = "\U000f062f"; + public const string prompt_20_regular = "\U000f0630"; + public const string prompt_24_regular = "\U000f0631"; + public const string prompt_28_regular = "\U000f0632"; + public const string prompt_32_regular = "\U000f0633"; + public const string prompt_48_regular = "\U000f0634"; + public const string protocol_handler_16_regular = "\uf632"; + public const string protocol_handler_20_regular = "\uf633"; + public const string protocol_handler_24_regular = "\uf634"; + public const string pulse_20_regular = "\ue9dc"; + public const string pulse_24_regular = "\ue9dd"; + public const string pulse_28_regular = "\ue9de"; + public const string pulse_32_regular = "\ue9df"; + public const string pulse_square_20_regular = "\ue9e0"; + public const string pulse_square_24_regular = "\ue9e1"; + public const string puzzle_cube_16_regular = "\ue9e2"; + public const string puzzle_cube_20_regular = "\ue9e3"; + public const string puzzle_cube_24_regular = "\ue9e4"; + public const string puzzle_cube_28_regular = "\ue9e5"; + public const string puzzle_cube_48_regular = "\ue9e6"; + public const string puzzle_cube_piece_20_regular = "\ue9e7"; + public const string puzzle_piece_16_regular = "\ue9e8"; + public const string puzzle_piece_20_regular = "\ue9e9"; + public const string puzzle_piece_24_regular = "\ue9ea"; + public const string puzzle_piece_shield_20_regular = "\ue9eb"; + public const string qr_code_20_regular = "\ue9ec"; + public const string qr_code_24_regular = "\uf635"; + public const string qr_code_28_regular = "\uf636"; + public const string question_16_regular = "\uf637"; + public const string question_20_regular = "\uf638"; + public const string question_24_regular = "\uf639"; + public const string question_28_regular = "\uf63a"; + public const string question_32_regular = "\U000f045b"; + public const string question_48_regular = "\uf63b"; + public const string question_circle_12_regular = "\ue9ed"; + public const string question_circle_16_regular = "\uf63c"; + public const string question_circle_20_regular = "\uf63d"; + public const string question_circle_24_regular = "\uf63e"; + public const string question_circle_28_regular = "\uf63f"; + public const string question_circle_32_regular = "\ue9ee"; + public const string question_circle_48_regular = "\uf640"; + public const string quiz_new_20_regular = "\ue9ef"; + public const string quiz_new_24_regular = "\uf641"; + public const string quiz_new_28_regular = "\uf642"; + public const string quiz_new_48_regular = "\uf643"; + public const string radar_20_regular = "\ue9f0"; + public const string radar_checkmark_20_regular = "\ue9f1"; + public const string radar_rectangle_multiple_20_regular = "\ue9f2"; + public const string radio_button_16_regular = "\uf153"; + public const string radio_button_24_regular = "\uf645"; + public const string radio_button_off_16_regular = "\uf155"; + public const string ram_16_regular = "\uf1d1"; + public const string ram_20_regular = "\ue9f3"; + public const string rating_mature_16_regular = "\uf646"; + public const string rating_mature_20_regular = "\uf647"; + public const string rating_mature_24_regular = "\uf648"; + public const string ratio_one_to_one_20_regular = "\uf70a"; + public const string ratio_one_to_one_24_regular = "\uf70b"; + public const string re_order_16_regular = "\uf649"; + public const string reorder_20_regular = "\uea11"; + public const string re_order_24_regular = "\uf64a"; + public const string re_order_dots_horizontal_16_regular = "\ue9f4"; + public const string re_order_dots_horizontal_20_regular = "\ue9f5"; + public const string re_order_dots_horizontal_24_regular = "\ue9f6"; + public const string re_order_dots_vertical_16_regular = "\ue9f7"; + public const string re_order_dots_vertical_20_regular = "\ue9f8"; + public const string re_order_dots_vertical_24_regular = "\ue9f9"; + public const string read_aloud_16_regular = "\ue9fa"; + public const string read_aloud_20_regular = "\uf64d"; + public const string read_aloud_24_regular = "\uf64e"; + public const string read_aloud_28_regular = "\ue9fb"; + public const string reading_list_16_regular = "\uf651"; + public const string reading_list_20_regular = "\uf652"; + public const string reading_list_24_regular = "\uf653"; + public const string reading_list_28_regular = "\uf654"; + public const string reading_list_add_16_regular = "\uf655"; + public const string reading_list_add_20_regular = "\uf656"; + public const string reading_list_add_24_regular = "\uf657"; + public const string reading_list_add_28_regular = "\uf658"; + public const string reading_mode_mobile_20_regular = "\uf65b"; + public const string reading_mode_mobile_24_regular = "\uf65c"; + public const string real_estate_20_regular = "\ue9fc"; + public const string real_estate_24_regular = "\ue9fd"; + public const string receipt_16_regular = "\uf089"; + public const string receipt_20_regular = "\ue9fe"; + public const string receipt_24_regular = "\ue9ff"; + public const string receipt_28_regular = "\uf08a"; + public const string receipt_32_regular = "\U000f0096"; + public const string receipt_add_20_regular = "\uf70c"; + public const string receipt_add_24_regular = "\uea00"; + public const string receipt_bag_20_regular = "\uf715"; + public const string receipt_bag_24_regular = "\uea01"; + public const string receipt_cube_20_regular = "\uf72d"; + public const string receipt_cube_24_regular = "\uea02"; + public const string receipt_money_16_regular = "\U000f0097"; + public const string receipt_money_20_regular = "\uf72e"; + public const string receipt_money_24_regular = "\uea03"; + public const string receipt_play_20_regular = "\uea04"; + public const string receipt_play_24_regular = "\uea05"; + public const string receipt_search_20_regular = "\uea06"; + public const string receipt_sparkles_16_regular = "\uf08b"; + public const string receipt_sparkles_20_regular = "\uf047"; + public const string receipt_sparkles_24_regular = "\uf048"; + public const string record_12_regular = "\uf72f"; + public const string record_16_regular = "\uf660"; + public const string record_20_regular = "\uf661"; + public const string record_24_regular = "\uf662"; + public const string record_28_regular = "\uf735"; + public const string record_32_regular = "\uf736"; + public const string record_48_regular = "\uf737"; + public const string record_stop_12_regular = "\uf758"; + public const string record_stop_16_regular = "\uf759"; + public const string record_stop_20_regular = "\uf75a"; + public const string record_stop_24_regular = "\uf75b"; + public const string record_stop_28_regular = "\uf75c"; + public const string record_stop_32_regular = "\uf764"; + public const string record_stop_48_regular = "\uf765"; + public const string rectangle_landscape_12_regular = "\uea07"; + public const string rectangle_landscape_16_regular = "\uea08"; + public const string rectangle_landscape_20_regular = "\uea09"; + public const string rectangle_landscape_24_regular = "\uea0a"; + public const string rectangle_landscape_28_regular = "\uea0b"; + public const string rectangle_landscape_32_regular = "\uea0c"; + public const string rectangle_landscape_48_regular = "\uea0d"; + public const string rectangle_landscape_hint_copy_16_regular = "\U000f0236"; + public const string rectangle_landscape_hint_copy_20_regular = "\U000f0237"; + public const string rectangle_landscape_hint_copy_24_regular = "\U000f0238"; + public const string rectangle_landscape_sparkle_16_regular = "\U000f0315"; + public const string rectangle_landscape_sparkle_20_regular = "\U000f0316"; + public const string rectangle_landscape_sparkle_24_regular = "\U000f0317"; + public const string rectangle_landscape_sparkle_28_regular = "\U000f0318"; + public const string rectangle_landscape_sparkle_32_regular = "\U000f0319"; + public const string rectangle_landscape_sparkle_48_regular = "\U000f04d0"; + public const string rectangle_landscape_sync_16_regular = "\U000f04d1"; + public const string rectangle_landscape_sync_20_regular = "\U000f04d2"; + public const string rectangle_landscape_sync_24_regular = "\U000f04d3"; + public const string rectangle_landscape_sync_28_regular = "\U000f04d4"; + public const string rectangle_landscape_sync_off_16_regular = "\U000f04d5"; + public const string rectangle_landscape_sync_off_20_regular = "\U000f04d6"; + public const string rectangle_landscape_sync_off_24_regular = "\U000f04d7"; + public const string rectangle_landscape_sync_off_28_regular = "\U000f04d8"; + public const string rectangle_portrait_location_target_20_regular = "\uea0e"; + public const string recycle_20_regular = "\uef12"; + public const string recycle_32_regular = "\uef13"; + public const string remix_add_16_regular = "\U000f02c6"; + public const string remix_add_20_regular = "\U000f02c7"; + public const string remix_add_24_regular = "\U000f02c8"; + public const string remix_add_32_regular = "\U000f02c9"; + public const string remote_16_regular = "\uea0f"; + public const string remote_20_regular = "\uea10"; + public const string rename_16_regular = "\uf668"; + public const string rename_20_regular = "\uf669"; + public const string rename_24_regular = "\uf66a"; + public const string rename_28_regular = "\uf66b"; + public const string replay_16_regular = "\U000f060e"; + public const string replay_20_regular = "\uea12"; + public const string replay_24_regular = "\U000f060f"; + public const string replay_28_regular = "\U000f0610"; + public const string replay_32_regular = "\U000f0611"; + public const string resize_16_regular = "\U000f04b4"; + public const string resize_20_regular = "\uf66c"; + public const string resize_24_regular = "\uea13"; + public const string resize_28_regular = "\U000f04b5"; + public const string resize_32_regular = "\U000f04b6"; + public const string resize_48_regular = "\U000f04b7"; + public const string resize_image_20_regular = "\uea14"; + public const string resize_image_24_regular = "\uf66d"; + public const string resize_large_16_regular = "\uea15"; + public const string resize_large_20_regular = "\uea16"; + public const string resize_large_24_regular = "\uea17"; + public const string resize_small_16_regular = "\uea18"; + public const string resize_small_20_regular = "\uea19"; + public const string resize_small_24_regular = "\uea1a"; + public const string resize_table_20_regular = "\uea1b"; + public const string resize_table_24_regular = "\uf66e"; + public const string resize_video_20_regular = "\uea1c"; + public const string resize_video_24_regular = "\uf66f"; + public const string reward_12_regular = "\uef14"; + public const string reward_16_regular = "\uf671"; + public const string reward_20_regular = "\uf672"; + public const string reward_24_regular = "\uf673"; + public const string rewind_16_regular = "\uea1d"; + public const string rewind_20_regular = "\uf674"; + public const string rewind_24_regular = "\uf675"; + public const string rewind_28_regular = "\uea1e"; + public const string rhombus_16_regular = "\uea1f"; + public const string rhombus_20_regular = "\uea20"; + public const string rhombus_24_regular = "\uea21"; + public const string rhombus_28_regular = "\uea22"; + public const string rhombus_32_regular = "\uea23"; + public const string rhombus_48_regular = "\uea24"; + public const string ribbon_12_regular = "\uea25"; + public const string ribbon_16_regular = "\uea26"; + public const string ribbon_20_regular = "\uea27"; + public const string ribbon_24_regular = "\uea28"; + public const string ribbon_32_regular = "\uea29"; + public const string ribbon_add_20_regular = "\uf766"; + public const string ribbon_add_24_regular = "\uf767"; + public const string ribbon_off_12_regular = "\uea2a"; + public const string ribbon_off_16_regular = "\uea2b"; + public const string ribbon_off_20_regular = "\uea2c"; + public const string ribbon_off_24_regular = "\uea2d"; + public const string ribbon_off_32_regular = "\uea2e"; + public const string ribbon_star_20_regular = "\uea2f"; + public const string ribbon_star_24_regular = "\uea30"; + public const string road_20_regular = "\U000f0577"; + public const string road_24_regular = "\U000f0578"; + public const string road_cone_16_regular = "\uea31"; + public const string road_cone_20_regular = "\uea32"; + public const string road_cone_24_regular = "\uea33"; + public const string road_cone_28_regular = "\uea34"; + public const string road_cone_32_regular = "\uea35"; + public const string road_cone_48_regular = "\uea36"; + public const string rocket_16_regular = "\uf676"; + public const string rocket_20_regular = "\uf677"; + public const string rocket_24_regular = "\uf678"; + public const string rotate_left_20_regular = "\uea37"; + public const string rotate_left_24_regular = "\uea38"; + public const string rotate_right_20_regular = "\uea39"; + public const string rotate_right_24_regular = "\uea3a"; + public const string router_20_regular = "\uea3b"; + public const string router_24_regular = "\uf679"; + public const string row_triple_20_regular = "\uea3c"; + public const string row_triple_24_regular = "\uf67a"; + public const string rss_16_regular = "\U000f0396"; + public const string rss_20_regular = "\uea3d"; + public const string rss_24_regular = "\uea3e"; + public const string ruler_16_regular = "\uf67b"; + public const string ruler_20_regular = "\uf67c"; + public const string ruler_24_regular = "\uf67d"; + public const string ruler_28_regular = "\uf049"; + public const string ruler_32_regular = "\uf04a"; + public const string ruler_48_regular = "\uf04b"; + public const string run_16_regular = "\uea3f"; + public const string run_20_regular = "\uea40"; + public const string run_24_regular = "\uf67e"; + public const string run_28_regular = "\U000f05b6"; + public const string run_32_regular = "\U000f05b7"; + public const string run_48_regular = "\U000f05b8"; + public const string sanitize_20_regular = "\uea41"; + public const string sanitize_24_regular = "\uea42"; + public const string save_16_regular = "\uea43"; + public const string save_20_regular = "\uf67f"; + public const string save_24_regular = "\uf680"; + public const string save_28_regular = "\uea44"; + public const string save_32_regular = "\U000f0579"; + public const string save_arrow_right_20_regular = "\uea45"; + public const string save_arrow_right_24_regular = "\uea46"; + public const string save_copy_20_regular = "\uea47"; + public const string save_copy_24_regular = "\uf683"; + public const string save_edit_20_regular = "\uea48"; + public const string save_edit_24_regular = "\uea49"; + public const string save_image_20_regular = "\uea4a"; + public const string save_multiple_16_regular = "\uf1d2"; + public const string save_multiple_20_regular = "\uea4b"; + public const string save_multiple_24_regular = "\uea4c"; + public const string save_search_20_regular = "\uea4d"; + public const string save_sync_20_regular = "\uea4e"; + public const string savings_16_regular = "\uf684"; + public const string savings_20_regular = "\uf685"; + public const string savings_24_regular = "\uf686"; + public const string scale_fill_20_regular = "\uea4f"; + public const string scale_fill_24_regular = "\uf687"; + public const string scale_fit_16_regular = "\uf688"; + public const string scale_fit_20_regular = "\uf689"; + public const string scale_fit_24_regular = "\uf68a"; + public const string scales_20_regular = "\uea50"; + public const string scales_24_regular = "\uea51"; + public const string scales_32_regular = "\uea52"; + public const string scan_16_regular = "\uea53"; + public const string scan_20_regular = "\uea54"; + public const string scan_24_regular = "\uf68b"; + public const string scan_camera_16_regular = "\uea55"; + public const string scan_camera_20_regular = "\uea56"; + public const string scan_camera_24_regular = "\uea57"; + public const string scan_camera_28_regular = "\uea58"; + public const string scan_camera_48_regular = "\uea59"; + public const string scan_dash_12_regular = "\uea5a"; + public const string scan_dash_16_regular = "\uea5b"; + public const string scan_dash_20_regular = "\uea5c"; + public const string scan_dash_24_regular = "\uea5d"; + public const string scan_dash_28_regular = "\uea5e"; + public const string scan_dash_32_regular = "\uea5f"; + public const string scan_dash_48_regular = "\uea60"; + public const string scan_object_20_regular = "\uea61"; + public const string scan_object_24_regular = "\uea62"; + public const string scan_person_16_regular = "\U000f031a"; + public const string scan_person_20_regular = "\U000f031b"; + public const string scan_person_24_regular = "\U000f031c"; + public const string scan_person_28_regular = "\U000f031d"; + public const string scan_person_48_regular = "\U000f031e"; + public const string scan_qr_code_24_regular = "\uf04c"; + public const string scan_table_20_regular = "\uea63"; + public const string scan_table_24_regular = "\uea64"; + public const string scan_text_16_regular = "\uf08c"; + public const string scan_text_20_regular = "\uea65"; + public const string scan_text_24_regular = "\uea66"; + public const string scan_text_28_regular = "\uf08d"; + public const string scan_thumb_up_16_regular = "\uea67"; + public const string scan_thumb_up_20_regular = "\uea68"; + public const string scan_thumb_up_24_regular = "\uea69"; + public const string scan_thumb_up_28_regular = "\uea6a"; + public const string scan_thumb_up_48_regular = "\uea6b"; + public const string scan_thumb_up_off_16_regular = "\uea6c"; + public const string scan_thumb_up_off_20_regular = "\uea6d"; + public const string scan_thumb_up_off_24_regular = "\uea6e"; + public const string scan_thumb_up_off_28_regular = "\uea6f"; + public const string scan_thumb_up_off_48_regular = "\uea70"; + public const string scan_type_20_regular = "\uea71"; + public const string scan_type_24_regular = "\uea72"; + public const string scan_type_checkmark_20_regular = "\uea73"; + public const string scan_type_checkmark_24_regular = "\uea74"; + public const string scan_type_off_20_regular = "\uea75"; + public const string scan_type_off_24_regular = "\U000f0411"; + public const string scratchpad_20_regular = "\uea76"; + public const string scratchpad_24_regular = "\uf68c"; + public const string screen_cut_20_regular = "\uea77"; + public const string screen_person_20_regular = "\uea78"; + public const string screen_search_20_regular = "\uea79"; + public const string screen_search_24_regular = "\uea7a"; + public const string screenshot_16_regular = "\U000f0412"; + public const string screenshot_20_regular = "\uf68d"; + public const string screenshot_24_regular = "\uf68e"; + public const string screenshot_28_regular = "\U000f045c"; + public const string screenshot_record_16_regular = "\U000f0413"; + public const string screenshot_record_20_regular = "\U000f0414"; + public const string screenshot_record_24_regular = "\U000f0415"; + public const string screenshot_record_28_regular = "\U000f045d"; + public const string script_16_regular = "\uf1db"; + public const string script_20_regular = "\U000f0239"; + public const string script_24_regular = "\U000f023a"; + public const string script_32_regular = "\U000f023b"; + public const string search_12_regular = "\uea7b"; + public const string search_16_regular = "\uea7c"; + public const string search_20_regular = "\uf68f"; + public const string search_24_regular = "\uf690"; + public const string search_28_regular = "\uf691"; + public const string search_32_regular = "\uea7d"; + public const string search_48_regular = "\uea7e"; + public const string search_info_20_regular = "\uf692"; + public const string search_info_24_regular = "\uf693"; + public const string search_settings_20_regular = "\uea7f"; + public const string search_shield_20_regular = "\uea80"; + public const string search_sparkle_16_regular = "\U000f0635"; + public const string search_sparkle_20_regular = "\U000f0636"; + public const string search_sparkle_24_regular = "\U000f0637"; + public const string search_sparkle_28_regular = "\U000f0638"; + public const string search_sparkle_32_regular = "\U000f0639"; + public const string search_sparkle_48_regular = "\U000f063a"; + public const string search_square_16_regular = "\U000f05cc"; + public const string search_square_20_regular = "\uea81"; + public const string search_square_24_regular = "\uf694"; + public const string search_visual_16_regular = "\uea82"; + public const string search_visual_20_regular = "\uea83"; + public const string search_visual_24_regular = "\uea84"; + public const string seat_16_regular = "\U000f04d9"; + public const string seat_20_regular = "\U000f04da"; + public const string seat_24_regular = "\U000f04db"; + public const string seat_add_16_regular = "\U000f04dc"; + public const string seat_add_20_regular = "\U000f04dd"; + public const string seat_add_24_regular = "\U000f04de"; + public const string select_all_off_16_regular = "\U000f04b8"; + public const string select_all_off_20_regular = "\uea85"; + public const string select_all_off_24_regular = "\uf696"; + public const string select_all_on_16_regular = "\U000f04b9"; + public const string select_all_on_20_regular = "\uea86"; + public const string select_all_on_24_regular = "\uea87"; + public const string select_object_20_regular = "\uf697"; + public const string select_object_24_regular = "\uf698"; + public const string select_object_skew_20_regular = "\uea88"; + public const string select_object_skew_24_regular = "\uea89"; + public const string select_object_skew_dismiss_20_regular = "\uea8a"; + public const string select_object_skew_dismiss_24_regular = "\uea8b"; + public const string select_object_skew_edit_20_regular = "\uea8c"; + public const string select_object_skew_edit_24_regular = "\uea8d"; + public const string send_16_regular = "\uea8e"; + public const string send_20_regular = "\uf699"; + public const string send_24_regular = "\uf69a"; + public const string send_28_regular = "\uf69b"; + public const string send_32_regular = "\U000f0098"; + public const string send_48_regular = "\U000f0099"; + public const string send_beaker_16_regular = "\U000f00f3"; + public const string send_beaker_20_regular = "\U000f00f4"; + public const string send_beaker_24_regular = "\U000f00f5"; + public const string send_beaker_28_regular = "\U000f00f6"; + public const string send_beaker_32_regular = "\U000f00f7"; + public const string send_beaker_48_regular = "\U000f00f8"; + public const string send_clock_20_regular = "\uf69c"; + public const string send_clock_24_regular = "\uea8f"; + public const string send_copy_20_regular = "\uea90"; + public const string send_copy_24_regular = "\uf69d"; + public const string send_person_16_regular = "\U000f0612"; + public const string send_person_20_regular = "\U000f0613"; + public const string send_person_24_regular = "\U000f0614"; + public const string serial_port_16_regular = "\uf6a1"; + public const string serial_port_20_regular = "\uf6a2"; + public const string serial_port_24_regular = "\uf6a3"; + public const string server_12_regular = "\U000f0360"; + public const string server_16_regular = "\uf1dc"; + public const string server_20_regular = "\uf769"; + public const string server_24_regular = "\uf76c"; + public const string server_link_16_regular = "\U000f032b"; + public const string server_link_20_regular = "\U000f032c"; + public const string server_link_24_regular = "\U000f023c"; + public const string server_multiple_20_regular = "\uea91"; + public const string server_play_20_regular = "\uea92"; + public const string server_surface_16_regular = "\uf1dd"; + public const string server_surface_multiple_16_regular = "\uf206"; + public const string service_bell_16_regular = "\U000f009a"; + public const string service_bell_20_regular = "\uea93"; + public const string service_bell_24_regular = "\uf6a4"; + public const string settings_16_regular = "\uf6a8"; + public const string settings_20_regular = "\uf6a9"; + public const string settings_24_regular = "\uf6aa"; + public const string settings_28_regular = "\uf6ab"; + public const string settings_32_regular = "\uea94"; + public const string settings_48_regular = "\uea95"; + public const string settings_chat_16_regular = "\U000f05cd"; + public const string settings_chat_20_regular = "\uea96"; + public const string settings_chat_24_regular = "\uea97"; + public const string settings_cog_multiple_20_regular = "\U000f013c"; + public const string settings_cog_multiple_24_regular = "\U000f013d"; + public const string shape_exclude_16_regular = "\uea98"; + public const string shape_exclude_20_regular = "\uea99"; + public const string shape_exclude_24_regular = "\uea9a"; + public const string shape_intersect_16_regular = "\uea9b"; + public const string shape_intersect_20_regular = "\uea9c"; + public const string shape_intersect_24_regular = "\uea9d"; + public const string shape_organic_16_regular = "\U000f0397"; + public const string shape_organic_20_regular = "\U000f0398"; + public const string shape_organic_24_regular = "\U000f0399"; + public const string shape_organic_28_regular = "\U000f039a"; + public const string shape_organic_32_regular = "\U000f039b"; + public const string shape_organic_48_regular = "\U000f039c"; + public const string shape_subtract_16_regular = "\uea9e"; + public const string shape_subtract_20_regular = "\uea9f"; + public const string shape_subtract_24_regular = "\ueaa0"; + public const string shape_union_16_regular = "\ueaa1"; + public const string shape_union_20_regular = "\ueaa2"; + public const string shape_union_24_regular = "\ueaa3"; + public const string shapes_16_regular = "\uf6ac"; + public const string shapes_20_regular = "\uf6ad"; + public const string shapes_24_regular = "\uf6ae"; + public const string shapes_28_regular = "\ueaa4"; + public const string shapes_32_regular = "\U000f03c3"; + public const string shapes_48_regular = "\ueaa5"; + public const string share_16_regular = "\ueaa6"; + public const string share_20_regular = "\uf6af"; + public const string share_24_regular = "\uf6b0"; + public const string share_28_regular = "\ueaa7"; + public const string share_48_regular = "\ueaa8"; + public const string share_android_16_regular = "\U000f04ba"; + public const string share_android_20_regular = "\uf6b1"; + public const string share_android_24_regular = "\uf6b2"; + public const string share_android_32_regular = "\U000f04bb"; + public const string share_close_tray_20_regular = "\ueaa9"; + public const string share_close_tray_24_regular = "\uf6b3"; + public const string share_ios_20_regular = "\uf6b5"; + public const string share_ios_24_regular = "\uf6b6"; + public const string share_ios_28_regular = "\uf6b7"; + public const string share_ios_48_regular = "\uf6b8"; + public const string share_multiple_16_regular = "\U000f05ce"; + public const string share_multiple_20_regular = "\U000f05cf"; + public const string share_multiple_24_regular = "\U000f05d0"; + public const string share_screen_person_16_regular = "\ueaaa"; + public const string share_screen_person_24_regular = "\ueaac"; + public const string share_screen_person_28_regular = "\ueaad"; + public const string share_screen_person_overlay_16_regular = "\ueaae"; + public const string share_screen_person_overlay_20_regular = "\ueaaf"; + public const string share_screen_person_overlay_24_regular = "\ueab0"; + public const string share_screen_person_overlay_28_regular = "\ueab1"; + public const string share_screen_person_overlay_inside_16_regular = "\ueab2"; + public const string share_screen_person_overlay_inside_20_regular = "\ueab3"; + public const string share_screen_person_overlay_inside_24_regular = "\ueab4"; + public const string share_screen_person_overlay_inside_28_regular = "\ueab5"; + public const string share_screen_person_p_16_regular = "\ueab6"; + public const string share_screen_person_p_20_regular = "\ueab7"; + public const string share_screen_person_p_24_regular = "\ueab8"; + public const string share_screen_person_p_28_regular = "\ueab9"; + public const string share_screen_start_20_regular = "\ueaba"; + public const string share_screen_start_24_regular = "\ueabb"; + public const string share_screen_start_28_regular = "\ueabc"; + public const string share_screen_start_48_regular = "\ueabd"; + public const string share_screen_stop_16_regular = "\ueabe"; + public const string share_screen_stop_20_regular = "\ueabf"; + public const string share_screen_stop_24_regular = "\ueac0"; + public const string share_screen_stop_28_regular = "\ueac1"; + public const string share_screen_stop_48_regular = "\ueac2"; + public const string shield_12_regular = "\uf21f"; + public const string shield_16_regular = "\ueac3"; + public const string shield_20_regular = "\uf6be"; + public const string shield_24_regular = "\uf6bf"; + public const string shield_28_regular = "\ueac4"; + public const string shield_32_regular = "\uef20"; + public const string shield_48_regular = "\ueac5"; + public const string shield_add_16_regular = "\uefa8"; + public const string shield_add_20_regular = "\uefa9"; + public const string shield_add_24_regular = "\uefaa"; + public const string shield_badge_20_regular = "\uf76d"; + public const string shield_badge_24_regular = "\ueac6"; + public const string shield_checkmark_16_regular = "\ueac7"; + public const string shield_checkmark_20_regular = "\ueac8"; + public const string shield_checkmark_24_regular = "\ueac9"; + public const string shield_checkmark_28_regular = "\ueaca"; + public const string shield_checkmark_48_regular = "\ueacb"; + public const string shield_dismiss_16_regular = "\ueacc"; + public const string shield_dismiss_20_regular = "\uf6c0"; + public const string shield_dismiss_24_regular = "\uf6c1"; + public const string shield_dismiss_shield_20_regular = "\ueacd"; + public const string shield_error_16_regular = "\ueace"; + public const string shield_error_20_regular = "\uf6c2"; + public const string shield_error_24_regular = "\uf6c3"; + public const string shield_globe_16_regular = "\ueeb0"; + public const string shield_globe_20_regular = "\ueeb1"; + public const string shield_globe_24_regular = "\ueeb2"; + public const string shield_keyhole_16_regular = "\uf6c4"; + public const string shield_keyhole_20_regular = "\uf6c5"; + public const string shield_keyhole_24_regular = "\uf6c6"; + public const string shield_lock_16_regular = "\ueacf"; + public const string shield_lock_20_regular = "\uead0"; + public const string shield_lock_24_regular = "\uead1"; + public const string shield_lock_28_regular = "\uead2"; + public const string shield_lock_48_regular = "\uead3"; + public const string shield_person_20_regular = "\uead4"; + public const string shield_person_add_20_regular = "\uead5"; + public const string shield_prohibited_20_regular = "\uf6c7"; + public const string shield_prohibited_24_regular = "\uf6c8"; + public const string shield_question_16_regular = "\uef21"; + public const string shield_question_20_regular = "\uef22"; + public const string shield_question_24_regular = "\uef23"; + public const string shield_question_32_regular = "\uef24"; + public const string shield_task_16_regular = "\uead6"; + public const string shield_task_20_regular = "\uead7"; + public const string shield_task_24_regular = "\uead8"; + public const string shield_task_28_regular = "\uead9"; + public const string shield_task_48_regular = "\ueada"; + public const string shifts_16_regular = "\ueadb"; + public const string shifts_20_regular = "\ueadc"; + public const string shifts_24_regular = "\uf6c9"; + public const string shifts_28_regular = "\uf6cc"; + public const string shifts_30_minutes_20_regular = "\ueadd"; + public const string shifts_30_minutes_24_regular = "\uf6cd"; + public const string shifts_32_regular = "\ueade"; + public const string shifts_activity_16_regular = "\U000f009b"; + public const string shifts_activity_20_regular = "\uf6ce"; + public const string shifts_activity_24_regular = "\uf6cf"; + public const string shifts_add_20_regular = "\ueadf"; + public const string shifts_add_24_regular = "\uf6d0"; + public const string shifts_availability_20_regular = "\ueae0"; + public const string shifts_availability_24_regular = "\uf6d2"; + public const string shifts_checkmark_20_regular = "\ueae1"; + public const string shifts_checkmark_24_regular = "\ueae2"; + public const string shifts_day_20_regular = "\ueae3"; + public const string shifts_day_24_regular = "\ueae4"; + public const string shifts_open_20_regular = "\uf6d4"; + public const string shifts_open_24_regular = "\uf6d5"; + public const string shifts_prohibited_20_regular = "\ueae5"; + public const string shifts_prohibited_24_regular = "\ueae6"; + public const string shifts_question_mark_20_regular = "\ueae7"; + public const string shifts_question_mark_24_regular = "\ueae8"; + public const string shifts_team_20_regular = "\ueae9"; + public const string shifts_team_24_regular = "\uf6d7"; + public const string shopping_bag_16_regular = "\uf76e"; + public const string shopping_bag_20_regular = "\uf76f"; + public const string shopping_bag_24_regular = "\uf770"; + public const string shopping_bag_add_16_regular = "\U000f0595"; + public const string shopping_bag_add_20_regular = "\U000f04f8"; + public const string shopping_bag_add_24_regular = "\U000f04f9"; + public const string shopping_bag_arrow_left_20_regular = "\ueaea"; + public const string shopping_bag_arrow_left_24_regular = "\ueaeb"; + public const string shopping_bag_dismiss_20_regular = "\ueaec"; + public const string shopping_bag_dismiss_24_regular = "\ueaed"; + public const string shopping_bag_pause_20_regular = "\ueaee"; + public const string shopping_bag_pause_24_regular = "\ueaef"; + public const string shopping_bag_percent_20_regular = "\ueaf0"; + public const string shopping_bag_percent_24_regular = "\ueaf1"; + public const string shopping_bag_play_20_regular = "\ueaf2"; + public const string shopping_bag_play_24_regular = "\ueaf3"; + public const string shopping_bag_tag_20_regular = "\ueaf4"; + public const string shopping_bag_tag_24_regular = "\ueaf5"; + public const string shortpick_20_regular = "\ueaf6"; + public const string shortpick_24_regular = "\ueaf7"; + public const string showerhead_20_regular = "\uf04d"; + public const string showerhead_24_regular = "\uf04e"; + public const string showerhead_32_regular = "\uf04f"; + public const string sidebar_search_ltr_20_regular = "\ueaf8"; + public const string sidebar_search_rtl_20_regular = "\ueaf9"; + public const string sign_out_20_regular = "\ueafa"; + public const string sign_out_24_regular = "\uf6da"; + public const string signature_16_regular = "\uf6db"; + public const string signature_20_regular = "\uf6dc"; + public const string signature_24_regular = "\uf6dd"; + public const string signature_28_regular = "\uf6de"; + public const string signature_32_regular = "\U000f023d"; + public const string sim_16_regular = "\uf6e2"; + public const string sim_20_regular = "\uf6e3"; + public const string sim_24_regular = "\uf6e4"; + public const string skip_back_10_20_regular = "\ueafb"; + public const string skip_back_10_24_regular = "\ueafc"; + public const string skip_back_10_28_regular = "\ueafd"; + public const string skip_back_10_32_regular = "\ueafe"; + public const string skip_back_10_48_regular = "\ueaff"; + public const string skip_forward_10_20_regular = "\ueb00"; + public const string skip_forward_10_24_regular = "\ueb01"; + public const string skip_forward_10_28_regular = "\ueb02"; + public const string skip_forward_10_32_regular = "\ueb03"; + public const string skip_forward_10_48_regular = "\ueb04"; + public const string skip_forward_30_20_regular = "\ueb05"; + public const string skip_forward_30_24_regular = "\ueb06"; + public const string skip_forward_30_28_regular = "\ueb07"; + public const string skip_forward_30_32_regular = "\ueb08"; + public const string skip_forward_30_48_regular = "\ueb09"; + public const string skip_forward_tab_20_regular = "\ueb0a"; + public const string skip_forward_tab_24_regular = "\ueb0b"; + public const string slash_forward_12_regular = "\U000f009c"; + public const string slash_forward_16_regular = "\U000f009d"; + public const string slash_forward_20_regular = "\U000f009e"; + public const string slash_forward_24_regular = "\U000f009f"; + public const string sleep_20_regular = "\ueb0c"; + public const string sleep_24_regular = "\uf6e5"; + public const string slide_add_16_regular = "\ueb0d"; + public const string slide_add_20_regular = "\ueb0e"; + public const string slide_add_24_regular = "\uf6e6"; + public const string slide_add_28_regular = "\ueb0f"; + public const string slide_add_32_regular = "\ueb10"; + public const string slide_add_48_regular = "\ueb11"; + public const string slide_arrow_right_20_regular = "\ueb12"; + public const string slide_arrow_right_24_regular = "\ueb13"; + public const string slide_content_24_regular = "\U000f013e"; + public const string slide_eraser_16_regular = "\ueb14"; + public const string slide_eraser_20_regular = "\ueb15"; + public const string slide_eraser_24_regular = "\ueb16"; + public const string slide_grid_20_regular = "\ueb17"; + public const string slide_grid_24_regular = "\ueb18"; + public const string slide_hide_20_regular = "\ueb19"; + public const string slide_hide_24_regular = "\uf6e8"; + public const string slide_layout_20_regular = "\uf6e9"; + public const string slide_layout_24_regular = "\uf6ea"; + public const string slide_link_20_regular = "\uef15"; + public const string slide_link_24_regular = "\uef16"; + public const string slide_microphone_20_regular = "\ueb1a"; + public const string slide_microphone_24_regular = "\uf6eb"; + public const string slide_microphone_32_regular = "\ueb1b"; + public const string slide_multiple_20_regular = "\ueb1c"; + public const string slide_multiple_24_regular = "\ueb1d"; + public const string slide_multiple_arrow_right_20_regular = "\ueb1e"; + public const string slide_multiple_arrow_right_24_regular = "\ueb1f"; + public const string slide_multiple_search_20_regular = "\uf773"; + public const string slide_multiple_search_24_regular = "\uf774"; + public const string slide_play_20_regular = "\U000f05d1"; + public const string slide_play_24_regular = "\U000f05d2"; + public const string slide_record_16_regular = "\U000f013f"; + public const string slide_record_20_regular = "\U000f0140"; + public const string slide_record_24_regular = "\U000f0141"; + public const string slide_record_28_regular = "\U000f0142"; + public const string slide_record_48_regular = "\U000f0143"; + public const string slide_search_16_regular = "\U000f0416"; + public const string slide_search_20_regular = "\ueb20"; + public const string slide_search_24_regular = "\ueb21"; + public const string slide_search_28_regular = "\ueb22"; + public const string slide_search_32_regular = "\U000f0417"; + public const string slide_settings_20_regular = "\ueb23"; + public const string slide_settings_24_regular = "\ueb24"; + public const string slide_size_20_regular = "\ueb25"; + public const string slide_size_24_regular = "\ueb26"; + public const string slide_text_16_regular = "\ueb27"; + public const string slide_text_20_regular = "\ueb28"; + public const string slide_text_24_regular = "\uf6ec"; + public const string slide_text_28_regular = "\ueb29"; + public const string slide_text_48_regular = "\ueb2a"; + public const string slide_text_call_16_regular = "\U000f063b"; + public const string slide_text_call_20_regular = "\U000f063c"; + public const string slide_text_call_24_regular = "\U000f063d"; + public const string slide_text_call_28_regular = "\U000f063e"; + public const string slide_text_call_48_regular = "\U000f063f"; + public const string slide_text_cursor_20_regular = "\U000f0640"; + public const string slide_text_cursor_24_regular = "\U000f0641"; + public const string slide_text_edit_16_regular = "\U000f03c4"; + public const string slide_text_edit_20_regular = "\U000f03c5"; + public const string slide_text_edit_24_regular = "\U000f03c6"; + public const string slide_text_edit_28_regular = "\U000f03c7"; + public const string slide_text_multiple_16_regular = "\uf050"; + public const string slide_text_multiple_20_regular = "\uf051"; + public const string slide_text_multiple_24_regular = "\uf052"; + public const string slide_text_multiple_32_regular = "\uf053"; + public const string slide_text_person_16_regular = "\uf22f"; + public const string slide_text_person_20_regular = "\uf25b"; + public const string slide_text_person_24_regular = "\uf25c"; + public const string slide_text_person_28_regular = "\uf25d"; + public const string slide_text_person_32_regular = "\uf25e"; + public const string slide_text_person_48_regular = "\uf2d9"; + public const string slide_text_sparkle_16_regular = "\U000f00f9"; + public const string slide_text_sparkle_20_regular = "\U000f00fa"; + public const string slide_text_sparkle_24_regular = "\U000f00fb"; + public const string slide_text_sparkle_28_regular = "\U000f00fc"; + public const string slide_text_sparkle_32_regular = "\U000f00fd"; + public const string slide_text_sparkle_48_regular = "\U000f00fe"; + public const string slide_transition_20_regular = "\ueb2b"; + public const string slide_transition_24_regular = "\ueb2c"; + public const string smartwatch_20_regular = "\uf775"; + public const string smartwatch_24_regular = "\uf776"; + public const string smartwatch_dot_20_regular = "\uf786"; + public const string smartwatch_dot_24_regular = "\uf787"; + public const string snooze_16_regular = "\uf6f4"; + public const string snooze_20_regular = "\ueb2d"; + public const string snooze_24_regular = "\uf6f5"; + public const string sound_source_20_regular = "\ueb2e"; + public const string sound_source_24_regular = "\uf6f6"; + public const string sound_source_28_regular = "\uf6f7"; + public const string sound_wave_circle_20_regular = "\ueb2f"; + public const string sound_wave_circle_24_regular = "\ueb30"; + public const string space_3d_16_regular = "\U000f00a0"; + public const string space_3d_20_regular = "\U000f00a1"; + public const string space_3d_24_regular = "\U000f00a2"; + public const string space_3d_28_regular = "\U000f00a3"; + public const string space_3d_32_regular = "\U000f00a4"; + public const string space_3d_48_regular = "\U000f00a5"; + public const string spacebar_20_regular = "\ueb31"; + public const string spacebar_24_regular = "\uf6f8"; + public const string sparkle_16_regular = "\ueb32"; + public const string sparkle_20_regular = "\ueb33"; + public const string sparkle_24_regular = "\ueb34"; + public const string sparkle_28_regular = "\ueb35"; + public const string sparkle_32_regular = "\U000f00a6"; + public const string sparkle_48_regular = "\ueb36"; + public const string sparkle_circle_16_regular = "\U000f00a7"; + public const string sparkle_circle_20_regular = "\uefab"; + public const string sparkle_circle_24_regular = "\uefac"; + public const string sparkle_circle_28_regular = "\U000f00a8"; + public const string sparkle_circle_32_regular = "\U000f00a9"; + public const string sparkle_circle_48_regular = "\U000f00aa"; + public const string spatula_spoon_16_regular = "\U000f0596"; + public const string spatula_spoon_20_regular = "\U000f0597"; + public const string spatula_spoon_24_regular = "\U000f0598"; + public const string spatula_spoon_28_regular = "\U000f0599"; + public const string spatula_spoon_32_regular = "\U000f059a"; + public const string spatula_spoon_48_regular = "\U000f059b"; + public const string speaker_0_16_regular = "\ueb37"; + public const string speaker_0_20_regular = "\ueb38"; + public const string speaker_0_24_regular = "\uf6f9"; + public const string speaker_0_28_regular = "\ueb39"; + public const string speaker_0_32_regular = "\ueb3a"; + public const string speaker_0_48_regular = "\ueb3b"; + public const string speaker_1_16_regular = "\ueb3c"; + public const string speaker_1_20_regular = "\ueb3d"; + public const string speaker_1_24_regular = "\uf6fb"; + public const string speaker_1_28_regular = "\ueb3e"; + public const string speaker_1_32_regular = "\ueb3f"; + public const string speaker_1_48_regular = "\ueb40"; + public const string speaker_2_16_regular = "\ueb41"; + public const string speaker_2_20_regular = "\ueb42"; + public const string speaker_2_24_regular = "\ueb43"; + public const string speaker_2_28_regular = "\ueb44"; + public const string speaker_2_32_regular = "\ueb45"; + public const string speaker_2_48_regular = "\ueb46"; + public const string speaker_bluetooth_20_regular = "\ueb47"; + public const string speaker_bluetooth_24_regular = "\uf6ff"; + public const string speaker_bluetooth_28_regular = "\ueb48"; + public const string speaker_box_16_regular = "\U000f04df"; + public const string speaker_box_20_regular = "\U000f04e0"; + public const string speaker_box_24_regular = "\U000f04e1"; + public const string speaker_edit_16_regular = "\uf700"; + public const string speaker_edit_20_regular = "\uf701"; + public const string speaker_edit_24_regular = "\uf702"; + public const string speaker_mute_16_regular = "\ueb49"; + public const string speaker_mute_20_regular = "\ueb4a"; + public const string speaker_mute_24_regular = "\ueb4b"; + public const string speaker_mute_28_regular = "\ueb4c"; + public const string speaker_mute_32_regular = "\U000f023e"; + public const string speaker_mute_48_regular = "\ueb4d"; + public const string speaker_off_16_regular = "\ueb4e"; + public const string speaker_off_20_regular = "\ueb4f"; + public const string speaker_off_24_regular = "\uf706"; + public const string speaker_off_28_regular = "\uf707"; + public const string speaker_off_48_regular = "\ueb50"; + public const string speaker_settings_20_regular = "\ueb51"; + public const string speaker_settings_24_regular = "\uf708"; + public const string speaker_settings_28_regular = "\ueb52"; + public const string speaker_usb_20_regular = "\ueb53"; + public const string speaker_usb_24_regular = "\ueb54"; + public const string speaker_usb_28_regular = "\ueb55"; + public const string spinner_ios_16_regular = "\U000f01f7"; + public const string spinner_ios_20_regular = "\uf709"; + public const string split_hint_20_regular = "\ueb56"; + public const string split_horizontal_12_regular = "\ueb57"; + public const string split_horizontal_16_regular = "\ueb58"; + public const string split_horizontal_20_regular = "\ueb59"; + public const string split_horizontal_24_regular = "\ueb5a"; + public const string split_horizontal_28_regular = "\ueb5b"; + public const string split_horizontal_32_regular = "\ueb5c"; + public const string split_horizontal_48_regular = "\ueb5d"; + public const string split_vertical_12_regular = "\ueb5e"; + public const string split_vertical_16_regular = "\ueb5f"; + public const string split_vertical_20_regular = "\ueb60"; + public const string split_vertical_24_regular = "\ueb61"; + public const string split_vertical_28_regular = "\ueb62"; + public const string split_vertical_32_regular = "\ueb63"; + public const string split_vertical_48_regular = "\ueb64"; + public const string sport_16_regular = "\ueb65"; + public const string sport_20_regular = "\ueb66"; + public const string sport_24_regular = "\ueb67"; + public const string sport_american_football_20_regular = "\ueb68"; + public const string sport_american_football_24_regular = "\ueb69"; + public const string sport_baseball_20_regular = "\ueb6a"; + public const string sport_baseball_24_regular = "\ueb6b"; + public const string sport_basketball_20_regular = "\ueb6c"; + public const string sport_basketball_24_regular = "\ueb6d"; + public const string sport_hockey_20_regular = "\ueb6e"; + public const string sport_hockey_24_regular = "\ueb6f"; + public const string sport_soccer_16_regular = "\ueb70"; + public const string sport_soccer_20_regular = "\ueb71"; + public const string sport_soccer_24_regular = "\ueb72"; + public const string spray_can_16_regular = "\uf2da"; + public const string square_28_regular = "\ueb77"; + public const string square_32_regular = "\ueb78"; + public const string square_48_regular = "\ueb79"; + public const string square_add_16_regular = "\ueb7a"; + public const string square_add_20_regular = "\ueb7b"; + public const string square_arrow_forward_16_regular = "\ueb7c"; + public const string square_arrow_forward_20_regular = "\ueb7d"; + public const string square_arrow_forward_24_regular = "\ueb7e"; + public const string square_arrow_forward_28_regular = "\ueb7f"; + public const string square_arrow_forward_32_regular = "\ueb80"; + public const string square_arrow_forward_48_regular = "\ueb81"; + public const string square_dismiss_16_regular = "\ueb82"; + public const string square_dismiss_20_regular = "\ueb83"; + public const string square_dovetail_joint_12_regular = "\U000f0615"; + public const string square_dovetail_joint_16_regular = "\U000f0616"; + public const string square_dovetail_joint_20_regular = "\U000f0617"; + public const string square_dovetail_joint_24_regular = "\U000f0618"; + public const string square_dovetail_joint_28_regular = "\U000f0619"; + public const string square_dovetail_joint_32_regular = "\U000f061a"; + public const string square_dovetail_joint_48_regular = "\U000f061b"; + public const string square_eraser_20_regular = "\ueb84"; + public const string square_hint_16_regular = "\ueb85"; + public const string square_hint_20_regular = "\ueb86"; + public const string square_hint_24_regular = "\ueb87"; + public const string square_hint_28_regular = "\ueb88"; + public const string square_hint_32_regular = "\ueb89"; + public const string square_hint_48_regular = "\ueb8a"; + public const string square_hint_apps_20_regular = "\ueb8b"; + public const string square_hint_apps_24_regular = "\ueb8c"; + public const string square_hint_arrow_back_16_regular = "\ueb8d"; + public const string square_hint_arrow_back_20_regular = "\ueb8e"; + public const string square_hint_hexagon_12_regular = "\U000f0361"; + public const string square_hint_hexagon_16_regular = "\U000f0362"; + public const string square_hint_hexagon_20_regular = "\U000f0363"; + public const string square_hint_hexagon_24_regular = "\U000f0364"; + public const string square_hint_hexagon_28_regular = "\U000f0365"; + public const string square_hint_hexagon_32_regular = "\U000f0366"; + public const string square_hint_hexagon_48_regular = "\U000f0367"; + public const string square_hint_sparkles_16_regular = "\ueb8f"; + public const string square_hint_sparkles_20_regular = "\ueb90"; + public const string square_hint_sparkles_24_regular = "\ueb91"; + public const string square_hint_sparkles_28_regular = "\ueb92"; + public const string square_hint_sparkles_32_regular = "\ueb93"; + public const string square_hint_sparkles_48_regular = "\ueb94"; + public const string square_multiple_16_regular = "\ueb95"; + public const string square_multiple_20_regular = "\ueb96"; + public const string square_multiple_24_regular = "\uf78c"; + public const string square_multiple_28_regular = "\ueeb3"; + public const string square_multiple_32_regular = "\ueeb4"; + public const string square_multiple_48_regular = "\ueeb5"; + public const string square_shadow_12_regular = "\ueb97"; + public const string square_shadow_20_regular = "\ueb98"; + public const string squares_nested_20_regular = "\ueb99"; + public const string stack_16_regular = "\uf78d"; + public const string stack_20_regular = "\uf792"; + public const string stack_24_regular = "\uf7a6"; + public const string stack_32_regular = "\ueedf"; + public const string stack_add_20_regular = "\U000f0144"; + public const string stack_add_24_regular = "\U000f0145"; + public const string stack_arrow_forward_20_regular = "\ueb9a"; + public const string stack_arrow_forward_24_regular = "\ueb9b"; + public const string stack_star_16_regular = "\ueb9c"; + public const string stack_star_20_regular = "\ueb9d"; + public const string stack_star_24_regular = "\ueb9e"; + public const string stack_vertical_20_regular = "\U000f00ff"; + public const string stack_vertical_24_regular = "\U000f0100"; + public const string star_12_regular = "\uf70d"; + public const string star_16_regular = "\uf70e"; + public const string star_20_regular = "\uf70f"; + public const string star_24_regular = "\uf710"; + public const string star_28_regular = "\uf711"; + public const string star_32_regular = "\U000f045e"; + public const string star_48_regular = "\ueb9f"; + public const string star_add_16_regular = "\uf712"; + public const string star_add_20_regular = "\uf713"; + public const string star_add_24_regular = "\uf714"; + public const string star_add_28_regular = "\ueba0"; + public const string star_arrow_back_16_regular = "\U000f00ab"; + public const string star_arrow_back_20_regular = "\U000f00ac"; + public const string star_arrow_back_24_regular = "\U000f00ad"; + public const string star_arrow_right_end_20_regular = "\ueba1"; + public const string star_arrow_right_end_24_regular = "\ueba2"; + public const string star_arrow_right_start_20_regular = "\ueba3"; + public const string star_arrow_right_start_24_regular = "\uf716"; + public const string star_checkmark_16_regular = "\U000f0146"; + public const string star_checkmark_20_regular = "\U000f0147"; + public const string star_checkmark_24_regular = "\U000f0148"; + public const string star_checkmark_28_regular = "\U000f0149"; + public const string star_dismiss_16_regular = "\ueba4"; + public const string star_dismiss_20_regular = "\ueba5"; + public const string star_dismiss_24_regular = "\ueba6"; + public const string star_dismiss_28_regular = "\ueba7"; + public const string star_edit_20_regular = "\ueba8"; + public const string star_edit_24_regular = "\ueba9"; + public const string star_emphasis_16_regular = "\U000f01f8"; + public const string star_emphasis_20_regular = "\uebaa"; + public const string star_emphasis_24_regular = "\uf717"; + public const string star_emphasis_32_regular = "\uebab"; + public const string star_half_12_regular = "\uebac"; + public const string star_half_16_regular = "\uebad"; + public const string star_half_20_regular = "\uebae"; + public const string star_half_24_regular = "\uebaf"; + public const string star_half_28_regular = "\uebb0"; + public const string star_line_horizontal_3_16_regular = "\uebb1"; + public const string star_line_horizontal_3_20_regular = "\uebb2"; + public const string star_line_horizontal_3_24_regular = "\uebb3"; + public const string star_off_12_regular = "\uf718"; + public const string star_off_16_regular = "\uf719"; + public const string star_off_20_regular = "\uf71a"; + public const string star_off_24_regular = "\uf71b"; + public const string star_off_28_regular = "\uf71c"; + public const string star_one_quarter_12_regular = "\uebb4"; + public const string star_one_quarter_16_regular = "\uebb5"; + public const string star_one_quarter_20_regular = "\uebb6"; + public const string star_one_quarter_24_regular = "\uebb7"; + public const string star_one_quarter_28_regular = "\uebb8"; + public const string star_prohibited_16_regular = "\uf71d"; + public const string star_prohibited_20_regular = "\uf71e"; + public const string star_prohibited_24_regular = "\uf71f"; + public const string star_settings_20_regular = "\uebb9"; + public const string star_settings_24_regular = "\uf720"; + public const string star_three_quarter_12_regular = "\uebba"; + public const string star_three_quarter_16_regular = "\uebbb"; + public const string star_three_quarter_20_regular = "\uebbc"; + public const string star_three_quarter_24_regular = "\uebbd"; + public const string star_three_quarter_28_regular = "\uebbe"; + public const string status_12_regular = "\uf001"; + public const string status_16_regular = "\uf721"; + public const string status_20_regular = "\uf722"; + public const string status_24_regular = "\uf723"; + public const string status_28_regular = "\U000f051d"; + public const string status_32_regular = "\U000f051e"; + public const string status_48_regular = "\U000f051f"; + public const string step_16_regular = "\uf2e7"; + public const string step_20_regular = "\U000f032d"; + public const string step_24_regular = "\U000f032e"; + public const string steps_16_regular = "\uf2e8"; + public const string steps_20_regular = "\uebbf"; + public const string steps_24_regular = "\uebc0"; + public const string stethoscope_20_regular = "\uf724"; + public const string stethoscope_24_regular = "\uf725"; + public const string sticker_12_regular = "\uebc1"; + public const string sticker_20_regular = "\uf726"; + public const string sticker_24_regular = "\uf727"; + public const string sticker_add_20_regular = "\uebc2"; + public const string sticker_add_24_regular = "\uf728"; + public const string stop_16_regular = "\uf729"; + public const string stop_20_regular = "\uf72a"; + public const string stop_24_regular = "\uf72b"; + public const string storage_16_regular = "\U000f0544"; + public const string storage_20_regular = "\uebc3"; + public const string storage_24_regular = "\uf72c"; + public const string storage_28_regular = "\U000f0545"; + public const string storage_32_regular = "\U000f0546"; + public const string storage_48_regular = "\U000f0547"; + public const string store_microsoft_16_regular = "\uf730"; + public const string store_microsoft_20_regular = "\uf731"; + public const string store_microsoft_24_regular = "\uf732"; + public const string stream_20_regular = "\uebc4"; + public const string stream_24_regular = "\uebc5"; + public const string stream_32_regular = "\U000f014a"; + public const string stream_48_regular = "\U000f027c"; + public const string stream_input_20_regular = "\uebc6"; + public const string stream_input_output_20_regular = "\uebc7"; + public const string stream_output_20_regular = "\uebc8"; + public const string street_sign_20_regular = "\U000f04fa"; + public const string street_sign_24_regular = "\U000f04fb"; + public const string style_guide_20_regular = "\uebc9"; + public const string style_guide_24_regular = "\uf733"; + public const string sub_grid_20_regular = "\uebca"; + public const string sub_grid_24_regular = "\uf734"; + public const string subtitles_16_regular = "\uebcb"; + public const string subtitles_20_regular = "\uebcc"; + public const string subtitles_24_regular = "\uebcd"; + public const string subtract_12_regular = "\uebce"; + public const string subtract_16_regular = "\uebcf"; + public const string subtract_20_regular = "\uebd0"; + public const string subtract_24_regular = "\uebd1"; + public const string subtract_28_regular = "\uebd2"; + public const string subtract_48_regular = "\uebd3"; + public const string subtract_circle_12_regular = "\uebd4"; + public const string subtract_circle_16_regular = "\uf7a7"; + public const string subtract_circle_20_regular = "\uf7b0"; + public const string subtract_circle_24_regular = "\uf7b1"; + public const string subtract_circle_28_regular = "\uf7b4"; + public const string subtract_circle_32_regular = "\uf7b5"; + public const string subtract_circle_48_regular = "\U000f03c8"; + public const string subtract_circle_arrow_back_16_regular = "\uebd5"; + public const string subtract_circle_arrow_back_20_regular = "\uebd6"; + public const string subtract_circle_arrow_forward_16_regular = "\uebd7"; + public const string subtract_circle_arrow_forward_20_regular = "\uebd8"; + public const string subtract_parentheses_16_regular = "\U000f03c9"; + public const string subtract_parentheses_20_regular = "\U000f03ca"; + public const string subtract_parentheses_24_regular = "\U000f03cb"; + public const string subtract_parentheses_28_regular = "\U000f03cc"; + public const string subtract_parentheses_32_regular = "\U000f03cd"; + public const string subtract_parentheses_48_regular = "\U000f03ce"; + public const string subtract_square_16_regular = "\U000f014b"; + public const string subtract_square_20_regular = "\uebd9"; + public const string subtract_square_24_regular = "\uebda"; + public const string subtract_square_multiple_16_regular = "\uebdb"; + public const string subtract_square_multiple_20_regular = "\uebdc"; + public const string surface_earbuds_20_regular = "\uf738"; + public const string surface_earbuds_24_regular = "\uf739"; + public const string surface_hub_20_regular = "\uf73a"; + public const string surface_hub_24_regular = "\uf73b"; + public const string swimming_pool_20_regular = "\uf054"; + public const string swimming_pool_24_regular = "\uf055"; + public const string swimming_pool_32_regular = "\uf056"; + public const string swimming_pool_48_regular = "\uf057"; + public const string swipe_down_20_regular = "\uebdd"; + public const string swipe_down_24_regular = "\uf73c"; + public const string swipe_right_20_regular = "\uebde"; + public const string swipe_right_24_regular = "\uf73d"; + public const string swipe_up_20_regular = "\uebdf"; + public const string swipe_up_24_regular = "\uf73e"; + public const string symbols_16_regular = "\uebe0"; + public const string symbols_20_regular = "\uebe1"; + public const string symbols_24_regular = "\uf73f"; + public const string sync_off_16_regular = "\uf740"; + public const string sync_off_20_regular = "\uf741"; + public const string syringe_20_regular = "\uebe2"; + public const string syringe_24_regular = "\uebe3"; + public const string system_20_regular = "\uebe4"; + public const string system_24_regular = "\uf742"; + public const string tab_16_regular = "\uf743"; + public const string tab_20_regular = "\uf744"; + public const string tab_add_20_regular = "\uebe5"; + public const string tab_add_24_regular = "\uebe6"; + public const string tab_arrow_left_20_regular = "\uebe7"; + public const string tab_arrow_left_24_regular = "\uebe8"; + public const string tab_desktop_16_regular = "\uebe9"; + public const string tab_desktop_20_regular = "\uf747"; + public const string tab_desktop_24_regular = "\uebea"; + public const string tab_desktop_28_regular = "\U000f023f"; + public const string tab_desktop_arrow_clockwise_16_regular = "\uf748"; + public const string tab_desktop_arrow_clockwise_20_regular = "\uf749"; + public const string tab_desktop_arrow_clockwise_24_regular = "\uf74a"; + public const string tab_desktop_arrow_left_20_regular = "\uebeb"; + public const string tab_desktop_bottom_20_regular = "\uebec"; + public const string tab_desktop_bottom_24_regular = "\uebed"; + public const string tab_desktop_clock_20_regular = "\uf74b"; + public const string tab_desktop_copy_20_regular = "\uf74c"; + public const string tab_desktop_image_16_regular = "\uf74d"; + public const string tab_desktop_image_20_regular = "\uf74e"; + public const string tab_desktop_image_24_regular = "\uf74f"; + public const string tab_desktop_link_16_regular = "\U000f0240"; + public const string tab_desktop_link_20_regular = "\U000f0241"; + public const string tab_desktop_link_24_regular = "\U000f0242"; + public const string tab_desktop_link_28_regular = "\U000f0243"; + public const string tab_desktop_multiple_16_regular = "\U000f0368"; + public const string tab_desktop_multiple_20_regular = "\uf750"; + public const string tab_desktop_multiple_24_regular = "\U000f057a"; + public const string tab_desktop_multiple_add_16_regular = "\U000f0369"; + public const string tab_desktop_multiple_add_20_regular = "\U000f032f"; + public const string tab_desktop_multiple_bottom_20_regular = "\uebee"; + public const string tab_desktop_multiple_bottom_24_regular = "\uebef"; + public const string tab_desktop_multiple_sparkle_16_regular = "\U000f057b"; + public const string tab_desktop_multiple_sparkle_20_regular = "\U000f057c"; + public const string tab_desktop_multiple_sparkle_24_regular = "\U000f057d"; + public const string tab_desktop_new_page_20_regular = "\uf751"; + public const string tab_desktop_search_16_regular = "\U000f05e1"; + public const string tab_desktop_search_20_regular = "\U000f05e2"; + public const string tab_desktop_search_24_regular = "\U000f05e3"; + public const string tab_group_16_regular = "\U000f05b9"; + public const string tab_group_20_regular = "\U000f05ba"; + public const string tab_group_24_regular = "\U000f05bb"; + public const string tab_in_private_16_regular = "\uf752"; + public const string tab_in_private_20_regular = "\uf753"; + public const string tab_in_private_24_regular = "\uf754"; + public const string tab_in_private_28_regular = "\uf755"; + public const string tab_inprivate_account_20_regular = "\uf756"; + public const string tab_inprivate_account_24_regular = "\uf757"; + public const string tab_prohibited_20_regular = "\uebf0"; + public const string tab_prohibited_24_regular = "\uebf1"; + public const string tab_shield_dismiss_20_regular = "\uebf2"; + public const string tab_shield_dismiss_24_regular = "\uebf3"; + public const string table_16_regular = "\uebf4"; + public const string table_20_regular = "\uf75d"; + public const string table_24_regular = "\uf75e"; + public const string table_28_regular = "\uebf5"; + public const string table_32_regular = "\uebf6"; + public const string table_48_regular = "\uebf7"; + public const string table_add_16_regular = "\uebf8"; + public const string table_add_20_regular = "\uebf9"; + public const string table_add_24_regular = "\uf75f"; + public const string table_add_28_regular = "\uebfa"; + public const string table_arrow_up_20_regular = "\U000f0244"; + public const string table_arrow_up_24_regular = "\U000f0245"; + public const string table_bottom_row_16_regular = "\uebfb"; + public const string table_bottom_row_20_regular = "\uebfc"; + public const string table_bottom_row_24_regular = "\uebfd"; + public const string table_bottom_row_28_regular = "\uebfe"; + public const string table_bottom_row_32_regular = "\uebff"; + public const string table_bottom_row_48_regular = "\uec00"; + public const string table_calculator_16_regular = "\uf08e"; + public const string table_calculator_20_regular = "\ueeb6"; + public const string table_cell_edit_16_regular = "\uec01"; + public const string table_cell_edit_20_regular = "\uec02"; + public const string table_cell_edit_24_regular = "\uec03"; + public const string table_cell_edit_28_regular = "\uec04"; + public const string table_cells_merge_16_regular = "\uec05"; + public const string table_cells_merge_20_regular = "\uf760"; + public const string table_cells_merge_24_regular = "\uf761"; + public const string table_cells_merge_28_regular = "\uec06"; + public const string table_cells_split_16_regular = "\uec07"; + public const string table_cells_split_20_regular = "\uf762"; + public const string table_cells_split_24_regular = "\uf763"; + public const string table_cells_split_28_regular = "\uec08"; + public const string table_checker_20_regular = "\uec09"; + public const string table_column_top_bottom_20_regular = "\U000f0101"; + public const string table_column_top_bottom_24_regular = "\U000f0102"; + public const string table_copy_20_regular = "\uec0a"; + public const string table_cursor_16_regular = "\U000f061c"; + public const string table_cursor_20_regular = "\U000f061d"; + public const string table_cursor_24_regular = "\U000f061e"; + public const string table_default_32_regular = "\U000f014c"; + public const string table_delete_column_16_regular = "\uec0b"; + public const string table_delete_column_20_regular = "\uec0c"; + public const string table_delete_column_24_regular = "\uec0d"; + public const string table_delete_column_28_regular = "\uec0e"; + public const string table_delete_row_16_regular = "\uec0f"; + public const string table_delete_row_20_regular = "\uec10"; + public const string table_delete_row_24_regular = "\uec11"; + public const string table_delete_row_28_regular = "\uec12"; + public const string table_dismiss_16_regular = "\uec13"; + public const string table_dismiss_20_regular = "\uec14"; + public const string table_dismiss_24_regular = "\uec15"; + public const string table_dismiss_28_regular = "\uec16"; + public const string table_edit_16_regular = "\uec17"; + public const string table_edit_20_regular = "\uec18"; + public const string table_edit_24_regular = "\uf768"; + public const string table_edit_28_regular = "\uec19"; + public const string table_freeze_column_16_regular = "\uec1a"; + public const string table_freeze_column_20_regular = "\uec1b"; + public const string table_freeze_column_24_regular = "\uf76a"; + public const string table_freeze_column_28_regular = "\uec1c"; + public const string table_freeze_column_and_row_16_regular = "\uec1d"; + public const string table_freeze_column_and_row_20_regular = "\uec1e"; + public const string table_freeze_column_and_row_24_regular = "\uec1f"; + public const string table_freeze_column_and_row_28_regular = "\uec20"; + public const string table_freeze_row_16_regular = "\uec21"; + public const string table_freeze_row_20_regular = "\uec22"; + public const string table_freeze_row_24_regular = "\uf76b"; + public const string table_freeze_row_28_regular = "\uec23"; + public const string table_image_20_regular = "\uec24"; + public const string table_insert_column_16_regular = "\uec25"; + public const string table_insert_column_20_regular = "\uec26"; + public const string table_insert_column_24_regular = "\uec27"; + public const string table_insert_column_28_regular = "\uec28"; + public const string table_insert_row_16_regular = "\uec29"; + public const string table_insert_row_20_regular = "\uec2a"; + public const string table_insert_row_24_regular = "\uec2b"; + public const string table_insert_row_28_regular = "\uec2c"; + public const string table_lightning_16_regular = "\uec2d"; + public const string table_lightning_20_regular = "\uec2e"; + public const string table_lightning_24_regular = "\uec2f"; + public const string table_lightning_28_regular = "\uec30"; + public const string table_link_16_regular = "\uec31"; + public const string table_link_20_regular = "\uec32"; + public const string table_link_24_regular = "\uec33"; + public const string table_link_28_regular = "\uec34"; + public const string table_lock_16_regular = "\uf2e9"; + public const string table_lock_20_regular = "\uf2ec"; + public const string table_lock_24_regular = "\uf2ed"; + public const string table_lock_28_regular = "\uf2ee"; + public const string table_lock_32_regular = "\uf302"; + public const string table_lock_48_regular = "\uf309"; + public const string table_move_above_16_regular = "\uec35"; + public const string table_move_above_20_regular = "\uec36"; + public const string table_move_above_24_regular = "\uec37"; + public const string table_move_above_28_regular = "\uec38"; + public const string table_move_below_16_regular = "\uec39"; + public const string table_move_below_20_regular = "\uec3a"; + public const string table_move_below_24_regular = "\uec3b"; + public const string table_move_below_28_regular = "\uec3c"; + public const string table_move_left_16_regular = "\uec3d"; + public const string table_move_left_20_regular = "\uec3e"; + public const string table_move_left_24_regular = "\uf771"; + public const string table_move_left_28_regular = "\uec3f"; + public const string table_move_right_16_regular = "\uec40"; + public const string table_move_right_20_regular = "\uec41"; + public const string table_move_right_24_regular = "\uf772"; + public const string table_move_right_28_regular = "\uec42"; + public const string table_multiple_20_regular = "\uec43"; + public const string table_offset_20_regular = "\U000f0103"; + public const string table_offset_24_regular = "\U000f0104"; + public const string table_offset_add_20_regular = "\U000f0105"; + public const string table_offset_add_24_regular = "\U000f0106"; + public const string table_offset_less_than_or_equal_to_20_regular = "\U000f0107"; + public const string table_offset_less_than_or_equal_to_24_regular = "\U000f0108"; + public const string table_offset_settings_20_regular = "\U000f0109"; + public const string table_offset_settings_24_regular = "\U000f010a"; + public const string table_resize_column_16_regular = "\uec44"; + public const string table_resize_column_20_regular = "\uec45"; + public const string table_resize_column_24_regular = "\uec46"; + public const string table_resize_column_28_regular = "\uec47"; + public const string table_resize_row_16_regular = "\uec48"; + public const string table_resize_row_20_regular = "\uec49"; + public const string table_resize_row_24_regular = "\uec4a"; + public const string table_resize_row_28_regular = "\uec4b"; + public const string table_search_20_regular = "\uec4c"; + public const string table_settings_16_regular = "\uec4d"; + public const string table_settings_20_regular = "\uec4e"; + public const string table_settings_24_regular = "\uf777"; + public const string table_settings_28_regular = "\uec4f"; + public const string table_simple_16_regular = "\uec50"; + public const string table_simple_20_regular = "\uec51"; + public const string table_simple_28_regular = "\uec53"; + public const string table_simple_32_regular = "\U000f014d"; + public const string table_simple_48_regular = "\uec54"; + public const string table_simple_checkmark_16_regular = "\uf08f"; + public const string table_simple_checkmark_20_regular = "\uf090"; + public const string table_simple_checkmark_24_regular = "\uf091"; + public const string table_simple_checkmark_28_regular = "\uf092"; + public const string table_simple_checkmark_32_regular = "\uf093"; + public const string table_simple_checkmark_48_regular = "\uf094"; + public const string table_simple_exclude_16_regular = "\U000f014e"; + public const string table_simple_exclude_20_regular = "\U000f014f"; + public const string table_simple_exclude_24_regular = "\U000f0150"; + public const string table_simple_exclude_28_regular = "\U000f0151"; + public const string table_simple_exclude_32_regular = "\U000f0152"; + public const string table_simple_exclude_48_regular = "\U000f0153"; + public const string table_simple_include_16_regular = "\U000f0154"; + public const string table_simple_include_20_regular = "\U000f0155"; + public const string table_simple_include_24_regular = "\U000f0156"; + public const string table_simple_include_28_regular = "\U000f0157"; + public const string table_simple_include_32_regular = "\U000f0158"; + public const string table_simple_include_48_regular = "\U000f0159"; + public const string table_simple_multiple_20_regular = "\U000f00ae"; + public const string table_simple_multiple_24_regular = "\U000f00af"; + public const string table_sparkle_20_regular = "\U000f05e4"; + public const string table_sparkle_24_regular = "\U000f05e5"; + public const string table_split_20_regular = "\uec55"; + public const string table_stack_above_16_regular = "\uec56"; + public const string table_stack_above_20_regular = "\uec57"; + public const string table_stack_above_24_regular = "\uec58"; + public const string table_stack_above_28_regular = "\uec59"; + public const string table_stack_below_16_regular = "\uec5a"; + public const string table_stack_below_20_regular = "\uec5b"; + public const string table_stack_below_24_regular = "\uec5c"; + public const string table_stack_below_28_regular = "\uec5d"; + public const string table_stack_left_16_regular = "\uec5e"; + public const string table_stack_left_20_regular = "\uec5f"; + public const string table_stack_left_24_regular = "\uec60"; + public const string table_stack_left_28_regular = "\uec61"; + public const string table_stack_right_16_regular = "\uec62"; + public const string table_stack_right_20_regular = "\uec63"; + public const string table_stack_right_24_regular = "\uec64"; + public const string table_stack_right_28_regular = "\uec65"; + public const string table_switch_16_regular = "\uec66"; + public const string table_switch_20_regular = "\uec67"; + public const string table_switch_24_regular = "\uf778"; + public const string table_switch_28_regular = "\uec68"; + public const string tablet_12_regular = "\uec69"; + public const string tablet_16_regular = "\uec6a"; + public const string tablet_20_regular = "\uf779"; + public const string tablet_24_regular = "\uf77a"; + public const string tablet_32_regular = "\uec6b"; + public const string tablet_48_regular = "\uec6c"; + public const string tablet_laptop_20_regular = "\U000f015a"; + public const string tablet_laptop_24_regular = "\U000f0246"; + public const string tablet_speaker_20_regular = "\uec6d"; + public const string tablet_speaker_24_regular = "\uec6e"; + public const string tabs_16_regular = "\uf095"; + public const string tabs_20_regular = "\uec6f"; + public const string tabs_24_regular = "\uf77b"; + public const string tag_16_regular = "\uec70"; + public const string tag_20_regular = "\uf77c"; + public const string tag_24_regular = "\uf77d"; + public const string tag_28_regular = "\uec71"; + public const string tag_32_regular = "\uec72"; + public const string tag_circle_20_regular = "\uec73"; + public const string tag_dismiss_16_regular = "\uec74"; + public const string tag_dismiss_20_regular = "\uec75"; + public const string tag_dismiss_24_regular = "\uec76"; + public const string tag_error_16_regular = "\uec77"; + public const string tag_error_20_regular = "\uec78"; + public const string tag_error_24_regular = "\uec79"; + public const string tag_lock_16_regular = "\uec7a"; + public const string tag_lock_20_regular = "\uec7b"; + public const string tag_lock_24_regular = "\uec7c"; + public const string tag_lock_32_regular = "\uec7d"; + public const string tag_multiple_16_regular = "\uf7b6"; + public const string tag_multiple_20_regular = "\uec7e"; + public const string tag_multiple_24_regular = "\uec7f"; + public const string tag_off_16_regular = "\U000f05f4"; + public const string tag_off_20_regular = "\uec80"; + public const string tag_off_24_regular = "\uec81"; + public const string tag_question_mark_16_regular = "\uec82"; + public const string tag_question_mark_20_regular = "\uec83"; + public const string tag_question_mark_24_regular = "\uec84"; + public const string tag_question_mark_32_regular = "\uec85"; + public const string tag_reset_20_regular = "\uec86"; + public const string tag_reset_24_regular = "\uec87"; + public const string tag_search_20_regular = "\uec88"; + public const string tag_search_24_regular = "\uec89"; + public const string tap_double_20_regular = "\uec8a"; + public const string tap_double_24_regular = "\uf77e"; + public const string tap_double_32_regular = "\uec8b"; + public const string tap_double_48_regular = "\uec8c"; + public const string tap_single_20_regular = "\uec8d"; + public const string tap_single_24_regular = "\uf77f"; + public const string tap_single_32_regular = "\uec8e"; + public const string tap_single_48_regular = "\uec8f"; + public const string target_16_regular = "\uf780"; + public const string target_20_regular = "\uf781"; + public const string target_24_regular = "\uf782"; + public const string target_32_regular = "\uec90"; + public const string target_add_20_regular = "\U000f036a"; + public const string target_add_24_regular = "\U000f036b"; + public const string target_arrow_16_regular = "\uf7b7"; + public const string target_arrow_20_regular = "\uf7b8"; + public const string target_arrow_24_regular = "\uec91"; + public const string target_dismiss_20_regular = "\U000f036c"; + public const string target_dismiss_24_regular = "\U000f036d"; + public const string target_edit_16_regular = "\uf783"; + public const string target_edit_20_regular = "\uf784"; + public const string target_edit_24_regular = "\uf785"; + public const string task_list_add_20_regular = "\uf788"; + public const string task_list_add_24_regular = "\uf789"; + public const string task_list_ltr_20_regular = "\uec92"; + public const string task_list_ltr_24_regular = "\uec93"; + public const string task_list_rtl_20_regular = "\uec94"; + public const string task_list_rtl_24_regular = "\uec95"; + public const string task_list_square_add_20_regular = "\uec96"; + public const string task_list_square_add_24_regular = "\uec97"; + public const string task_list_square_database_20_regular = "\uec98"; + public const string task_list_square_ltr_16_regular = "\uefad"; + public const string task_list_square_ltr_20_regular = "\uec99"; + public const string task_list_square_ltr_24_regular = "\uec9a"; + public const string task_list_square_person_20_regular = "\uec9b"; + public const string task_list_square_rtl_16_regular = "\uefae"; + public const string task_list_square_rtl_20_regular = "\uec9c"; + public const string task_list_square_rtl_24_regular = "\uec9d"; + public const string task_list_square_settings_20_regular = "\uec9e"; + public const string tasks_app_20_regular = "\uec9f"; + public const string tasks_app_24_regular = "\uf78a"; + public const string tasks_app_28_regular = "\uf78b"; + public const string teardrop_bottom_right_16_regular = "\U000f039d"; + public const string teardrop_bottom_right_20_regular = "\U000f039e"; + public const string teardrop_bottom_right_24_regular = "\U000f039f"; + public const string teardrop_bottom_right_28_regular = "\U000f03a0"; + public const string teardrop_bottom_right_32_regular = "\U000f03a1"; + public const string teardrop_bottom_right_48_regular = "\U000f03a2"; + public const string teddy_20_regular = "\ueca0"; + public const string teddy_24_regular = "\uf78e"; + public const string temperature_16_regular = "\ueca1"; + public const string temperature_20_regular = "\uf78f"; + public const string temperature_24_regular = "\uf790"; + public const string temperature_32_regular = "\uf058"; + public const string temperature_48_regular = "\uf059"; + public const string tent_12_regular = "\ueca2"; + public const string tent_16_regular = "\ueca3"; + public const string tent_20_regular = "\ueca4"; + public const string tent_24_regular = "\uf791"; + public const string tent_28_regular = "\ueca5"; + public const string tent_48_regular = "\ueca6"; + public const string tetris_app_16_regular = "\ueca7"; + public const string tetris_app_20_regular = "\ueca8"; + public const string tetris_app_24_regular = "\ueca9"; + public const string tetris_app_28_regular = "\uecaa"; + public const string tetris_app_32_regular = "\uecab"; + public const string tetris_app_48_regular = "\uecac"; + public const string text_12_regular = "\uecad"; + public const string text_16_regular = "\uecae"; + public const string text_32_regular = "\uecaf"; + public const string text_abc_underline_double_32_regular = "\U000f00b0"; + public const string text_add_20_regular = "\uecb0"; + public const string text_add_space_after_20_regular = "\uf795"; + public const string text_add_space_after_24_regular = "\uf796"; + public const string text_add_space_before_20_regular = "\uf797"; + public const string text_add_space_before_24_regular = "\uf798"; + public const string text_add_t_24_regular = "\uecb1"; + public const string text_align_center_16_regular = "\uecb2"; + public const string text_align_center_20_regular = "\uf799"; + public const string text_align_center_24_regular = "\uf79a"; + public const string text_align_center_rotate_270_16_regular = "\uecb3"; + public const string text_align_center_rotate_270_20_regular = "\uecb4"; + public const string text_align_center_rotate_270_24_regular = "\uecb5"; + public const string text_align_center_rotate_90_16_regular = "\uecb6"; + public const string text_align_center_rotate_90_20_regular = "\uecb7"; + public const string text_align_center_rotate_90_24_regular = "\uecb8"; + public const string text_align_distributed_20_regular = "\uf79b"; + public const string text_align_distributed_24_regular = "\uf79c"; + public const string text_align_distributed_evenly_20_regular = "\uecb9"; + public const string text_align_distributed_evenly_24_regular = "\uecba"; + public const string text_align_distributed_vertical_20_regular = "\uecbb"; + public const string text_align_distributed_vertical_24_regular = "\uecbc"; + public const string text_align_justify_24_regular = "\uf79e"; + public const string text_align_justify_low_20_regular = "\uecbd"; + public const string text_align_justify_low_24_regular = "\uecbe"; + public const string text_align_justify_low_rotate_90_20_regular = "\ueee2"; + public const string text_align_justify_low_rotate_90_24_regular = "\ueee3"; + public const string text_align_justify_low_rotate_270_20_regular = "\ueee0"; + public const string text_align_justify_low_rotate_270_24_regular = "\ueee1"; + public const string text_align_justify_rotate_270_20_regular = "\uecbf"; + public const string text_align_justify_rotate_270_24_regular = "\uecc0"; + public const string text_align_justify_rotate_90_20_regular = "\uecc1"; + public const string text_align_justify_rotate_90_24_regular = "\uecc2"; + public const string text_align_left_16_regular = "\uecc3"; + public const string text_align_left_20_regular = "\uf79f"; + public const string text_align_left_24_regular = "\uf7a0"; + public const string text_align_left_rotate_270_16_regular = "\uecc4"; + public const string text_align_left_rotate_270_20_regular = "\uecc5"; + public const string text_align_left_rotate_270_24_regular = "\uecc6"; + public const string text_align_left_rotate_90_16_regular = "\uecc7"; + public const string text_align_left_rotate_90_20_regular = "\uecc8"; + public const string text_align_left_rotate_90_24_regular = "\uecc9"; + public const string text_align_right_16_regular = "\uecca"; + public const string text_align_right_20_regular = "\uf7a1"; + public const string text_align_right_24_regular = "\uf7a2"; + public const string text_align_right_rotate_270_16_regular = "\ueccb"; + public const string text_align_right_rotate_270_20_regular = "\ueccc"; + public const string text_align_right_rotate_270_24_regular = "\ueccd"; + public const string text_align_right_rotate_90_16_regular = "\uecce"; + public const string text_align_right_rotate_90_20_regular = "\ueccf"; + public const string text_align_right_rotate_90_24_regular = "\uecd0"; + public const string text_arrow_down_right_column_16_regular = "\U000f04bc"; + public const string text_arrow_down_right_column_20_regular = "\U000f04bd"; + public const string text_arrow_down_right_column_24_regular = "\U000f04be"; + public const string text_arrow_down_right_column_28_regular = "\U000f04bf"; + public const string text_arrow_down_right_column_32_regular = "\U000f04c0"; + public const string text_arrow_down_right_column_48_regular = "\U000f04c1"; + public const string text_asterisk_16_regular = "\U000f03a7"; + public const string text_asterisk_20_regular = "\uf7a3"; + public const string text_baseline_20_regular = "\uecd1"; + public const string text_bold_16_regular = "\uecd2"; + public const string text_bold_20_regular = "\uf7a4"; + public const string text_bold_24_regular = "\uf7a5"; + public const string text_box_settings_20_regular = "\uecd3"; + public const string text_box_settings_24_regular = "\uecd4"; + public const string text_bullet_list_ltr_16_regular = "\uecd8"; + public const string text_bullet_list_ltr_20_regular = "\uecd9"; + public const string text_bullet_list_ltr_24_regular = "\uecda"; + public const string text_bullet_list_ltr_rotate_270_24_regular = "\uef85"; + public const string text_bullet_list_rtl_90_20_regular = "\uef86"; + public const string text_bullet_list_ltr_90_24_regular = "\uef84"; + public const string text_bullet_list_add_20_regular = "\uecd5"; + public const string text_bullet_list_add_24_regular = "\uf7a8"; + public const string text_bullet_list_checkmark_20_regular = "\uecd6"; + public const string text_bullet_list_dismiss_20_regular = "\uecd7"; + public const string text_bullet_list_ltr_90_20_regular = "\uef83"; + public const string text_bullet_list_rtl_16_regular = "\uecdf"; + public const string text_bullet_list_rtl_20_regular = "\uece0"; + public const string text_bullet_list_rtl_24_regular = "\uece1"; + public const string text_bullet_list_square_16_regular = "\U000f01ad"; + public const string text_bullet_list_square_20_regular = "\uece2"; + public const string text_bullet_list_square_24_regular = "\uf7a9"; + public const string text_bullet_list_square_32_regular = "\U000f01ae"; + public const string text_bullet_list_square_48_regular = "\U000f027d"; + public const string text_bullet_list_square_clock_20_regular = "\uece3"; + public const string text_bullet_list_square_edit_20_regular = "\uf7b9"; + public const string text_bullet_list_square_edit_24_regular = "\uf7ba"; + public const string text_bullet_list_square_person_20_regular = "\uece4"; + public const string text_bullet_list_square_person_32_regular = "\uefd3"; + public const string text_bullet_list_square_search_20_regular = "\uece5"; + public const string text_bullet_list_square_settings_20_regular = "\uece6"; + public const string text_bullet_list_square_shield_20_regular = "\uece7"; + public const string text_bullet_list_square_shield_48_regular = "\U000f027e"; + public const string text_bullet_list_square_sparkle_16_regular = "\U000f01af"; + public const string text_bullet_list_square_sparkle_20_regular = "\U000f01b0"; + public const string text_bullet_list_square_sparkle_24_regular = "\U000f01b1"; + public const string text_bullet_list_square_toolbox_20_regular = "\uece8"; + public const string text_bullet_list_square_warning_16_regular = "\uf7aa"; + public const string text_bullet_list_square_warning_20_regular = "\uf7ab"; + public const string text_bullet_list_square_warning_24_regular = "\uf7ac"; + public const string text_bullet_list_tree_16_regular = "\uf7ad"; + public const string text_bullet_list_tree_20_regular = "\uf7ae"; + public const string text_bullet_list_tree_24_regular = "\uf7af"; + public const string text_case_lowercase_16_regular = "\uece9"; + public const string text_case_lowercase_20_regular = "\uecea"; + public const string text_case_lowercase_24_regular = "\ueceb"; + public const string text_case_title_16_regular = "\uecec"; + public const string text_case_title_20_regular = "\ueced"; + public const string text_case_title_24_regular = "\uecee"; + public const string text_case_uppercase_16_regular = "\uecef"; + public const string text_case_uppercase_20_regular = "\uecf0"; + public const string text_case_uppercase_24_regular = "\uecf1"; + public const string text_change_case_16_regular = "\uecf2"; + public const string text_change_case_20_regular = "\uf7b2"; + public const string text_change_case_24_regular = "\uf7b3"; + public const string text_clear_formatting_16_regular = "\uecf3"; + public const string text_clear_formatting_20_regular = "\uf7bc"; + public const string text_clear_formatting_24_regular = "\uf7bd"; + public const string text_collapse_20_regular = "\uecf4"; + public const string text_collapse_24_regular = "\uf7be"; + public const string text_color_16_regular = "\uecf5"; + public const string text_color_20_regular = "\uf7bf"; + public const string text_color_24_regular = "\uf7c0"; + public const string text_column_one_20_regular = "\uf7c1"; + public const string text_column_one_24_regular = "\uf7c2"; + public const string text_column_one_narrow_20_regular = "\uecf6"; + public const string text_column_one_narrow_24_regular = "\uecf7"; + public const string text_column_one_semi_narrow_20_regular = "\U000f00b1"; + public const string text_column_one_semi_narrow_24_regular = "\U000f00b2"; + public const string text_column_one_wide_20_regular = "\uecf8"; + public const string text_column_one_wide_24_regular = "\uecf9"; + public const string text_column_one_wide_lightning_16_regular = "\U000f05f5"; + public const string text_column_one_wide_lightning_20_regular = "\uecfa"; + public const string text_column_one_wide_lightning_24_regular = "\uecfb"; + public const string text_column_three_20_regular = "\uf7c3"; + public const string text_column_three_24_regular = "\uf7c4"; + public const string text_column_two_20_regular = "\uf7c5"; + public const string text_column_two_24_regular = "\uf7c6"; + public const string text_column_two_left_20_regular = "\uf7c7"; + public const string text_column_two_left_24_regular = "\uf7c8"; + public const string text_column_two_right_20_regular = "\uf7c9"; + public const string text_column_two_right_24_regular = "\uf7ca"; + public const string text_continuous_20_regular = "\uecfc"; + public const string text_continuous_24_regular = "\uecfd"; + public const string text_density_16_regular = "\uecfe"; + public const string text_density_20_regular = "\uecff"; + public const string text_density_24_regular = "\ued00"; + public const string text_density_28_regular = "\ued01"; + public const string text_density_32_regular = "\U000f045f"; + public const string text_description_16_regular = "\U000f0330"; + public const string text_description_ltr_20_regular = "\uef87"; + public const string text_description_ltr_24_regular = "\uef88"; + public const string text_description_28_regular = "\U000f0331"; + public const string text_description_32_regular = "\U000f0332"; + public const string text_description_rtl_20_regular = "\uef89"; + public const string text_description_rtl_24_regular = "\uef8a"; + public const string text_direction_horizontal_left_20_regular = "\ued02"; + public const string text_direction_horizontal_left_24_regular = "\ued03"; + public const string text_direction_horizontal_right_20_regular = "\ued04"; + public const string text_direction_horizontal_right_24_regular = "\ued05"; + public const string text_direction_rotate_270_right_20_regular = "\ued06"; + public const string text_direction_rotate_270_right_24_regular = "\ued07"; + public const string text_direction_rotate_315_right_20_regular = "\U000f01f9"; + public const string text_direction_rotate_315_right_24_regular = "\U000f01fa"; + public const string text_direction_rotate_45_right_20_regular = "\U000f01fb"; + public const string text_direction_rotate_45_right_24_regular = "\U000f01fc"; + public const string text_direction_rotate_90_left_20_regular = "\ued08"; + public const string text_direction_rotate_90_left_24_regular = "\ued09"; + public const string text_direction_rotate_90_right_20_regular = "\ued0a"; + public const string text_direction_rotate_90_right_24_regular = "\ued0b"; + public const string text_direction_vertical_20_regular = "\uf7d7"; + public const string text_direction_vertical_24_regular = "\uf7d8"; + public const string text_edit_style_16_regular = "\U000f03a3"; + public const string text_edit_style_20_regular = "\uf7d9"; + public const string text_edit_style_24_regular = "\uf7da"; + public const string text_edit_style_character_a_32_regular = "\U000f0460"; + public const string text_edit_style_character_ga_32_regular = "\U000f04e2"; + public const string text_effects_20_regular = "\uf7db"; + public const string text_effects_24_regular = "\uf7dc"; + public const string text_effects_sparkle_20_regular = "\U000f04c2"; + public const string text_effects_sparkle_24_regular = "\U000f04c3"; + public const string text_expand_16_regular = "\U000f00b3"; + public const string text_expand_20_regular = "\ued0c"; + public const string text_expand_24_regular = "\uf7dd"; + public const string text_field_16_regular = "\uf7de"; + public const string text_field_20_regular = "\uf7df"; + public const string text_field_24_regular = "\uf7e0"; + public const string text_first_line_20_regular = "\uf7e1"; + public const string text_first_line_24_regular = "\uf7e2"; + public const string text_font_16_regular = "\uf7e3"; + public const string text_font_20_regular = "\uf7e4"; + public const string text_font_24_regular = "\uf7e5"; + public const string text_font_info_16_regular = "\ued0d"; + public const string text_font_info_20_regular = "\ued0e"; + public const string text_font_info_24_regular = "\ued0f"; + public const string text_font_size_16_regular = "\ued10"; + public const string text_font_size_20_regular = "\uf7e6"; + public const string text_font_size_24_regular = "\uf7e7"; + public const string text_footnote_20_regular = "\uf7e8"; + public const string text_footnote_24_regular = "\uf7e9"; + public const string text_grammar_arrow_left_20_regular = "\ued11"; + public const string text_grammar_arrow_left_24_regular = "\ued12"; + public const string text_grammar_arrow_right_20_regular = "\ued13"; + public const string text_grammar_arrow_right_24_regular = "\ued14"; + public const string text_grammar_checkmark_20_regular = "\ued15"; + public const string text_grammar_checkmark_24_regular = "\ued16"; + public const string text_grammar_dismiss_20_regular = "\ued17"; + public const string text_grammar_dismiss_24_regular = "\ued18"; + public const string text_grammar_error_20_regular = "\ued19"; + public const string text_grammar_lightning_16_regular = "\U000f0333"; + public const string text_grammar_lightning_20_regular = "\U000f0334"; + public const string text_grammar_lightning_24_regular = "\U000f0335"; + public const string text_grammar_lightning_28_regular = "\U000f0336"; + public const string text_grammar_lightning_32_regular = "\U000f0337"; + public const string text_grammar_settings_20_regular = "\ued1a"; + public const string text_grammar_settings_24_regular = "\ued1b"; + public const string text_grammar_wand_16_regular = "\ued1c"; + public const string text_grammar_wand_20_regular = "\ued1d"; + public const string text_grammar_wand_24_regular = "\ued1e"; + public const string text_hanging_20_regular = "\uf7ed"; + public const string text_hanging_24_regular = "\uf7ee"; + public const string text_header_1_20_regular = "\uf7ef"; + public const string text_header_1_24_regular = "\ued1f"; + public const string text_header_1_lines_16_regular = "\U000f036e"; + public const string text_header_1_lines_20_regular = "\U000f036f"; + public const string text_header_1_lines_24_regular = "\U000f0370"; + public const string text_header_1_lines_caret_16_regular = "\U000f0371"; + public const string text_header_1_lines_caret_20_regular = "\U000f0372"; + public const string text_header_1_lines_caret_24_regular = "\U000f0373"; + public const string text_header_2_20_regular = "\uf7f0"; + public const string text_header_2_24_regular = "\ued20"; + public const string text_header_2_lines_16_regular = "\U000f0374"; + public const string text_header_2_lines_20_regular = "\U000f0375"; + public const string text_header_2_lines_24_regular = "\U000f0376"; + public const string text_header_2_lines_caret_16_regular = "\U000f0377"; + public const string text_header_2_lines_caret_20_regular = "\U000f0378"; + public const string text_header_2_lines_caret_24_regular = "\U000f0379"; + public const string text_header_3_20_regular = "\uf7f1"; + public const string text_header_3_24_regular = "\ued21"; + public const string text_header_3_lines_16_regular = "\U000f037a"; + public const string text_header_3_lines_20_regular = "\U000f037b"; + public const string text_header_3_lines_24_regular = "\U000f037c"; + public const string text_header_3_lines_caret_16_regular = "\U000f037d"; + public const string text_header_3_lines_caret_20_regular = "\U000f037e"; + public const string text_header_3_lines_caret_24_regular = "\U000f037f"; + public const string text_indent_decrease_ltr_16_regular = "\ued22"; + public const string text_indent_decrease_ltr_20_regular = "\ued23"; + public const string text_indent_decrease_ltr_24_regular = "\ued24"; + public const string text_indent_decrease_rotate_90_20_regular = "\ued27"; + public const string text_indent_decrease_rotate_90_24_regular = "\ued28"; + public const string text_indent_decrease_rotate_270_20_regular = "\ued25"; + public const string text_indent_decrease_rotate_270_24_regular = "\ued26"; + public const string text_indent_decrease_rtl_16_regular = "\ued29"; + public const string text_indent_decrease_rtl_20_regular = "\ued2a"; + public const string text_indent_decrease_rtl_24_regular = "\ued2b"; + public const string text_indent_decrease_rtl_90_24_regular = "\uef90"; + public const string text_indent_decrease_rtl_rotate_270_24_regular = "\uefb0"; + public const string text_indent_increase_ltr_16_regular = "\ued2c"; + public const string text_indent_increase_ltr_20_regular = "\ued2d"; + public const string text_indent_increase_ltr_24_regular = "\ued2e"; + public const string text_indent_increase_rotate_90_20_regular = "\ued31"; + public const string text_indent_increase_rotate_90_24_regular = "\ued32"; + public const string text_indent_increase_rotate_270_20_regular = "\ued2f"; + public const string text_indent_increase_rotate_270_24_regular = "\ued30"; + public const string text_indent_increase_rtl_16_regular = "\ued33"; + public const string text_indent_increase_rtl_20_regular = "\ued34"; + public const string text_indent_increase_rtl_24_regular = "\ued35"; + public const string text_indent_increase_rtl_90_24_regular = "\uf029"; + public const string text_indent_increase_rtl_rotate_270_24_regular = "\uf3fc"; + public const string text_italic_16_regular = "\ued36"; + public const string text_italic_20_regular = "\uf7f4"; + public const string text_italic_24_regular = "\uf7f5"; + public const string text_line_spacing_20_regular = "\uf7f6"; + public const string text_line_spacing_24_regular = "\uf7f7"; + public const string text_more_20_regular = "\ued37"; + public const string text_more_24_regular = "\ued38"; + public const string text_number_format_20_regular = "\ued39"; + public const string text_number_format_24_regular = "\uf7f8"; + public const string text_number_list_ltr_16_regular = "\ued3a"; + public const string text_number_list_ltr_20_regular = "\uf7f9"; + public const string text_number_list_ltr_24_regular = "\uf7fa"; + public const string text_number_list_rotate_90_20_regular = "\ued3d"; + public const string text_number_list_rotate_90_24_regular = "\ued3e"; + public const string text_number_list_rotate_270_20_regular = "\ued3b"; + public const string text_number_list_ltr_rotate_270_24_regular = "\uf50b"; + public const string text_number_list_rotate_270_24_regular = "\ued3c"; + public const string text_number_list_rtl_16_regular = "\ued3f"; + public const string text_number_list_rtl_20_regular = "\ued40"; + public const string text_number_list_rtl_24_regular = "\uf7fb"; + public const string text_number_list_rtl_90_20_regular = "\uf50c"; + public const string text_number_list_rtl_90_24_regular = "\uf543"; + public const string text_number_list_rtl_rotate_270_20_regular = "\uf544"; + public const string text_number_list_rtl_rotate_270_24_regular = "\uf545"; + public const string text_paragraph_direction_20_regular = "\ued44"; + public const string text_paragraph_direction_24_regular = "\ued45"; + public const string text_paragraph_direction_left_16_regular = "\ued46"; + public const string text_paragraph_direction_left_20_regular = "\ued47"; + public const string text_paragraph_direction_right_16_regular = "\ued48"; + public const string text_paragraph_direction_right_20_regular = "\ued49"; + public const string text_period_asterisk_20_regular = "\ued4a"; + public const string text_position_behind_20_regular = "\ued4b"; + public const string text_position_behind_24_regular = "\ued4c"; + public const string text_position_front_20_regular = "\ued4d"; + public const string text_position_front_24_regular = "\ued4e"; + public const string text_position_line_20_regular = "\ued4f"; + public const string text_position_line_24_regular = "\ued50"; + public const string text_position_square_20_regular = "\ued51"; + public const string text_position_square_24_regular = "\ued52"; + public const string text_position_square_left_16_regular = "\U000f00b4"; + public const string text_position_square_left_20_regular = "\U000f00b5"; + public const string text_position_square_left_24_regular = "\U000f00b6"; + public const string text_position_square_right_16_regular = "\U000f00b7"; + public const string text_position_square_right_20_regular = "\U000f00b8"; + public const string text_position_square_right_24_regular = "\U000f00b9"; + public const string text_position_through_20_regular = "\ued53"; + public const string text_position_through_24_regular = "\ued54"; + public const string text_position_tight_20_regular = "\ued55"; + public const string text_position_tight_24_regular = "\ued56"; + public const string text_position_top_bottom_20_regular = "\ued57"; + public const string text_position_top_bottom_24_regular = "\ued58"; + public const string text_proofing_tools_20_regular = "\uf7fe"; + public const string text_proofing_tools_24_regular = "\uf7ff"; + public const string text_quote_16_regular = "\ued59"; + public const string text_quote_20_regular = "\uf800"; + public const string text_quote_24_regular = "\uf801"; + public const string text_sort_ascending_16_regular = "\ued5a"; + public const string text_sort_ascending_20_regular = "\uf802"; + public const string text_sort_ascending_24_regular = "\ued5b"; + public const string text_sort_descending_16_regular = "\ued5c"; + public const string text_sort_descending_20_regular = "\uf803"; + public const string text_sort_descending_24_regular = "\ued5d"; + public const string text_strikethrough_16_regular = "\ued5e"; + public const string text_strikethrough_20_regular = "\ued5f"; + public const string text_strikethrough_24_regular = "\ued60"; + public const string text_subscript_16_regular = "\ued61"; + public const string text_subscript_20_regular = "\uf806"; + public const string text_subscript_24_regular = "\uf807"; + public const string text_superscript_16_regular = "\ued62"; + public const string text_superscript_20_regular = "\uf808"; + public const string text_superscript_24_regular = "\uf809"; + public const string text_t_20_regular = "\ued63"; + public const string text_t_24_regular = "\ued64"; + public const string text_t_28_regular = "\ued65"; + public const string text_t_48_regular = "\ued66"; + public const string text_t_tag_16_regular = "\uf326"; + public const string text_underline_16_regular = "\ued67"; + public const string text_underline_20_regular = "\uf80a"; + public const string text_underline_24_regular = "\uf80b"; + public const string text_underline_character_u_16_regular = "\U000f00ba"; + public const string text_underline_character_u_20_regular = "\U000f00bb"; + public const string text_underline_character_u_24_regular = "\U000f00bc"; + public const string text_underline_double_20_regular = "\uf096"; + public const string text_underline_double_24_regular = "\uf097"; + public const string text_whole_word_16_regular = "\U000f03a4"; + public const string text_whole_word_20_regular = "\ued68"; + public const string text_word_count_20_regular = "\uf80c"; + public const string text_word_count_24_regular = "\uf80d"; + public const string text_wrap_16_regular = "\uef28"; + public const string text_wrap_20_regular = "\ued69"; + public const string text_wrap_24_regular = "\uf80e"; + public const string text_wrap_off_16_regular = "\uef29"; + public const string text_wrap_off_20_regular = "\uef2a"; + public const string text_wrap_off_24_regular = "\uef2b"; + public const string textbox_16_regular = "\ued6a"; + public const string textbox_20_regular = "\uf80f"; + public const string textbox_24_regular = "\uf810"; + public const string textbox_align_bottom_20_regular = "\uf813"; + public const string textbox_align_bottom_24_regular = "\uf814"; + public const string textbox_align_bottom_center_16_regular = "\U000f02e0"; + public const string textbox_align_bottom_center_20_regular = "\U000f02e1"; + public const string textbox_align_bottom_center_24_regular = "\U000f02e2"; + public const string textbox_align_bottom_left_16_regular = "\U000f02e3"; + public const string textbox_align_bottom_left_20_regular = "\U000f02e4"; + public const string textbox_align_bottom_left_24_regular = "\U000f02e5"; + public const string textbox_align_bottom_right_16_regular = "\U000f02e6"; + public const string textbox_align_bottom_right_20_regular = "\U000f02e7"; + public const string textbox_align_bottom_right_24_regular = "\U000f02e8"; + public const string textbox_align_bottom_rotate_90_20_regular = "\ued6b"; + public const string textbox_align_bottom_rotate_90_24_regular = "\ued6c"; + public const string textbox_align_center_16_regular = "\U000f02e9"; + public const string textbox_align_center_20_regular = "\ued6d"; + public const string textbox_align_center_24_regular = "\ued6e"; + public const string textbox_align_middle_16_regular = "\U000f015b"; + public const string textbox_align_middle_20_regular = "\uf815"; + public const string textbox_align_middle_24_regular = "\uf816"; + public const string textbox_align_middle_left_16_regular = "\U000f02ea"; + public const string textbox_align_middle_left_20_regular = "\U000f02eb"; + public const string textbox_align_middle_left_24_regular = "\U000f02ec"; + public const string textbox_align_middle_right_16_regular = "\U000f02ed"; + public const string textbox_align_middle_right_20_regular = "\U000f02ee"; + public const string textbox_align_middle_right_24_regular = "\U000f02ef"; + public const string textbox_align_middle_rotate_90_20_regular = "\ued6f"; + public const string textbox_align_middle_rotate_90_24_regular = "\ued70"; + public const string textbox_align_top_20_regular = "\uf817"; + public const string textbox_align_top_24_regular = "\uf818"; + public const string textbox_align_top_center_16_regular = "\U000f02f0"; + public const string textbox_align_top_center_20_regular = "\U000f02f1"; + public const string textbox_align_top_center_24_regular = "\U000f02f2"; + public const string textbox_align_top_left_16_regular = "\U000f02f3"; + public const string textbox_align_top_left_20_regular = "\U000f02f4"; + public const string textbox_align_top_left_24_regular = "\U000f02f5"; + public const string textbox_align_top_right_16_regular = "\U000f02f6"; + public const string textbox_align_top_right_20_regular = "\U000f02f7"; + public const string textbox_align_top_right_24_regular = "\U000f02f8"; + public const string textbox_align_top_rotate_90_20_regular = "\ued71"; + public const string textbox_align_top_rotate_90_24_regular = "\ued72"; + public const string textbox_more_20_regular = "\ued73"; + public const string textbox_more_24_regular = "\ued74"; + public const string textbox_rotate_90_20_regular = "\ued75"; + public const string textbox_rotate_90_24_regular = "\ued76"; + public const string thinking_20_regular = "\uf81b"; + public const string thinking_24_regular = "\uf81c"; + public const string thumb_dislike_16_regular = "\ued77"; + public const string thumb_dislike_20_regular = "\uf81d"; + public const string thumb_dislike_24_regular = "\uf81e"; + public const string thumb_like_16_regular = "\ued78"; + public const string thumb_like_20_regular = "\uf81f"; + public const string thumb_like_24_regular = "\uf820"; + public const string thumb_like_28_regular = "\ued79"; + public const string thumb_like_48_regular = "\ued7a"; + public const string thumb_like_dislike_16_regular = "\U000f0247"; + public const string thumb_like_dislike_20_regular = "\U000f0248"; + public const string thumb_like_dislike_24_regular = "\U000f0249"; + public const string ticket_diagonal_16_regular = "\ued7b"; + public const string ticket_diagonal_20_regular = "\ued7c"; + public const string ticket_diagonal_24_regular = "\ued7d"; + public const string ticket_diagonal_28_regular = "\ued7e"; + public const string ticket_horizontal_20_regular = "\ued7f"; + public const string ticket_horizontal_24_regular = "\ued80"; + public const string time_and_weather_20_regular = "\ued81"; + public const string time_and_weather_24_regular = "\uf823"; + public const string time_picker_20_regular = "\ued82"; + public const string time_picker_24_regular = "\uf824"; + public const string timeline_20_regular = "\ued83"; + public const string timeline_24_regular = "\uf825"; + public const string timer_10_20_regular = "\ued84"; + public const string timer_10_24_regular = "\uf826"; + public const string timer_12_regular = "\ued85"; + public const string timer_16_regular = "\ued86"; + public const string timer_2_20_regular = "\ued87"; + public const string timer_2_24_regular = "\uf828"; + public const string timer_20_regular = "\ued88"; + public const string timer_24_regular = "\uf827"; + public const string timer_28_regular = "\ued89"; + public const string timer_3_20_regular = "\ued8a"; + public const string timer_3_24_regular = "\ued8b"; + public const string timer_32_regular = "\ued8c"; + public const string timer_48_regular = "\ued8d"; + public const string timer_off_20_regular = "\ued8e"; + public const string timer_off_24_regular = "\uf829"; + public const string toggle_left_16_regular = "\ued8f"; + public const string toggle_left_20_regular = "\ued90"; + public const string toggle_left_24_regular = "\ued91"; + public const string toggle_left_28_regular = "\ued92"; + public const string toggle_left_48_regular = "\ued93"; + public const string toggle_multiple_16_regular = "\ued94"; + public const string toggle_multiple_20_regular = "\ued95"; + public const string toggle_multiple_24_regular = "\ued96"; + public const string toggle_right_16_regular = "\uf82a"; + public const string toggle_right_20_regular = "\uf82b"; + public const string toggle_right_24_regular = "\uf82c"; + public const string toggle_right_28_regular = "\ued97"; + public const string toggle_right_48_regular = "\ued98"; + public const string toolbox_12_regular = "\ued99"; + public const string toolbox_16_regular = "\uf82d"; + public const string toolbox_20_regular = "\uf82e"; + public const string toolbox_24_regular = "\uf82f"; + public const string toolbox_28_regular = "\uf830"; + public const string tooltip_quote_20_regular = "\uf7bb"; + public const string tooltip_quote_24_regular = "\ued9a"; + public const string top_speed_20_regular = "\ued9b"; + public const string top_speed_24_regular = "\uf831"; + public const string translate_16_regular = "\uf832"; + public const string translate_20_regular = "\uf833"; + public const string translate_24_regular = "\uf834"; + public const string translate_auto_16_regular = "\U000f01b2"; + public const string translate_auto_20_regular = "\U000f01b3"; + public const string translate_auto_24_regular = "\U000f01b4"; + public const string translate_off_16_regular = "\U000f00bd"; + public const string translate_off_20_regular = "\U000f00be"; + public const string translate_off_24_regular = "\U000f00bf"; + public const string transmission_20_regular = "\ued9c"; + public const string transmission_24_regular = "\ued9d"; + public const string transparency_square_20_regular = "\U000f061f"; + public const string transparency_square_24_regular = "\U000f0620"; + public const string tray_item_add_20_regular = "\ued9e"; + public const string tray_item_add_24_regular = "\ued9f"; + public const string tray_item_remove_20_regular = "\ueda0"; + public const string tray_item_remove_24_regular = "\ueda1"; + public const string tree_deciduous_20_regular = "\ueda2"; + public const string tree_deciduous_24_regular = "\U000f015c"; + public const string tree_deciduous_28_regular = "\U000f015d"; + public const string tree_evergreen_20_regular = "\ueda3"; + public const string triangle_12_regular = "\ueda4"; + public const string triangle_16_regular = "\ueda5"; + public const string triangle_20_regular = "\ueda6"; + public const string triangle_24_regular = "\U000f03a5"; + public const string triangle_28_regular = "\U000f03a6"; + public const string triangle_32_regular = "\ueda7"; + public const string triangle_48_regular = "\ueda8"; + public const string triangle_down_12_regular = "\ueda9"; + public const string triangle_down_16_regular = "\uedaa"; + public const string triangle_down_20_regular = "\uedab"; + public const string triangle_down_24_regular = "\U000f02f9"; + public const string triangle_down_32_regular = "\uedac"; + public const string triangle_down_48_regular = "\uedad"; + public const string triangle_left_12_regular = "\uedae"; + public const string triangle_left_16_regular = "\uedaf"; + public const string triangle_left_20_regular = "\uedb0"; + public const string triangle_left_32_regular = "\uedb1"; + public const string triangle_left_48_regular = "\uedb2"; + public const string triangle_right_12_regular = "\uedb3"; + public const string triangle_right_16_regular = "\uedb4"; + public const string triangle_right_20_regular = "\uedb5"; + public const string triangle_right_32_regular = "\uedb6"; + public const string triangle_right_48_regular = "\uedb7"; + public const string triangle_up_20_regular = "\U000f01e1"; + public const string trophy_16_regular = "\uf835"; + public const string trophy_20_regular = "\uf836"; + public const string trophy_24_regular = "\uf837"; + public const string trophy_28_regular = "\uedb8"; + public const string trophy_32_regular = "\uedb9"; + public const string trophy_48_regular = "\uedba"; + public const string trophy_lock_16_regular = "\uef2c"; + public const string trophy_lock_20_regular = "\uef2d"; + public const string trophy_lock_24_regular = "\uef2e"; + public const string trophy_lock_28_regular = "\uef2f"; + public const string trophy_lock_32_regular = "\uef30"; + public const string trophy_lock_48_regular = "\uef31"; + public const string trophy_off_16_regular = "\uedbb"; + public const string trophy_off_20_regular = "\uedbc"; + public const string trophy_off_24_regular = "\uedbd"; + public const string trophy_off_28_regular = "\uedbe"; + public const string trophy_off_32_regular = "\uedbf"; + public const string trophy_off_48_regular = "\uedc0"; + public const string tv_16_regular = "\uedc1"; + public const string tv_20_regular = "\uedc2"; + public const string tv_24_regular = "\uedc3"; + public const string tv_28_regular = "\uedc4"; + public const string tv_48_regular = "\uedc5"; + public const string tv_arrow_right_20_regular = "\uedc6"; + public const string tv_usb_16_regular = "\uedc7"; + public const string tv_usb_20_regular = "\uedc8"; + public const string tv_usb_24_regular = "\uedc9"; + public const string tv_usb_28_regular = "\uedca"; + public const string tv_usb_48_regular = "\uedcb"; + public const string umbrella_20_regular = "\uedcc"; + public const string umbrella_24_regular = "\uedcd"; + public const string uninstall_app_20_regular = "\uedce"; + public const string uninstall_app_24_regular = "\uf838"; + public const string usb_plug_20_regular = "\uedcf"; + public const string usb_plug_24_regular = "\uedd0"; + public const string usb_stick_20_regular = "\uf83f"; + public const string usb_stick_24_regular = "\uf840"; + public const string vault_16_regular = "\uf841"; + public const string vault_20_regular = "\uf842"; + public const string vault_24_regular = "\uf843"; + public const string vehicle_bicycle_16_regular = "\uedd1"; + public const string vehicle_bicycle_20_regular = "\uedd2"; + public const string vehicle_bicycle_24_regular = "\uf844"; + public const string vehicle_bus_16_regular = "\uedd3"; + public const string vehicle_bus_20_regular = "\uedd4"; + public const string vehicle_bus_24_regular = "\uf845"; + public const string vehicle_cab_16_regular = "\uedd5"; + public const string vehicle_cab_20_regular = "\uedd6"; + public const string vehicle_cab_24_regular = "\uf846"; + public const string vehicle_cab_28_regular = "\uedd7"; + public const string vehicle_cable_car_20_regular = "\U000f010b"; + public const string vehicle_cable_car_24_regular = "\U000f010c"; + public const string vehicle_cable_car_28_regular = "\U000f010d"; + public const string vehicle_car_16_regular = "\uf847"; + public const string vehicle_car_20_regular = "\uf848"; + public const string vehicle_car_24_regular = "\uf849"; + public const string vehicle_car_28_regular = "\uedd8"; + public const string vehicle_car_32_regular = "\uf05a"; + public const string vehicle_car_48_regular = "\uedd9"; + public const string vehicle_car_collision_16_regular = "\uedda"; + public const string vehicle_car_collision_20_regular = "\ueddb"; + public const string vehicle_car_collision_24_regular = "\ueddc"; + public const string vehicle_car_collision_28_regular = "\ueddd"; + public const string vehicle_car_collision_32_regular = "\uedde"; + public const string vehicle_car_collision_48_regular = "\ueddf"; + public const string vehicle_car_parking_16_regular = "\uf05b"; + public const string vehicle_car_parking_20_regular = "\uf002"; + public const string vehicle_car_parking_24_regular = "\uf003"; + public const string vehicle_car_parking_32_regular = "\uf05c"; + public const string vehicle_car_parking_48_regular = "\uf05d"; + public const string vehicle_car_profile_ltr_16_regular = "\uf7cd"; + public const string vehicle_car_profile_ltr_20_regular = "\uede0"; + public const string vehicle_car_profile_ltr_24_regular = "\uf004"; + public const string vehicle_car_profile_ltr_clock_16_regular = "\uf05e"; + public const string vehicle_car_profile_ltr_clock_20_regular = "\uf05f"; + public const string vehicle_car_profile_ltr_clock_24_regular = "\uf060"; + public const string vehicle_car_profile_rtl_16_regular = "\uf7ce"; + public const string vehicle_car_profile_rtl_20_regular = "\uede1"; + public const string vehicle_car_profile_rtl_24_regular = "\uf005"; + public const string vehicle_motorcycle_16_regular = "\U000f0642"; + public const string vehicle_motorcycle_20_regular = "\U000f0643"; + public const string vehicle_motorcycle_24_regular = "\U000f0644"; + public const string vehicle_motorcycle_28_regular = "\U000f0645"; + public const string vehicle_motorcycle_32_regular = "\U000f0646"; + public const string vehicle_motorcycle_48_regular = "\U000f0647"; + public const string vehicle_ship_16_regular = "\uede2"; + public const string vehicle_ship_20_regular = "\uede3"; + public const string vehicle_ship_24_regular = "\uede4"; + public const string vehicle_subway_16_regular = "\uede5"; + public const string vehicle_subway_20_regular = "\uede6"; + public const string vehicle_subway_24_regular = "\uede7"; + public const string vehicle_subway_clock_16_regular = "\U000f0418"; + public const string vehicle_subway_clock_20_regular = "\U000f0419"; + public const string vehicle_subway_clock_24_regular = "\U000f041a"; + public const string vehicle_tractor_20_regular = "\U000f057e"; + public const string vehicle_tractor_24_regular = "\U000f057f"; + public const string vehicle_truck_16_regular = "\uede8"; + public const string vehicle_truck_20_regular = "\uede9"; + public const string vehicle_truck_24_regular = "\uf84a"; + public const string vehicle_truck_bag_20_regular = "\uedea"; + public const string vehicle_truck_bag_24_regular = "\uedeb"; + public const string vehicle_truck_cube_20_regular = "\uedec"; + public const string vehicle_truck_cube_24_regular = "\ueded"; + public const string vehicle_truck_profile_16_regular = "\uf7ea"; + public const string vehicle_truck_profile_20_regular = "\uedee"; + public const string vehicle_truck_profile_24_regular = "\uedef"; + public const string video_16_regular = "\uf84b"; + public const string video_20_regular = "\uf84c"; + public const string video_24_regular = "\uf84d"; + public const string video_28_regular = "\uf84e"; + public const string video_32_regular = "\uedf0"; + public const string video_360_20_regular = "\uedf1"; + public const string video_360_24_regular = "\uedf2"; + public const string video_360_off_20_regular = "\uedf3"; + public const string video_48_regular = "\uedf4"; + public const string video_add_20_regular = "\uedf5"; + public const string video_add_24_regular = "\uedf6"; + public const string video_background_effect_16_regular = "\U000f00c0"; + public const string video_background_effect_20_regular = "\uedf7"; + public const string video_background_effect_24_regular = "\uf84f"; + public const string video_background_effect_28_regular = "\U000f00c1"; + public const string video_background_effect_32_regular = "\U000f00c2"; + public const string video_background_effect_48_regular = "\U000f00c3"; + public const string video_background_effect_horizontal_16_regular = "\U000f00c4"; + public const string video_background_effect_horizontal_20_regular = "\U000f00c5"; + public const string video_background_effect_horizontal_24_regular = "\U000f00c6"; + public const string video_background_effect_horizontal_28_regular = "\U000f00c7"; + public const string video_background_effect_horizontal_32_regular = "\U000f00c8"; + public const string video_background_effect_horizontal_48_regular = "\U000f00c9"; + public const string video_chat_16_regular = "\uedf8"; + public const string video_chat_20_regular = "\uedf9"; + public const string video_chat_24_regular = "\uedfa"; + public const string video_chat_28_regular = "\uedfb"; + public const string video_chat_32_regular = "\uedfc"; + public const string video_chat_48_regular = "\uedfd"; + public const string video_clip_16_regular = "\uedfe"; + public const string video_clip_20_regular = "\uedff"; + public const string video_clip_24_regular = "\uf850"; + public const string video_clip_28_regular = "\U000f00ca"; + public const string video_clip_32_regular = "\U000f00cb"; + public const string video_clip_48_regular = "\U000f00cc"; + public const string video_clip_multiple_16_regular = "\uee00"; + public const string video_clip_multiple_20_regular = "\uee01"; + public const string video_clip_multiple_24_regular = "\uee02"; + public const string video_clip_off_16_regular = "\uee03"; + public const string video_clip_off_20_regular = "\uee04"; + public const string video_clip_off_24_regular = "\uee05"; + public const string video_clip_optimize_16_regular = "\U000f041b"; + public const string video_clip_optimize_20_regular = "\U000f041c"; + public const string video_clip_optimize_24_regular = "\U000f041d"; + public const string video_clip_optimize_28_regular = "\U000f041e"; + public const string video_clip_wand_16_regular = "\U000f0548"; + public const string video_clip_wand_20_regular = "\U000f0549"; + public const string video_clip_wand_24_regular = "\U000f054a"; + public const string video_link_24_regular = "\U000f04fc"; + public const string video_link_28_regular = "\U000f04fd"; + public const string video_off_16_regular = "\U000f0520"; + public const string video_off_20_regular = "\uf851"; + public const string video_off_24_regular = "\uf852"; + public const string video_off_28_regular = "\uf853"; + public const string video_off_32_regular = "\uee06"; + public const string video_off_48_regular = "\uee07"; + public const string video_people_32_regular = "\uf061"; + public const string video_person_12_regular = "\uee08"; + public const string video_person_16_regular = "\uee09"; + public const string video_person_20_regular = "\uee0a"; + public const string video_person_24_regular = "\uf854"; + public const string video_person_28_regular = "\uee0b"; + public const string video_person_32_regular = "\uf327"; + public const string video_person_48_regular = "\uee0c"; + public const string video_person_call_16_regular = "\uee0d"; + public const string video_person_call_20_regular = "\uee0e"; + public const string video_person_call_24_regular = "\uee0f"; + public const string video_person_call_32_regular = "\uee10"; + public const string video_person_clock_16_regular = "\uf38e"; + public const string video_person_clock_20_regular = "\uf392"; + public const string video_person_clock_24_regular = "\uf3f5"; + public const string video_person_clock_28_regular = "\uf3f6"; + public const string video_person_clock_32_regular = "\uf3f7"; + public const string video_person_clock_48_regular = "\uf3f8"; + public const string video_person_off_20_regular = "\uee11"; + public const string video_person_off_24_regular = "\uf855"; + public const string video_person_pulse_16_regular = "\U000f041f"; + public const string video_person_pulse_20_regular = "\U000f0420"; + public const string video_person_pulse_24_regular = "\U000f0421"; + public const string video_person_pulse_28_regular = "\U000f0422"; + public const string video_person_sparkle_16_regular = "\uee12"; + public const string video_person_sparkle_20_regular = "\uee13"; + public const string video_person_sparkle_24_regular = "\uee14"; + public const string video_person_sparkle_28_regular = "\uee15"; + public const string video_person_sparkle_48_regular = "\uee16"; + public const string video_person_sparkle_off_20_regular = "\U000f02ca"; + public const string video_person_sparkle_off_24_regular = "\U000f02cb"; + public const string video_person_star_20_regular = "\uee17"; + public const string video_person_star_24_regular = "\uf856"; + public const string video_person_star_off_20_regular = "\uee18"; + public const string video_person_star_off_24_regular = "\uee19"; + public const string video_play_pause_20_regular = "\uee1a"; + public const string video_play_pause_24_regular = "\uf857"; + public const string video_prohibited_16_regular = "\uee1b"; + public const string video_prohibited_20_regular = "\uee1c"; + public const string video_prohibited_24_regular = "\uee1d"; + public const string video_prohibited_28_regular = "\uee1e"; + public const string video_recording_20_regular = "\uee1f"; + public const string video_security_20_regular = "\uf858"; + public const string video_security_24_regular = "\uf859"; + public const string video_switch_20_regular = "\uee20"; + public const string video_switch_24_regular = "\uf85a"; + public const string video_sync_20_regular = "\uee21"; + public const string view_desktop_20_regular = "\uf85b"; + public const string view_desktop_24_regular = "\uf85c"; + public const string view_desktop_mobile_20_regular = "\uf85d"; + public const string view_desktop_mobile_24_regular = "\uf85e"; + public const string virtual_network_20_regular = "\uee22"; + public const string virtual_network_toolbox_20_regular = "\uee23"; + public const string voicemail_16_regular = "\uf862"; + public const string voicemail_20_regular = "\uf863"; + public const string voicemail_24_regular = "\uf864"; + public const string voicemail_28_regular = "\uee24"; + public const string voicemail_32_regular = "\uf3f9"; + public const string voicemail_48_regular = "\U000f00cd"; + public const string voicemail_arrow_back_16_regular = "\uf7eb"; + public const string voicemail_arrow_back_20_regular = "\uee25"; + public const string voicemail_arrow_forward_16_regular = "\uf7ec"; + public const string voicemail_arrow_forward_20_regular = "\uee26"; + public const string voicemail_arrow_subtract_20_regular = "\uee27"; + public const string voicemail_shield_16_regular = "\U000f031f"; + public const string voicemail_shield_20_regular = "\U000f02cc"; + public const string voicemail_shield_24_regular = "\U000f02cd"; + public const string voicemail_shield_32_regular = "\U000f02ce"; + public const string voicemail_subtract_16_regular = "\uf7fc"; + public const string vote_20_regular = "\uee28"; + public const string vote_24_regular = "\uee29"; + public const string walkie_talkie_20_regular = "\uee2a"; + public const string walkie_talkie_24_regular = "\uf865"; + public const string walkie_talkie_28_regular = "\uf866"; + public const string wallet_16_regular = "\uee2b"; + public const string wallet_20_regular = "\uee2c"; + public const string wallet_24_regular = "\uee2d"; + public const string wallet_28_regular = "\uee2e"; + public const string wallet_32_regular = "\uee2f"; + public const string wallet_48_regular = "\uee30"; + public const string wallet_credit_card_16_regular = "\uee31"; + public const string wallet_credit_card_20_regular = "\uee32"; + public const string wallet_credit_card_24_regular = "\uee33"; + public const string wallet_credit_card_28_regular = "\U000f05f6"; + public const string wallet_credit_card_32_regular = "\uee34"; + public const string wallet_credit_card_48_regular = "\U000f05f7"; + public const string wallpaper_20_regular = "\uee35"; + public const string wallpaper_24_regular = "\uf867"; + public const string wand_16_regular = "\uee36"; + public const string wand_20_regular = "\uee37"; + public const string wand_24_regular = "\uee38"; + public const string wand_28_regular = "\uee39"; + public const string wand_48_regular = "\uee3a"; + public const string warning_12_regular = "\uee3b"; + public const string warning_16_regular = "\uf868"; + public const string warning_20_regular = "\uf869"; + public const string warning_24_regular = "\uf86a"; + public const string warning_28_regular = "\uee3c"; + public const string warning_32_regular = "\U000f024a"; + public const string warning_48_regular = "\U000f03cf"; + public const string warning_shield_20_regular = "\uee3d"; + public const string washer_20_regular = "\uf006"; + public const string washer_24_regular = "\uf007"; + public const string washer_32_regular = "\uf008"; + public const string washer_48_regular = "\uf009"; + public const string water_16_regular = "\uf062"; + public const string water_20_regular = "\uf063"; + public const string water_24_regular = "\uf064"; + public const string water_32_regular = "\uf065"; + public const string water_48_regular = "\uf066"; + public const string weather_blowing_snow_20_regular = "\uf86b"; + public const string weather_blowing_snow_24_regular = "\uf86c"; + public const string weather_blowing_snow_48_regular = "\uf86d"; + public const string weather_cloudy_20_regular = "\uf86e"; + public const string weather_cloudy_24_regular = "\uf86f"; + public const string weather_cloudy_48_regular = "\uf870"; + public const string weather_drizzle_20_regular = "\uee3e"; + public const string weather_drizzle_24_regular = "\uee3f"; + public const string weather_drizzle_48_regular = "\uee40"; + public const string weather_duststorm_20_regular = "\uf871"; + public const string weather_duststorm_24_regular = "\uf872"; + public const string weather_duststorm_48_regular = "\uf873"; + public const string weather_fog_20_regular = "\uf874"; + public const string weather_fog_24_regular = "\uf875"; + public const string weather_fog_48_regular = "\uf876"; + public const string weather_hail_day_20_regular = "\uf877"; + public const string weather_hail_day_24_regular = "\uf878"; + public const string weather_hail_day_48_regular = "\uf879"; + public const string weather_hail_night_20_regular = "\uf87a"; + public const string weather_hail_night_24_regular = "\uf87b"; + public const string weather_hail_night_48_regular = "\uf87c"; + public const string weather_haze_20_regular = "\uee41"; + public const string weather_haze_24_regular = "\uee42"; + public const string weather_haze_48_regular = "\uee43"; + public const string weather_moon_16_regular = "\uee44"; + public const string weather_moon_20_regular = "\uf87d"; + public const string weather_moon_24_regular = "\uf87e"; + public const string weather_moon_28_regular = "\uee45"; + public const string weather_moon_48_regular = "\uf87f"; + public const string weather_moon_off_16_regular = "\uee46"; + public const string weather_moon_off_20_regular = "\uee47"; + public const string weather_moon_off_24_regular = "\uee48"; + public const string weather_moon_off_28_regular = "\uee49"; + public const string weather_moon_off_48_regular = "\uee4a"; + public const string weather_partly_cloudy_day_16_regular = "\uee4b"; + public const string weather_partly_cloudy_day_20_regular = "\uf880"; + public const string weather_partly_cloudy_day_24_regular = "\uf881"; + public const string weather_partly_cloudy_day_48_regular = "\uf882"; + public const string weather_partly_cloudy_night_20_regular = "\uf883"; + public const string weather_partly_cloudy_night_24_regular = "\uf884"; + public const string weather_partly_cloudy_night_48_regular = "\uf885"; + public const string weather_rain_20_regular = "\uf886"; + public const string weather_rain_24_regular = "\uf887"; + public const string weather_rain_48_regular = "\uf888"; + public const string weather_rain_showers_day_20_regular = "\uf889"; + public const string weather_rain_showers_day_24_regular = "\uf88a"; + public const string weather_rain_showers_day_48_regular = "\uf88b"; + public const string weather_rain_showers_night_20_regular = "\uf88c"; + public const string weather_rain_showers_night_24_regular = "\uf88d"; + public const string weather_rain_showers_night_48_regular = "\uf88e"; + public const string weather_rain_snow_20_regular = "\uf88f"; + public const string weather_rain_snow_24_regular = "\uf890"; + public const string weather_rain_snow_48_regular = "\uf891"; + public const string weather_snow_20_regular = "\uf892"; + public const string weather_snow_24_regular = "\uf893"; + public const string weather_snow_48_regular = "\uf894"; + public const string weather_snow_shower_day_20_regular = "\uf895"; + public const string weather_snow_shower_day_24_regular = "\uf896"; + public const string weather_snow_shower_day_48_regular = "\uf897"; + public const string weather_snow_shower_night_20_regular = "\uf898"; + public const string weather_snow_shower_night_24_regular = "\uf899"; + public const string weather_snow_shower_night_48_regular = "\uf89a"; + public const string weather_snowflake_20_regular = "\uf89b"; + public const string weather_snowflake_24_regular = "\uf89c"; + public const string weather_snowflake_32_regular = "\uefd4"; + public const string weather_snowflake_48_regular = "\uf89d"; + public const string weather_squalls_20_regular = "\uf89e"; + public const string weather_squalls_24_regular = "\uf89f"; + public const string weather_squalls_48_regular = "\uf8a0"; + public const string weather_sunny_16_regular = "\uee4c"; + public const string weather_sunny_28_regular = "\uee4d"; + public const string weather_sunny_32_regular = "\uee4e"; + public const string weather_sunny_48_regular = "\uf8a3"; + public const string weather_sunny_high_20_regular = "\uee4f"; + public const string weather_sunny_high_24_regular = "\uee50"; + public const string weather_sunny_high_48_regular = "\uee51"; + public const string weather_sunny_low_20_regular = "\uee52"; + public const string weather_sunny_low_24_regular = "\uee53"; + public const string weather_sunny_low_48_regular = "\uee54"; + public const string weather_thunderstorm_20_regular = "\uf8a4"; + public const string weather_thunderstorm_24_regular = "\uf8a5"; + public const string weather_thunderstorm_48_regular = "\uf8a6"; + public const string web_asset_16_regular = "\uf3fa"; + public const string web_asset_20_regular = "\uee55"; + public const string web_asset_24_regular = "\uf8a7"; + public const string whiteboard_16_regular = "\U000f04c4"; + public const string whiteboard_20_regular = "\uf8aa"; + public const string whiteboard_24_regular = "\uf8ab"; + public const string whiteboard_48_regular = "\uee56"; + public const string whiteboard_off_16_regular = "\U000f04c5"; + public const string whiteboard_off_20_regular = "\U000f04c6"; + public const string whiteboard_off_24_regular = "\U000f04c7"; + public const string wifi_1_20_regular = "\uf8ac"; + public const string wifi_1_24_regular = "\uf8ad"; + public const string wifi_2_20_regular = "\uf8ae"; + public const string wifi_2_24_regular = "\uf8af"; + public const string wifi_3_20_regular = "\uf8b0"; + public const string wifi_3_24_regular = "\uf8b1"; + public const string wifi_4_20_regular = "\uf8b2"; + public const string wifi_4_24_regular = "\uf8b3"; + public const string wifi_lock_20_regular = "\uee57"; + public const string wifi_lock_24_regular = "\uee58"; + public const string wifi_off_20_regular = "\uee59"; + public const string wifi_off_24_regular = "\uee5a"; + public const string wifi_settings_20_regular = "\uee5b"; + public const string wifi_warning_20_regular = "\uee5c"; + public const string wifi_warning_24_regular = "\uf7fd"; + public const string window_16_regular = "\uee5d"; + public const string window_20_regular = "\uf8b5"; + public const string window_24_regular = "\uee5e"; + public const string window_28_regular = "\uee5f"; + public const string window_48_regular = "\uee61"; + public const string window_ad_20_regular = "\uf8b6"; + public const string window_ad_24_regular = "\U000f04e3"; + public const string window_ad_off_20_regular = "\uee62"; + public const string window_ad_person_20_regular = "\uee63"; + public const string window_apps_16_regular = "\uee64"; + public const string window_apps_20_regular = "\uee65"; + public const string window_apps_24_regular = "\uee66"; + public const string window_apps_28_regular = "\uee67"; + public const string window_apps_32_regular = "\uee68"; + public const string window_apps_48_regular = "\uee69"; + public const string window_arrow_up_16_regular = "\uee6a"; + public const string window_arrow_up_20_regular = "\uee6b"; + public const string window_arrow_up_24_regular = "\uee6c"; + public const string window_bullet_list_20_regular = "\uee6d"; + public const string window_bullet_list_add_20_regular = "\uee6e"; + public const string window_console_20_regular = "\uee6f"; + public const string window_database_20_regular = "\uee70"; + public const string window_database_24_regular = "\uefd5"; + public const string window_database_32_regular = "\U000f02cf"; + public const string window_dev_edit_16_regular = "\uee71"; + public const string window_dev_edit_20_regular = "\uee72"; + public const string window_dev_tools_16_regular = "\uf8b7"; + public const string window_dev_tools_20_regular = "\uf8b8"; + public const string window_dev_tools_24_regular = "\uf8b9"; + public const string window_edit_16_regular = "\uf804"; + public const string window_edit_20_regular = "\uee73"; + public const string window_fingerprint_16_regular = "\U000f054b"; + public const string window_fingerprint_20_regular = "\U000f054c"; + public const string window_fingerprint_24_regular = "\U000f054d"; + public const string window_fingerprint_28_regular = "\U000f054e"; + public const string window_fingerprint_32_regular = "\U000f054f"; + public const string window_fingerprint_48_regular = "\U000f0550"; + public const string window_header_horizontal_20_regular = "\uee74"; + public const string window_header_horizontal_off_20_regular = "\uee75"; + public const string window_header_vertical_20_regular = "\uee76"; + public const string window_inprivate_20_regular = "\uf8ba"; + public const string window_inprivate_account_20_regular = "\uf8bb"; + public const string window_location_target_20_regular = "\uee77"; + public const string window_multiple_16_regular = "\uee78"; + public const string window_multiple_20_regular = "\uf8bc"; + public const string window_multiple_swap_20_regular = "\uee79"; + public const string window_new_16_regular = "\uee7a"; + public const string window_new_20_regular = "\uf8bd"; + public const string window_new_24_regular = "\uee7b"; + public const string window_play_20_regular = "\uee7c"; + public const string window_settings_20_regular = "\uee7d"; + public const string window_shield_16_regular = "\uf8be"; + public const string window_shield_20_regular = "\uf8bf"; + public const string window_shield_24_regular = "\uf8c0"; + public const string window_text_20_regular = "\uee7e"; + public const string window_wrench_16_regular = "\uee7f"; + public const string window_wrench_20_regular = "\uee80"; + public const string window_wrench_24_regular = "\uee81"; + public const string window_wrench_28_regular = "\uee82"; + public const string window_wrench_32_regular = "\uee83"; + public const string window_wrench_48_regular = "\uee84"; + public const string wrench_16_regular = "\uee85"; + public const string wrench_20_regular = "\uee86"; + public const string wrench_24_regular = "\uf8c1"; + public const string wrench_screwdriver_20_regular = "\uee87"; + public const string wrench_screwdriver_24_regular = "\uee88"; + public const string wrench_screwdriver_32_regular = "\U000f0461"; + public const string wrench_settings_20_regular = "\U000f04e4"; + public const string wrench_settings_24_regular = "\U000f04e5"; + public const string xbox_console_20_regular = "\uf8c2"; + public const string xbox_console_24_regular = "\uf8c3"; + public const string xbox_controller_16_regular = "\ueeb7"; + public const string xbox_controller_20_regular = "\ueeb8"; + public const string xbox_controller_24_regular = "\ueeb9"; + public const string xbox_controller_28_regular = "\ueeba"; + public const string xbox_controller_32_regular = "\ueebb"; + public const string xbox_controller_48_regular = "\ueebc"; + public const string xbox_controller_error_20_regular = "\uf098"; + public const string xbox_controller_error_24_regular = "\uf099"; + public const string xbox_controller_error_32_regular = "\uf09a"; + public const string xbox_controller_error_48_regular = "\uf09b"; + public const string xray_20_regular = "\uee89"; + public const string xray_24_regular = "\uee8a"; + public const string zoom_fit_16_regular = "\uee8b"; + public const string zoom_fit_20_regular = "\uee8c"; + public const string zoom_fit_24_regular = "\uee8d"; + public const string zoom_in_16_regular = "\uee8e"; + public const string zoom_in_20_regular = "\uf8c4"; + public const string zoom_in_24_regular = "\uf8c5"; + public const string zoom_out_16_regular = "\uee8f"; + public const string zoom_out_20_regular = "\uf8c6"; + public const string zoom_out_24_regular = "\uf8c7"; + } +} \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..cd3efca13aabdc1e36e6ef1b088bec3fbf44409a GIT binary patch literal 107280 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf new file mode 100644 index 0000000000000000000000000000000000000000..24076993f880c674b571005678719cf4bd3eefed GIT binary patch literal 111164 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

    c`Y5jKO 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1b981ee1ab520412db1299de0df05882d23d3e GIT binary patch literal 93437 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt new file mode 100644 index 0000000..89dc758 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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 your 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/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg new file mode 100644 index 0000000..21dfb25 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml new file mode 100644 index 0000000..30307a5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/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/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml new file mode 100644 index 0000000..86f574d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml @@ -0,0 +1,451 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs b/Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs new file mode 100644 index 0000000..ade36fe --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs @@ -0,0 +1,21 @@ +using System.Collections.ObjectModel; + +namespace Maui_ChartTooltip +{ + public class ViewModel + { + public ObservableCollection Data { get; set; } + + public ViewModel() + { + Data = new ObservableCollection() + { + new Model(){ Country = "India", Population = 234 }, + new Model(){ Country = "United States", Population = 156 }, + new Model(){ Country = "China", Population = 280 }, + new Model(){ Country = "Australia", Population = 134 }, + new Model(){ Country = "Kuwait", Population = 80 } + }; + } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs new file mode 100644 index 0000000..65b4d62 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+ec7dc3677ebad7234d11de4c170473e302626986")] +[assembly: System.Reflection.AssemblyProductAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyTitleAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Android35.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Android21.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6cc4924 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ec9705db76e2a3065dcab3edb1145c8f2948277555f0e736ed03db085cb1e1f7 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..75a3680 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,49 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net9.0-android +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Maui_ChartTooltip +build_property.ProjectDir = D:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs new file mode 100644 index 0000000..a599ed6 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.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/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..8ad6e7a6d3a2844209956f4d8df0fcd9b7970ba2 GIT binary patch literal 111275 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..5dabde95b2dcff23481ab2d2e074f4d7ae7edfde GIT binary patch literal 61271 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 Zb1;4KytNe&WD#`{;ahL5!Q;u}{{czN)cgPd literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt new file mode 100644 index 0000000..28aeaf0 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt @@ -0,0 +1,7226 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 +int anim design_bottom_sheet_slide_in 0x7f010018 +int anim design_bottom_sheet_slide_out 0x7f010019 +int anim design_snackbar_in 0x7f01001a +int anim design_snackbar_out 0x7f01001b +int anim enterfromleft 0x7f01001c +int anim enterfromright 0x7f01001d +int anim exittoleft 0x7f01001e +int anim exittoright 0x7f01001f +int anim fragment_fast_out_extra_slow_in 0x7f010020 +int anim linear_indeterminate_line1_head_interpolator 0x7f010021 +int anim linear_indeterminate_line1_tail_interpolator 0x7f010022 +int anim linear_indeterminate_line2_head_interpolator 0x7f010023 +int anim linear_indeterminate_line2_tail_interpolator 0x7f010024 +int anim m3_bottom_sheet_slide_in 0x7f010025 +int anim m3_bottom_sheet_slide_out 0x7f010026 +int anim m3_motion_fade_enter 0x7f010027 +int anim m3_motion_fade_exit 0x7f010028 +int anim m3_side_sheet_enter_from_left 0x7f010029 +int anim m3_side_sheet_enter_from_right 0x7f01002a +int anim m3_side_sheet_exit_to_left 0x7f01002b +int anim m3_side_sheet_exit_to_right 0x7f01002c +int anim mtrl_bottom_sheet_slide_in 0x7f01002d +int anim mtrl_bottom_sheet_slide_out 0x7f01002e +int anim mtrl_card_lowers_interpolator 0x7f01002f +int anim nav_default_enter_anim 0x7f010030 +int anim nav_default_exit_anim 0x7f010031 +int anim nav_default_pop_enter_anim 0x7f010032 +int anim nav_default_pop_exit_anim 0x7f010033 +int anim nav_modal_default_enter_anim 0x7f010034 +int anim nav_modal_default_exit_anim 0x7f010035 +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator fragment_close_enter 0x7f020003 +int animator fragment_close_exit 0x7f020004 +int animator fragment_fade_enter 0x7f020005 +int animator fragment_fade_exit 0x7f020006 +int animator fragment_open_enter 0x7f020007 +int animator fragment_open_exit 0x7f020008 +int animator m3_appbar_state_list_animator 0x7f020009 +int animator m3_btn_elevated_btn_state_list_anim 0x7f02000a +int animator m3_btn_state_list_anim 0x7f02000b +int animator m3_card_elevated_state_list_anim 0x7f02000c +int animator m3_card_state_list_anim 0x7f02000d +int animator m3_chip_state_list_anim 0x7f02000e +int animator m3_elevated_chip_state_list_anim 0x7f02000f +int animator m3_extended_fab_change_size_collapse_motion_spec 0x7f020010 +int animator m3_extended_fab_change_size_expand_motion_spec 0x7f020011 +int animator m3_extended_fab_hide_motion_spec 0x7f020012 +int animator m3_extended_fab_show_motion_spec 0x7f020013 +int animator m3_extended_fab_state_list_animator 0x7f020014 +int animator mtrl_btn_state_list_anim 0x7f020015 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020016 +int animator mtrl_card_state_list_anim 0x7f020017 +int animator mtrl_chip_state_list_anim 0x7f020018 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020019 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02001a +int animator mtrl_extended_fab_hide_motion_spec 0x7f02001b +int animator mtrl_extended_fab_show_motion_spec 0x7f02001c +int animator mtrl_extended_fab_state_list_animator 0x7f02001d +int animator mtrl_fab_hide_motion_spec 0x7f02001e +int animator mtrl_fab_show_motion_spec 0x7f02001f +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020020 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020021 +int animator nav_default_enter_anim 0x7f020022 +int animator nav_default_exit_anim 0x7f020023 +int animator nav_default_pop_enter_anim 0x7f020024 +int animator nav_default_pop_exit_anim 0x7f020025 +int attr SharedValue 0x7f030000 +int attr SharedValueId 0x7f030001 +int attr action 0x7f030002 +int attr actionBarDivider 0x7f030003 +int attr actionBarItemBackground 0x7f030004 +int attr actionBarPopupTheme 0x7f030005 +int attr actionBarSize 0x7f030006 +int attr actionBarSplitStyle 0x7f030007 +int attr actionBarStyle 0x7f030008 +int attr actionBarTabBarStyle 0x7f030009 +int attr actionBarTabStyle 0x7f03000a +int attr actionBarTabTextStyle 0x7f03000b +int attr actionBarTheme 0x7f03000c +int attr actionBarWidgetTheme 0x7f03000d +int attr actionButtonStyle 0x7f03000e +int attr actionDropDownStyle 0x7f03000f +int attr actionLayout 0x7f030010 +int attr actionMenuTextAppearance 0x7f030011 +int attr actionMenuTextColor 0x7f030012 +int attr actionModeBackground 0x7f030013 +int attr actionModeCloseButtonStyle 0x7f030014 +int attr actionModeCloseContentDescription 0x7f030015 +int attr actionModeCloseDrawable 0x7f030016 +int attr actionModeCopyDrawable 0x7f030017 +int attr actionModeCutDrawable 0x7f030018 +int attr actionModeFindDrawable 0x7f030019 +int attr actionModePasteDrawable 0x7f03001a +int attr actionModePopupWindowStyle 0x7f03001b +int attr actionModeSelectAllDrawable 0x7f03001c +int attr actionModeShareDrawable 0x7f03001d +int attr actionModeSplitBackground 0x7f03001e +int attr actionModeStyle 0x7f03001f +int attr actionModeTheme 0x7f030020 +int attr actionModeWebSearchDrawable 0x7f030021 +int attr actionOverflowButtonStyle 0x7f030022 +int attr actionOverflowMenuStyle 0x7f030023 +int attr actionProviderClass 0x7f030024 +int attr actionTextColorAlpha 0x7f030025 +int attr actionViewClass 0x7f030026 +int attr activeIndicatorLabelPadding 0x7f030027 +int attr activityAction 0x7f030028 +int attr activityChooserViewStyle 0x7f030029 +int attr activityName 0x7f03002a +int attr addElevationShadow 0x7f03002b +int attr alertDialogButtonGroupStyle 0x7f03002c +int attr alertDialogCenterButtons 0x7f03002d +int attr alertDialogStyle 0x7f03002e +int attr alertDialogTheme 0x7f03002f +int attr allowStacking 0x7f030030 +int attr alpha 0x7f030031 +int attr alphabeticModifiers 0x7f030032 +int attr altSrc 0x7f030033 +int attr alwaysExpand 0x7f030034 +int attr animateCircleAngleTo 0x7f030035 +int attr animateRelativeTo 0x7f030036 +int attr animationBackgroundColor 0x7f030037 +int attr animationMode 0x7f030038 +int attr appBarLayoutStyle 0x7f030039 +int attr applyMotionScene 0x7f03003a +int attr arcMode 0x7f03003b +int attr argType 0x7f03003c +int attr arrowHeadLength 0x7f03003d +int attr arrowShaftLength 0x7f03003e +int attr attributeName 0x7f03003f +int attr autoAdjustToWithinGrandparentBounds 0x7f030040 +int attr autoCompleteMode 0x7f030041 +int attr autoCompleteTextViewStyle 0x7f030042 +int attr autoSizeMaxTextSize 0x7f030043 +int attr autoSizeMinTextSize 0x7f030044 +int attr autoSizePresetSizes 0x7f030045 +int attr autoSizeStepGranularity 0x7f030046 +int attr autoSizeTextType 0x7f030047 +int attr autoTransition 0x7f030048 +int attr background 0x7f030049 +int attr backgroundColor 0x7f03004a +int attr backgroundInsetBottom 0x7f03004b +int attr backgroundInsetEnd 0x7f03004c +int attr backgroundInsetStart 0x7f03004d +int attr backgroundInsetTop 0x7f03004e +int attr backgroundOverlayColorAlpha 0x7f03004f +int attr backgroundSplit 0x7f030050 +int attr backgroundStacked 0x7f030051 +int attr backgroundTint 0x7f030052 +int attr backgroundTintMode 0x7f030053 +int attr badgeGravity 0x7f030054 +int attr badgeHeight 0x7f030055 +int attr badgeRadius 0x7f030056 +int attr badgeShapeAppearance 0x7f030057 +int attr badgeShapeAppearanceOverlay 0x7f030058 +int attr badgeStyle 0x7f030059 +int attr badgeText 0x7f03005a +int attr badgeTextAppearance 0x7f03005b +int attr badgeTextColor 0x7f03005c +int attr badgeVerticalPadding 0x7f03005d +int attr badgeWidePadding 0x7f03005e +int attr badgeWidth 0x7f03005f +int attr badgeWithTextHeight 0x7f030060 +int attr badgeWithTextRadius 0x7f030061 +int attr badgeWithTextShapeAppearance 0x7f030062 +int attr badgeWithTextShapeAppearanceOverlay 0x7f030063 +int attr badgeWithTextWidth 0x7f030064 +int attr barLength 0x7f030065 +int attr barrierAllowsGoneWidgets 0x7f030066 +int attr barrierDirection 0x7f030067 +int attr barrierMargin 0x7f030068 +int attr behavior_autoHide 0x7f030069 +int attr behavior_autoShrink 0x7f03006a +int attr behavior_draggable 0x7f03006b +int attr behavior_expandedOffset 0x7f03006c +int attr behavior_fitToContents 0x7f03006d +int attr behavior_halfExpandedRatio 0x7f03006e +int attr behavior_hideable 0x7f03006f +int attr behavior_overlapTop 0x7f030070 +int attr behavior_peekHeight 0x7f030071 +int attr behavior_saveFlags 0x7f030072 +int attr behavior_significantVelocityThreshold 0x7f030073 +int attr behavior_skipCollapsed 0x7f030074 +int attr blendSrc 0x7f030075 +int attr borderRound 0x7f030076 +int attr borderRoundPercent 0x7f030077 +int attr borderWidth 0x7f030078 +int attr borderlessButtonStyle 0x7f030079 +int attr bottomAppBarStyle 0x7f03007a +int attr bottomInsetScrimEnabled 0x7f03007b +int attr bottomNavigationStyle 0x7f03007c +int attr bottomNavigationViewStyle 0x7f03007d +int attr bottomSheetDialogTheme 0x7f03007e +int attr bottomSheetDragHandleStyle 0x7f03007f +int attr bottomSheetStyle 0x7f030080 +int attr boxBackgroundColor 0x7f030081 +int attr boxBackgroundMode 0x7f030082 +int attr boxCollapsedPaddingTop 0x7f030083 +int attr boxCornerRadiusBottomEnd 0x7f030084 +int attr boxCornerRadiusBottomStart 0x7f030085 +int attr boxCornerRadiusTopEnd 0x7f030086 +int attr boxCornerRadiusTopStart 0x7f030087 +int attr boxStrokeColor 0x7f030088 +int attr boxStrokeErrorColor 0x7f030089 +int attr boxStrokeWidth 0x7f03008a +int attr boxStrokeWidthFocused 0x7f03008b +int attr brightness 0x7f03008c +int attr buttonBarButtonStyle 0x7f03008d +int attr buttonBarNegativeButtonStyle 0x7f03008e +int attr buttonBarNeutralButtonStyle 0x7f03008f +int attr buttonBarPositiveButtonStyle 0x7f030090 +int attr buttonBarStyle 0x7f030091 +int attr buttonCompat 0x7f030092 +int attr buttonGravity 0x7f030093 +int attr buttonIcon 0x7f030094 +int attr buttonIconDimen 0x7f030095 +int attr buttonIconTint 0x7f030096 +int attr buttonIconTintMode 0x7f030097 +int attr buttonPanelSideLayout 0x7f030098 +int attr buttonStyle 0x7f030099 +int attr buttonStyleSmall 0x7f03009a +int attr buttonTint 0x7f03009b +int attr buttonTintMode 0x7f03009c +int attr cardBackgroundColor 0x7f03009d +int attr cardCornerRadius 0x7f03009e +int attr cardElevation 0x7f03009f +int attr cardForegroundColor 0x7f0300a0 +int attr cardMaxElevation 0x7f0300a1 +int attr cardPreventCornerOverlap 0x7f0300a2 +int attr cardUseCompatPadding 0x7f0300a3 +int attr cardViewStyle 0x7f0300a4 +int attr carousel_backwardTransition 0x7f0300a5 +int attr carousel_emptyViewsBehavior 0x7f0300a6 +int attr carousel_firstView 0x7f0300a7 +int attr carousel_forwardTransition 0x7f0300a8 +int attr carousel_infinite 0x7f0300a9 +int attr carousel_nextState 0x7f0300aa +int attr carousel_previousState 0x7f0300ab +int attr carousel_touchUpMode 0x7f0300ac +int attr carousel_touchUp_dampeningFactor 0x7f0300ad +int attr carousel_touchUp_velocityThreshold 0x7f0300ae +int attr centerIfNoTextEnabled 0x7f0300af +int attr chainUseRtl 0x7f0300b0 +int attr checkMarkCompat 0x7f0300b1 +int attr checkMarkTint 0x7f0300b2 +int attr checkMarkTintMode 0x7f0300b3 +int attr checkboxStyle 0x7f0300b4 +int attr checkedButton 0x7f0300b5 +int attr checkedChip 0x7f0300b6 +int attr checkedIcon 0x7f0300b7 +int attr checkedIconEnabled 0x7f0300b8 +int attr checkedIconGravity 0x7f0300b9 +int attr checkedIconMargin 0x7f0300ba +int attr checkedIconSize 0x7f0300bb +int attr checkedIconTint 0x7f0300bc +int attr checkedIconVisible 0x7f0300bd +int attr checkedState 0x7f0300be +int attr checkedTextViewStyle 0x7f0300bf +int attr chipBackgroundColor 0x7f0300c0 +int attr chipCornerRadius 0x7f0300c1 +int attr chipEndPadding 0x7f0300c2 +int attr chipGroupStyle 0x7f0300c3 +int attr chipIcon 0x7f0300c4 +int attr chipIconEnabled 0x7f0300c5 +int attr chipIconSize 0x7f0300c6 +int attr chipIconTint 0x7f0300c7 +int attr chipIconVisible 0x7f0300c8 +int attr chipMinHeight 0x7f0300c9 +int attr chipMinTouchTargetSize 0x7f0300ca +int attr chipSpacing 0x7f0300cb +int attr chipSpacingHorizontal 0x7f0300cc +int attr chipSpacingVertical 0x7f0300cd +int attr chipStandaloneStyle 0x7f0300ce +int attr chipStartPadding 0x7f0300cf +int attr chipStrokeColor 0x7f0300d0 +int attr chipStrokeWidth 0x7f0300d1 +int attr chipStyle 0x7f0300d2 +int attr chipSurfaceColor 0x7f0300d3 +int attr circleRadius 0x7f0300d4 +int attr circularProgressIndicatorStyle 0x7f0300d5 +int attr circularflow_angles 0x7f0300d6 +int attr circularflow_defaultAngle 0x7f0300d7 +int attr circularflow_defaultRadius 0x7f0300d8 +int attr circularflow_radiusInDP 0x7f0300d9 +int attr circularflow_viewCenter 0x7f0300da +int attr clearTop 0x7f0300db +int attr clearsTag 0x7f0300dc +int attr clickAction 0x7f0300dd +int attr clockFaceBackgroundColor 0x7f0300de +int attr clockHandColor 0x7f0300df +int attr clockIcon 0x7f0300e0 +int attr clockNumberTextColor 0x7f0300e1 +int attr closeIcon 0x7f0300e2 +int attr closeIconEnabled 0x7f0300e3 +int attr closeIconEndPadding 0x7f0300e4 +int attr closeIconSize 0x7f0300e5 +int attr closeIconStartPadding 0x7f0300e6 +int attr closeIconTint 0x7f0300e7 +int attr closeIconVisible 0x7f0300e8 +int attr closeItemLayout 0x7f0300e9 +int attr collapseContentDescription 0x7f0300ea +int attr collapseIcon 0x7f0300eb +int attr collapsedSize 0x7f0300ec +int attr collapsedTitleGravity 0x7f0300ed +int attr collapsedTitleTextAppearance 0x7f0300ee +int attr collapsedTitleTextColor 0x7f0300ef +int attr collapsingToolbarLayoutLargeSize 0x7f0300f0 +int attr collapsingToolbarLayoutLargeStyle 0x7f0300f1 +int attr collapsingToolbarLayoutMediumSize 0x7f0300f2 +int attr collapsingToolbarLayoutMediumStyle 0x7f0300f3 +int attr collapsingToolbarLayoutStyle 0x7f0300f4 +int attr collectionViewStyle 0x7f0300f5 +int attr color 0x7f0300f6 +int attr colorAccent 0x7f0300f7 +int attr colorBackgroundFloating 0x7f0300f8 +int attr colorButtonNormal 0x7f0300f9 +int attr colorContainer 0x7f0300fa +int attr colorControlActivated 0x7f0300fb +int attr colorControlHighlight 0x7f0300fc +int attr colorControlNormal 0x7f0300fd +int attr colorError 0x7f0300fe +int attr colorErrorContainer 0x7f0300ff +int attr colorOnBackground 0x7f030100 +int attr colorOnContainer 0x7f030101 +int attr colorOnContainerUnchecked 0x7f030102 +int attr colorOnError 0x7f030103 +int attr colorOnErrorContainer 0x7f030104 +int attr colorOnPrimary 0x7f030105 +int attr colorOnPrimaryContainer 0x7f030106 +int attr colorOnPrimaryFixed 0x7f030107 +int attr colorOnPrimaryFixedVariant 0x7f030108 +int attr colorOnPrimarySurface 0x7f030109 +int attr colorOnSecondary 0x7f03010a +int attr colorOnSecondaryContainer 0x7f03010b +int attr colorOnSecondaryFixed 0x7f03010c +int attr colorOnSecondaryFixedVariant 0x7f03010d +int attr colorOnSurface 0x7f03010e +int attr colorOnSurfaceInverse 0x7f03010f +int attr colorOnSurfaceVariant 0x7f030110 +int attr colorOnTertiary 0x7f030111 +int attr colorOnTertiaryContainer 0x7f030112 +int attr colorOnTertiaryFixed 0x7f030113 +int attr colorOnTertiaryFixedVariant 0x7f030114 +int attr colorOutline 0x7f030115 +int attr colorOutlineVariant 0x7f030116 +int attr colorPrimary 0x7f030117 +int attr colorPrimaryContainer 0x7f030118 +int attr colorPrimaryDark 0x7f030119 +int attr colorPrimaryFixed 0x7f03011a +int attr colorPrimaryFixedDim 0x7f03011b +int attr colorPrimaryInverse 0x7f03011c +int attr colorPrimarySurface 0x7f03011d +int attr colorPrimaryVariant 0x7f03011e +int attr colorSecondary 0x7f03011f +int attr colorSecondaryContainer 0x7f030120 +int attr colorSecondaryFixed 0x7f030121 +int attr colorSecondaryFixedDim 0x7f030122 +int attr colorSecondaryVariant 0x7f030123 +int attr colorSurface 0x7f030124 +int attr colorSurfaceBright 0x7f030125 +int attr colorSurfaceContainer 0x7f030126 +int attr colorSurfaceContainerHigh 0x7f030127 +int attr colorSurfaceContainerHighest 0x7f030128 +int attr colorSurfaceContainerLow 0x7f030129 +int attr colorSurfaceContainerLowest 0x7f03012a +int attr colorSurfaceDim 0x7f03012b +int attr colorSurfaceInverse 0x7f03012c +int attr colorSurfaceVariant 0x7f03012d +int attr colorSwitchThumbNormal 0x7f03012e +int attr colorTertiary 0x7f03012f +int attr colorTertiaryContainer 0x7f030130 +int attr colorTertiaryFixed 0x7f030131 +int attr colorTertiaryFixedDim 0x7f030132 +int attr commitIcon 0x7f030133 +int attr compatShadowEnabled 0x7f030134 +int attr constraintRotate 0x7f030135 +int attr constraintSet 0x7f030136 +int attr constraintSetEnd 0x7f030137 +int attr constraintSetStart 0x7f030138 +int attr constraint_referenced_ids 0x7f030139 +int attr constraint_referenced_tags 0x7f03013a +int attr constraints 0x7f03013b +int attr content 0x7f03013c +int attr contentDescription 0x7f03013d +int attr contentInsetEnd 0x7f03013e +int attr contentInsetEndWithActions 0x7f03013f +int attr contentInsetLeft 0x7f030140 +int attr contentInsetRight 0x7f030141 +int attr contentInsetStart 0x7f030142 +int attr contentInsetStartWithNavigation 0x7f030143 +int attr contentPadding 0x7f030144 +int attr contentPaddingBottom 0x7f030145 +int attr contentPaddingEnd 0x7f030146 +int attr contentPaddingLeft 0x7f030147 +int attr contentPaddingRight 0x7f030148 +int attr contentPaddingStart 0x7f030149 +int attr contentPaddingTop 0x7f03014a +int attr contentScrim 0x7f03014b +int attr contrast 0x7f03014c +int attr controlBackground 0x7f03014d +int attr coordinatorLayoutStyle 0x7f03014e +int attr coplanarSiblingViewId 0x7f03014f +int attr cornerFamily 0x7f030150 +int attr cornerFamilyBottomLeft 0x7f030151 +int attr cornerFamilyBottomRight 0x7f030152 +int attr cornerFamilyTopLeft 0x7f030153 +int attr cornerFamilyTopRight 0x7f030154 +int attr cornerRadius 0x7f030155 +int attr cornerSize 0x7f030156 +int attr cornerSizeBottomLeft 0x7f030157 +int attr cornerSizeBottomRight 0x7f030158 +int attr cornerSizeTopLeft 0x7f030159 +int attr cornerSizeTopRight 0x7f03015a +int attr counterEnabled 0x7f03015b +int attr counterMaxLength 0x7f03015c +int attr counterOverflowTextAppearance 0x7f03015d +int attr counterOverflowTextColor 0x7f03015e +int attr counterTextAppearance 0x7f03015f +int attr counterTextColor 0x7f030160 +int attr crossfade 0x7f030161 +int attr currentState 0x7f030162 +int attr cursorColor 0x7f030163 +int attr cursorErrorColor 0x7f030164 +int attr curveFit 0x7f030165 +int attr customBoolean 0x7f030166 +int attr customColorDrawableValue 0x7f030167 +int attr customColorValue 0x7f030168 +int attr customDimension 0x7f030169 +int attr customFloatValue 0x7f03016a +int attr customIntegerValue 0x7f03016b +int attr customNavigationLayout 0x7f03016c +int attr customPixelDimension 0x7f03016d +int attr customReference 0x7f03016e +int attr customStringValue 0x7f03016f +int attr data 0x7f030170 +int attr dataPattern 0x7f030171 +int attr dayInvalidStyle 0x7f030172 +int attr daySelectedStyle 0x7f030173 +int attr dayStyle 0x7f030174 +int attr dayTodayStyle 0x7f030175 +int attr defaultDuration 0x7f030176 +int attr defaultMarginsEnabled 0x7f030177 +int attr defaultNavHost 0x7f030178 +int attr defaultQueryHint 0x7f030179 +int attr defaultScrollFlagsEnabled 0x7f03017a +int attr defaultState 0x7f03017b +int attr deltaPolarAngle 0x7f03017c +int attr deltaPolarRadius 0x7f03017d +int attr deriveConstraintsFrom 0x7f03017e +int attr destination 0x7f03017f +int attr dialogCornerRadius 0x7f030180 +int attr dialogPreferredPadding 0x7f030181 +int attr dialogTheme 0x7f030182 +int attr displayOptions 0x7f030183 +int attr divider 0x7f030184 +int attr dividerColor 0x7f030185 +int attr dividerHorizontal 0x7f030186 +int attr dividerInsetEnd 0x7f030187 +int attr dividerInsetStart 0x7f030188 +int attr dividerPadding 0x7f030189 +int attr dividerThickness 0x7f03018a +int attr dividerVertical 0x7f03018b +int attr dragDirection 0x7f03018c +int attr dragScale 0x7f03018d +int attr dragThreshold 0x7f03018e +int attr drawPath 0x7f03018f +int attr drawableBottomCompat 0x7f030190 +int attr drawableEndCompat 0x7f030191 +int attr drawableLeftCompat 0x7f030192 +int attr drawableRightCompat 0x7f030193 +int attr drawableSize 0x7f030194 +int attr drawableStartCompat 0x7f030195 +int attr drawableTint 0x7f030196 +int attr drawableTintMode 0x7f030197 +int attr drawableTopCompat 0x7f030198 +int attr drawerArrowStyle 0x7f030199 +int attr drawerLayoutCornerSize 0x7f03019a +int attr drawerLayoutStyle 0x7f03019b +int attr dropDownBackgroundTint 0x7f03019c +int attr dropDownListViewStyle 0x7f03019d +int attr dropdownListPreferredItemHeight 0x7f03019e +int attr duration 0x7f03019f +int attr dynamicColorThemeOverlay 0x7f0301a0 +int attr editTextBackground 0x7f0301a1 +int attr editTextColor 0x7f0301a2 +int attr editTextStyle 0x7f0301a3 +int attr elevation 0x7f0301a4 +int attr elevationOverlayAccentColor 0x7f0301a5 +int attr elevationOverlayColor 0x7f0301a6 +int attr elevationOverlayEnabled 0x7f0301a7 +int attr emojiCompatEnabled 0x7f0301a8 +int attr enableEdgeToEdge 0x7f0301a9 +int attr endIconCheckable 0x7f0301aa +int attr endIconContentDescription 0x7f0301ab +int attr endIconDrawable 0x7f0301ac +int attr endIconMinSize 0x7f0301ad +int attr endIconMode 0x7f0301ae +int attr endIconScaleType 0x7f0301af +int attr endIconTint 0x7f0301b0 +int attr endIconTintMode 0x7f0301b1 +int attr enforceMaterialTheme 0x7f0301b2 +int attr enforceTextAppearance 0x7f0301b3 +int attr ensureMinTouchTargetSize 0x7f0301b4 +int attr enterAnim 0x7f0301b5 +int attr errorAccessibilityLabel 0x7f0301b6 +int attr errorAccessibilityLiveRegion 0x7f0301b7 +int attr errorContentDescription 0x7f0301b8 +int attr errorEnabled 0x7f0301b9 +int attr errorIconDrawable 0x7f0301ba +int attr errorIconTint 0x7f0301bb +int attr errorIconTintMode 0x7f0301bc +int attr errorShown 0x7f0301bd +int attr errorTextAppearance 0x7f0301be +int attr errorTextColor 0x7f0301bf +int attr exitAnim 0x7f0301c0 +int attr expandActivityOverflowButtonDrawable 0x7f0301c1 +int attr expanded 0x7f0301c2 +int attr expandedHintEnabled 0x7f0301c3 +int attr expandedTitleGravity 0x7f0301c4 +int attr expandedTitleMargin 0x7f0301c5 +int attr expandedTitleMarginBottom 0x7f0301c6 +int attr expandedTitleMarginEnd 0x7f0301c7 +int attr expandedTitleMarginStart 0x7f0301c8 +int attr expandedTitleMarginTop 0x7f0301c9 +int attr expandedTitleTextAppearance 0x7f0301ca +int attr expandedTitleTextColor 0x7f0301cb +int attr extendMotionSpec 0x7f0301cc +int attr extendStrategy 0x7f0301cd +int attr extendedFloatingActionButtonPrimaryStyle 0x7f0301ce +int attr extendedFloatingActionButtonSecondaryStyle 0x7f0301cf +int attr extendedFloatingActionButtonStyle 0x7f0301d0 +int attr extendedFloatingActionButtonSurfaceStyle 0x7f0301d1 +int attr extendedFloatingActionButtonTertiaryStyle 0x7f0301d2 +int attr extraMultilineHeightEnabled 0x7f0301d3 +int attr fabAlignmentMode 0x7f0301d4 +int attr fabAlignmentModeEndMargin 0x7f0301d5 +int attr fabAnchorMode 0x7f0301d6 +int attr fabAnimationMode 0x7f0301d7 +int attr fabCradleMargin 0x7f0301d8 +int attr fabCradleRoundedCornerRadius 0x7f0301d9 +int attr fabCradleVerticalOffset 0x7f0301da +int attr fabCustomSize 0x7f0301db +int attr fabSize 0x7f0301dc +int attr fastScrollEnabled 0x7f0301dd +int attr fastScrollHorizontalThumbDrawable 0x7f0301de +int attr fastScrollHorizontalTrackDrawable 0x7f0301df +int attr fastScrollVerticalThumbDrawable 0x7f0301e0 +int attr fastScrollVerticalTrackDrawable 0x7f0301e1 +int attr finishPrimaryWithPlaceholder 0x7f0301e2 +int attr finishPrimaryWithSecondary 0x7f0301e3 +int attr finishSecondaryWithPrimary 0x7f0301e4 +int attr firstBaselineToTopHeight 0x7f0301e5 +int attr floatingActionButtonLargePrimaryStyle 0x7f0301e6 +int attr floatingActionButtonLargeSecondaryStyle 0x7f0301e7 +int attr floatingActionButtonLargeStyle 0x7f0301e8 +int attr floatingActionButtonLargeSurfaceStyle 0x7f0301e9 +int attr floatingActionButtonLargeTertiaryStyle 0x7f0301ea +int attr floatingActionButtonPrimaryStyle 0x7f0301eb +int attr floatingActionButtonSecondaryStyle 0x7f0301ec +int attr floatingActionButtonSmallPrimaryStyle 0x7f0301ed +int attr floatingActionButtonSmallSecondaryStyle 0x7f0301ee +int attr floatingActionButtonSmallStyle 0x7f0301ef +int attr floatingActionButtonSmallSurfaceStyle 0x7f0301f0 +int attr floatingActionButtonSmallTertiaryStyle 0x7f0301f1 +int attr floatingActionButtonStyle 0x7f0301f2 +int attr floatingActionButtonSurfaceStyle 0x7f0301f3 +int attr floatingActionButtonTertiaryStyle 0x7f0301f4 +int attr flow_firstHorizontalBias 0x7f0301f5 +int attr flow_firstHorizontalStyle 0x7f0301f6 +int attr flow_firstVerticalBias 0x7f0301f7 +int attr flow_firstVerticalStyle 0x7f0301f8 +int attr flow_horizontalAlign 0x7f0301f9 +int attr flow_horizontalBias 0x7f0301fa +int attr flow_horizontalGap 0x7f0301fb +int attr flow_horizontalStyle 0x7f0301fc +int attr flow_lastHorizontalBias 0x7f0301fd +int attr flow_lastHorizontalStyle 0x7f0301fe +int attr flow_lastVerticalBias 0x7f0301ff +int attr flow_lastVerticalStyle 0x7f030200 +int attr flow_maxElementsWrap 0x7f030201 +int attr flow_padding 0x7f030202 +int attr flow_verticalAlign 0x7f030203 +int attr flow_verticalBias 0x7f030204 +int attr flow_verticalGap 0x7f030205 +int attr flow_verticalStyle 0x7f030206 +int attr flow_wrapMode 0x7f030207 +int attr font 0x7f030208 +int attr fontFamily 0x7f030209 +int attr fontProviderAuthority 0x7f03020a +int attr fontProviderCerts 0x7f03020b +int attr fontProviderFetchStrategy 0x7f03020c +int attr fontProviderFetchTimeout 0x7f03020d +int attr fontProviderPackage 0x7f03020e +int attr fontProviderQuery 0x7f03020f +int attr fontProviderSystemFontFamily 0x7f030210 +int attr fontStyle 0x7f030211 +int attr fontVariationSettings 0x7f030212 +int attr fontWeight 0x7f030213 +int attr forceApplySystemWindowInsetTop 0x7f030214 +int attr forceDefaultNavigationOnClickListener 0x7f030215 +int attr foregroundInsidePadding 0x7f030216 +int attr framePosition 0x7f030217 +int attr gapBetweenBars 0x7f030218 +int attr gestureInsetBottomIgnored 0x7f030219 +int attr goIcon 0x7f03021a +int attr graph 0x7f03021b +int attr guidelineUseRtl 0x7f03021c +int attr haloColor 0x7f03021d +int attr haloRadius 0x7f03021e +int attr headerLayout 0x7f03021f +int attr height 0x7f030220 +int attr helperText 0x7f030221 +int attr helperTextEnabled 0x7f030222 +int attr helperTextTextAppearance 0x7f030223 +int attr helperTextTextColor 0x7f030224 +int attr hideAnimationBehavior 0x7f030225 +int attr hideMotionSpec 0x7f030226 +int attr hideNavigationIcon 0x7f030227 +int attr hideOnContentScroll 0x7f030228 +int attr hideOnScroll 0x7f030229 +int attr hintAnimationEnabled 0x7f03022a +int attr hintEnabled 0x7f03022b +int attr hintTextAppearance 0x7f03022c +int attr hintTextColor 0x7f03022d +int attr homeAsUpIndicator 0x7f03022e +int attr homeLayout 0x7f03022f +int attr horizontalOffset 0x7f030230 +int attr horizontalOffsetWithText 0x7f030231 +int attr hoveredFocusedTranslationZ 0x7f030232 +int attr icon 0x7f030233 +int attr iconEndPadding 0x7f030234 +int attr iconGravity 0x7f030235 +int attr iconPadding 0x7f030236 +int attr iconSize 0x7f030237 +int attr iconStartPadding 0x7f030238 +int attr iconTint 0x7f030239 +int attr iconTintMode 0x7f03023a +int attr iconifiedByDefault 0x7f03023b +int attr ifTagNotSet 0x7f03023c +int attr ifTagSet 0x7f03023d +int attr imageButtonStyle 0x7f03023e +int attr imagePanX 0x7f03023f +int attr imagePanY 0x7f030240 +int attr imageRotate 0x7f030241 +int attr imageZoom 0x7f030242 +int attr indeterminateAnimationType 0x7f030243 +int attr indeterminateProgressStyle 0x7f030244 +int attr indicatorColor 0x7f030245 +int attr indicatorDirectionCircular 0x7f030246 +int attr indicatorDirectionLinear 0x7f030247 +int attr indicatorInset 0x7f030248 +int attr indicatorSize 0x7f030249 +int attr initialActivityCount 0x7f03024a +int attr insetForeground 0x7f03024b +int attr isLightTheme 0x7f03024c +int attr isMaterial3DynamicColorApplied 0x7f03024d +int attr isMaterial3Theme 0x7f03024e +int attr isMaterialTheme 0x7f03024f +int attr itemActiveIndicatorStyle 0x7f030250 +int attr itemBackground 0x7f030251 +int attr itemFillColor 0x7f030252 +int attr itemHorizontalPadding 0x7f030253 +int attr itemHorizontalTranslationEnabled 0x7f030254 +int attr itemIconPadding 0x7f030255 +int attr itemIconSize 0x7f030256 +int attr itemIconTint 0x7f030257 +int attr itemMaxLines 0x7f030258 +int attr itemMinHeight 0x7f030259 +int attr itemPadding 0x7f03025a +int attr itemPaddingBottom 0x7f03025b +int attr itemPaddingTop 0x7f03025c +int attr itemRippleColor 0x7f03025d +int attr itemShapeAppearance 0x7f03025e +int attr itemShapeAppearanceOverlay 0x7f03025f +int attr itemShapeFillColor 0x7f030260 +int attr itemShapeInsetBottom 0x7f030261 +int attr itemShapeInsetEnd 0x7f030262 +int attr itemShapeInsetStart 0x7f030263 +int attr itemShapeInsetTop 0x7f030264 +int attr itemSpacing 0x7f030265 +int attr itemStrokeColor 0x7f030266 +int attr itemStrokeWidth 0x7f030267 +int attr itemTextAppearance 0x7f030268 +int attr itemTextAppearanceActive 0x7f030269 +int attr itemTextAppearanceActiveBoldEnabled 0x7f03026a +int attr itemTextAppearanceInactive 0x7f03026b +int attr itemTextColor 0x7f03026c +int attr itemVerticalPadding 0x7f03026d +int attr keyPositionType 0x7f03026e +int attr keyboardIcon 0x7f03026f +int attr keylines 0x7f030270 +int attr lStar 0x7f030271 +int attr labelBehavior 0x7f030272 +int attr labelStyle 0x7f030273 +int attr labelVisibilityMode 0x7f030274 +int attr largeFontVerticalOffsetAdjustment 0x7f030275 +int attr lastBaselineToBottomHeight 0x7f030276 +int attr lastItemDecorated 0x7f030277 +int attr launchSingleTop 0x7f030278 +int attr layout 0x7f030279 +int attr layoutDescription 0x7f03027a +int attr layoutDuringTransition 0x7f03027b +int attr layoutManager 0x7f03027c +int attr layout_anchor 0x7f03027d +int attr layout_anchorGravity 0x7f03027e +int attr layout_behavior 0x7f03027f +int attr layout_collapseMode 0x7f030280 +int attr layout_collapseParallaxMultiplier 0x7f030281 +int attr layout_constrainedHeight 0x7f030282 +int attr layout_constrainedWidth 0x7f030283 +int attr layout_constraintBaseline_creator 0x7f030284 +int attr layout_constraintBaseline_toBaselineOf 0x7f030285 +int attr layout_constraintBaseline_toBottomOf 0x7f030286 +int attr layout_constraintBaseline_toTopOf 0x7f030287 +int attr layout_constraintBottom_creator 0x7f030288 +int attr layout_constraintBottom_toBottomOf 0x7f030289 +int attr layout_constraintBottom_toTopOf 0x7f03028a +int attr layout_constraintCircle 0x7f03028b +int attr layout_constraintCircleAngle 0x7f03028c +int attr layout_constraintCircleRadius 0x7f03028d +int attr layout_constraintDimensionRatio 0x7f03028e +int attr layout_constraintEnd_toEndOf 0x7f03028f +int attr layout_constraintEnd_toStartOf 0x7f030290 +int attr layout_constraintGuide_begin 0x7f030291 +int attr layout_constraintGuide_end 0x7f030292 +int attr layout_constraintGuide_percent 0x7f030293 +int attr layout_constraintHeight 0x7f030294 +int attr layout_constraintHeight_default 0x7f030295 +int attr layout_constraintHeight_max 0x7f030296 +int attr layout_constraintHeight_min 0x7f030297 +int attr layout_constraintHeight_percent 0x7f030298 +int attr layout_constraintHorizontal_bias 0x7f030299 +int attr layout_constraintHorizontal_chainStyle 0x7f03029a +int attr layout_constraintHorizontal_weight 0x7f03029b +int attr layout_constraintLeft_creator 0x7f03029c +int attr layout_constraintLeft_toLeftOf 0x7f03029d +int attr layout_constraintLeft_toRightOf 0x7f03029e +int attr layout_constraintRight_creator 0x7f03029f +int attr layout_constraintRight_toLeftOf 0x7f0302a0 +int attr layout_constraintRight_toRightOf 0x7f0302a1 +int attr layout_constraintStart_toEndOf 0x7f0302a2 +int attr layout_constraintStart_toStartOf 0x7f0302a3 +int attr layout_constraintTag 0x7f0302a4 +int attr layout_constraintTop_creator 0x7f0302a5 +int attr layout_constraintTop_toBottomOf 0x7f0302a6 +int attr layout_constraintTop_toTopOf 0x7f0302a7 +int attr layout_constraintVertical_bias 0x7f0302a8 +int attr layout_constraintVertical_chainStyle 0x7f0302a9 +int attr layout_constraintVertical_weight 0x7f0302aa +int attr layout_constraintWidth 0x7f0302ab +int attr layout_constraintWidth_default 0x7f0302ac +int attr layout_constraintWidth_max 0x7f0302ad +int attr layout_constraintWidth_min 0x7f0302ae +int attr layout_constraintWidth_percent 0x7f0302af +int attr layout_dodgeInsetEdges 0x7f0302b0 +int attr layout_editor_absoluteX 0x7f0302b1 +int attr layout_editor_absoluteY 0x7f0302b2 +int attr layout_goneMarginBaseline 0x7f0302b3 +int attr layout_goneMarginBottom 0x7f0302b4 +int attr layout_goneMarginEnd 0x7f0302b5 +int attr layout_goneMarginLeft 0x7f0302b6 +int attr layout_goneMarginRight 0x7f0302b7 +int attr layout_goneMarginStart 0x7f0302b8 +int attr layout_goneMarginTop 0x7f0302b9 +int attr layout_insetEdge 0x7f0302ba +int attr layout_keyline 0x7f0302bb +int attr layout_marginBaseline 0x7f0302bc +int attr layout_optimizationLevel 0x7f0302bd +int attr layout_scrollEffect 0x7f0302be +int attr layout_scrollFlags 0x7f0302bf +int attr layout_scrollInterpolator 0x7f0302c0 +int attr layout_wrapBehaviorInParent 0x7f0302c1 +int attr liftOnScroll 0x7f0302c2 +int attr liftOnScrollColor 0x7f0302c3 +int attr liftOnScrollTargetViewId 0x7f0302c4 +int attr limitBoundsTo 0x7f0302c5 +int attr lineHeight 0x7f0302c6 +int attr lineSpacing 0x7f0302c7 +int attr linearProgressIndicatorStyle 0x7f0302c8 +int attr listChoiceBackgroundIndicator 0x7f0302c9 +int attr listChoiceIndicatorMultipleAnimated 0x7f0302ca +int attr listChoiceIndicatorSingleAnimated 0x7f0302cb +int attr listDividerAlertDialog 0x7f0302cc +int attr listItemLayout 0x7f0302cd +int attr listLayout 0x7f0302ce +int attr listMenuViewStyle 0x7f0302cf +int attr listPopupWindowStyle 0x7f0302d0 +int attr listPreferredItemHeight 0x7f0302d1 +int attr listPreferredItemHeightLarge 0x7f0302d2 +int attr listPreferredItemHeightSmall 0x7f0302d3 +int attr listPreferredItemPaddingEnd 0x7f0302d4 +int attr listPreferredItemPaddingLeft 0x7f0302d5 +int attr listPreferredItemPaddingRight 0x7f0302d6 +int attr listPreferredItemPaddingStart 0x7f0302d7 +int attr logo 0x7f0302d8 +int attr logoAdjustViewBounds 0x7f0302d9 +int attr logoDescription 0x7f0302da +int attr logoScaleType 0x7f0302db +int attr marginHorizontal 0x7f0302dc +int attr marginLeftSystemWindowInsets 0x7f0302dd +int attr marginRightSystemWindowInsets 0x7f0302de +int attr marginTopSystemWindowInsets 0x7f0302df +int attr materialAlertDialogBodyTextStyle 0x7f0302e0 +int attr materialAlertDialogButtonSpacerVisibility 0x7f0302e1 +int attr materialAlertDialogTheme 0x7f0302e2 +int attr materialAlertDialogTitleIconStyle 0x7f0302e3 +int attr materialAlertDialogTitlePanelStyle 0x7f0302e4 +int attr materialAlertDialogTitleTextStyle 0x7f0302e5 +int attr materialButtonOutlinedStyle 0x7f0302e6 +int attr materialButtonStyle 0x7f0302e7 +int attr materialButtonToggleGroupStyle 0x7f0302e8 +int attr materialCalendarDay 0x7f0302e9 +int attr materialCalendarDayOfWeekLabel 0x7f0302ea +int attr materialCalendarFullscreenTheme 0x7f0302eb +int attr materialCalendarHeaderCancelButton 0x7f0302ec +int attr materialCalendarHeaderConfirmButton 0x7f0302ed +int attr materialCalendarHeaderDivider 0x7f0302ee +int attr materialCalendarHeaderLayout 0x7f0302ef +int attr materialCalendarHeaderSelection 0x7f0302f0 +int attr materialCalendarHeaderTitle 0x7f0302f1 +int attr materialCalendarHeaderToggleButton 0x7f0302f2 +int attr materialCalendarMonth 0x7f0302f3 +int attr materialCalendarMonthNavigationButton 0x7f0302f4 +int attr materialCalendarStyle 0x7f0302f5 +int attr materialCalendarTheme 0x7f0302f6 +int attr materialCalendarYearNavigationButton 0x7f0302f7 +int attr materialCardViewElevatedStyle 0x7f0302f8 +int attr materialCardViewFilledStyle 0x7f0302f9 +int attr materialCardViewOutlinedStyle 0x7f0302fa +int attr materialCardViewStyle 0x7f0302fb +int attr materialCircleRadius 0x7f0302fc +int attr materialClockStyle 0x7f0302fd +int attr materialDisplayDividerStyle 0x7f0302fe +int attr materialIconButtonFilledStyle 0x7f0302ff +int attr materialIconButtonFilledTonalStyle 0x7f030300 +int attr materialIconButtonOutlinedStyle 0x7f030301 +int attr materialIconButtonStyle 0x7f030302 +int attr materialSearchBarStyle 0x7f030303 +int attr materialSearchViewPrefixStyle 0x7f030304 +int attr materialSearchViewStyle 0x7f030305 +int attr materialSearchViewToolbarHeight 0x7f030306 +int attr materialSearchViewToolbarStyle 0x7f030307 +int attr materialThemeOverlay 0x7f030308 +int attr materialTimePickerStyle 0x7f030309 +int attr materialTimePickerTheme 0x7f03030a +int attr materialTimePickerTitleStyle 0x7f03030b +int attr maui_edgetoedge_optout 0x7f03030c +int attr maui_splash 0x7f03030d +int attr maxAcceleration 0x7f03030e +int attr maxActionInlineWidth 0x7f03030f +int attr maxButtonHeight 0x7f030310 +int attr maxCharacterCount 0x7f030311 +int attr maxHeight 0x7f030312 +int attr maxImageSize 0x7f030313 +int attr maxLines 0x7f030314 +int attr maxNumber 0x7f030315 +int attr maxVelocity 0x7f030316 +int attr maxWidth 0x7f030317 +int attr measureWithLargestChild 0x7f030318 +int attr menu 0x7f030319 +int attr menuAlignmentMode 0x7f03031a +int attr menuGravity 0x7f03031b +int attr methodName 0x7f03031c +int attr mimeType 0x7f03031d +int attr minHeight 0x7f03031e +int attr minHideDelay 0x7f03031f +int attr minSeparation 0x7f030320 +int attr minTouchTargetSize 0x7f030321 +int attr minWidth 0x7f030322 +int attr mock_diagonalsColor 0x7f030323 +int attr mock_label 0x7f030324 +int attr mock_labelBackgroundColor 0x7f030325 +int attr mock_labelColor 0x7f030326 +int attr mock_showDiagonals 0x7f030327 +int attr mock_showLabel 0x7f030328 +int attr motionDebug 0x7f030329 +int attr motionDurationExtraLong1 0x7f03032a +int attr motionDurationExtraLong2 0x7f03032b +int attr motionDurationExtraLong3 0x7f03032c +int attr motionDurationExtraLong4 0x7f03032d +int attr motionDurationLong1 0x7f03032e +int attr motionDurationLong2 0x7f03032f +int attr motionDurationLong3 0x7f030330 +int attr motionDurationLong4 0x7f030331 +int attr motionDurationMedium1 0x7f030332 +int attr motionDurationMedium2 0x7f030333 +int attr motionDurationMedium3 0x7f030334 +int attr motionDurationMedium4 0x7f030335 +int attr motionDurationShort1 0x7f030336 +int attr motionDurationShort2 0x7f030337 +int attr motionDurationShort3 0x7f030338 +int attr motionDurationShort4 0x7f030339 +int attr motionEasingAccelerated 0x7f03033a +int attr motionEasingDecelerated 0x7f03033b +int attr motionEasingEmphasized 0x7f03033c +int attr motionEasingEmphasizedAccelerateInterpolator 0x7f03033d +int attr motionEasingEmphasizedDecelerateInterpolator 0x7f03033e +int attr motionEasingEmphasizedInterpolator 0x7f03033f +int attr motionEasingLinear 0x7f030340 +int attr motionEasingLinearInterpolator 0x7f030341 +int attr motionEasingStandard 0x7f030342 +int attr motionEasingStandardAccelerateInterpolator 0x7f030343 +int attr motionEasingStandardDecelerateInterpolator 0x7f030344 +int attr motionEasingStandardInterpolator 0x7f030345 +int attr motionEffect_alpha 0x7f030346 +int attr motionEffect_end 0x7f030347 +int attr motionEffect_move 0x7f030348 +int attr motionEffect_start 0x7f030349 +int attr motionEffect_strict 0x7f03034a +int attr motionEffect_translationX 0x7f03034b +int attr motionEffect_translationY 0x7f03034c +int attr motionEffect_viewTransition 0x7f03034d +int attr motionInterpolator 0x7f03034e +int attr motionPath 0x7f03034f +int attr motionPathRotate 0x7f030350 +int attr motionProgress 0x7f030351 +int attr motionStagger 0x7f030352 +int attr motionTarget 0x7f030353 +int attr motion_postLayoutCollision 0x7f030354 +int attr motion_triggerOnCollision 0x7f030355 +int attr moveWhenScrollAtTop 0x7f030356 +int attr multiChoiceItemLayout 0x7f030357 +int attr navGraph 0x7f030358 +int attr navigationContentDescription 0x7f030359 +int attr navigationIcon 0x7f03035a +int attr navigationIconTint 0x7f03035b +int attr navigationMode 0x7f03035c +int attr navigationRailStyle 0x7f03035d +int attr navigationViewStyle 0x7f03035e +int attr nestedScrollFlags 0x7f03035f +int attr nestedScrollViewStyle 0x7f030360 +int attr nestedScrollable 0x7f030361 +int attr nullable 0x7f030362 +int attr number 0x7f030363 +int attr numericModifiers 0x7f030364 +int attr offsetAlignmentMode 0x7f030365 +int attr onCross 0x7f030366 +int attr onHide 0x7f030367 +int attr onNegativeCross 0x7f030368 +int attr onPositiveCross 0x7f030369 +int attr onShow 0x7f03036a +int attr onStateTransition 0x7f03036b +int attr onTouchUp 0x7f03036c +int attr overlapAnchor 0x7f03036d +int attr overlay 0x7f03036e +int attr paddingBottomNoButtons 0x7f03036f +int attr paddingBottomSystemWindowInsets 0x7f030370 +int attr paddingEnd 0x7f030371 +int attr paddingLeftSystemWindowInsets 0x7f030372 +int attr paddingRightSystemWindowInsets 0x7f030373 +int attr paddingStart 0x7f030374 +int attr paddingStartSystemWindowInsets 0x7f030375 +int attr paddingTopNoTitle 0x7f030376 +int attr paddingTopSystemWindowInsets 0x7f030377 +int attr panelBackground 0x7f030378 +int attr panelMenuListTheme 0x7f030379 +int attr panelMenuListWidth 0x7f03037a +int attr passwordToggleContentDescription 0x7f03037b +int attr passwordToggleDrawable 0x7f03037c +int attr passwordToggleEnabled 0x7f03037d +int attr passwordToggleTint 0x7f03037e +int attr passwordToggleTintMode 0x7f03037f +int attr pathMotionArc 0x7f030380 +int attr path_percent 0x7f030381 +int attr percentHeight 0x7f030382 +int attr percentWidth 0x7f030383 +int attr percentX 0x7f030384 +int attr percentY 0x7f030385 +int attr perpendicularPath_percent 0x7f030386 +int attr pivotAnchor 0x7f030387 +int attr placeholderActivityName 0x7f030388 +int attr placeholderText 0x7f030389 +int attr placeholderTextAppearance 0x7f03038a +int attr placeholderTextColor 0x7f03038b +int attr placeholder_emptyVisibility 0x7f03038c +int attr polarRelativeTo 0x7f03038d +int attr popEnterAnim 0x7f03038e +int attr popExitAnim 0x7f03038f +int attr popUpTo 0x7f030390 +int attr popUpToInclusive 0x7f030391 +int attr popUpToSaveState 0x7f030392 +int attr popupMenuBackground 0x7f030393 +int attr popupMenuStyle 0x7f030394 +int attr popupTheme 0x7f030395 +int attr popupWindowStyle 0x7f030396 +int attr prefixText 0x7f030397 +int attr prefixTextAppearance 0x7f030398 +int attr prefixTextColor 0x7f030399 +int attr preserveIconSpacing 0x7f03039a +int attr pressedTranslationZ 0x7f03039b +int attr primaryActivityName 0x7f03039c +int attr progressBarPadding 0x7f03039d +int attr progressBarStyle 0x7f03039e +int attr quantizeMotionInterpolator 0x7f03039f +int attr quantizeMotionPhase 0x7f0303a0 +int attr quantizeMotionSteps 0x7f0303a1 +int attr queryBackground 0x7f0303a2 +int attr queryHint 0x7f0303a3 +int attr queryPatterns 0x7f0303a4 +int attr radioButtonStyle 0x7f0303a5 +int attr rangeFillColor 0x7f0303a6 +int attr ratingBarStyle 0x7f0303a7 +int attr ratingBarStyleIndicator 0x7f0303a8 +int attr ratingBarStyleSmall 0x7f0303a9 +int attr reactiveGuide_animateChange 0x7f0303aa +int attr reactiveGuide_applyToAllConstraintSets 0x7f0303ab +int attr reactiveGuide_applyToConstraintSet 0x7f0303ac +int attr reactiveGuide_valueId 0x7f0303ad +int attr recyclerViewStyle 0x7f0303ae +int attr region_heightLessThan 0x7f0303af +int attr region_heightMoreThan 0x7f0303b0 +int attr region_widthLessThan 0x7f0303b1 +int attr region_widthMoreThan 0x7f0303b2 +int attr removeEmbeddedFabElevation 0x7f0303b3 +int attr restoreState 0x7f0303b4 +int attr reverseLayout 0x7f0303b5 +int attr rippleColor 0x7f0303b6 +int attr rotationCenterId 0x7f0303b7 +int attr round 0x7f0303b8 +int attr roundPercent 0x7f0303b9 +int attr route 0x7f0303ba +int attr saturation 0x7f0303bb +int attr scaleFromTextSize 0x7f0303bc +int attr scrimAnimationDuration 0x7f0303bd +int attr scrimBackground 0x7f0303be +int attr scrimVisibleHeightTrigger 0x7f0303bf +int attr scrollViewStyle 0x7f0303c0 +int attr searchHintIcon 0x7f0303c1 +int attr searchIcon 0x7f0303c2 +int attr searchViewStyle 0x7f0303c3 +int attr secondaryActivityAction 0x7f0303c4 +int attr secondaryActivityName 0x7f0303c5 +int attr seekBarStyle 0x7f0303c6 +int attr selectableItemBackground 0x7f0303c7 +int attr selectableItemBackgroundBorderless 0x7f0303c8 +int attr selectionRequired 0x7f0303c9 +int attr selectorSize 0x7f0303ca +int attr setsTag 0x7f0303cb +int attr shapeAppearance 0x7f0303cc +int attr shapeAppearanceCornerExtraLarge 0x7f0303cd +int attr shapeAppearanceCornerExtraSmall 0x7f0303ce +int attr shapeAppearanceCornerLarge 0x7f0303cf +int attr shapeAppearanceCornerMedium 0x7f0303d0 +int attr shapeAppearanceCornerSmall 0x7f0303d1 +int attr shapeAppearanceLargeComponent 0x7f0303d2 +int attr shapeAppearanceMediumComponent 0x7f0303d3 +int attr shapeAppearanceOverlay 0x7f0303d4 +int attr shapeAppearanceSmallComponent 0x7f0303d5 +int attr shapeCornerFamily 0x7f0303d6 +int attr shortcutMatchRequired 0x7f0303d7 +int attr shouldRemoveExpandedCorners 0x7f0303d8 +int attr showAnimationBehavior 0x7f0303d9 +int attr showAsAction 0x7f0303da +int attr showDelay 0x7f0303db +int attr showDividers 0x7f0303dc +int attr showMotionSpec 0x7f0303dd +int attr showPaths 0x7f0303de +int attr showText 0x7f0303df +int attr showTitle 0x7f0303e0 +int attr shrinkMotionSpec 0x7f0303e1 +int attr sideSheetDialogTheme 0x7f0303e2 +int attr sideSheetModalStyle 0x7f0303e3 +int attr simpleItemLayout 0x7f0303e4 +int attr simpleItemSelectedColor 0x7f0303e5 +int attr simpleItemSelectedRippleColor 0x7f0303e6 +int attr simpleItems 0x7f0303e7 +int attr singleChoiceItemLayout 0x7f0303e8 +int attr singleLine 0x7f0303e9 +int attr singleSelection 0x7f0303ea +int attr sizePercent 0x7f0303eb +int attr sliderStyle 0x7f0303ec +int attr snackbarButtonStyle 0x7f0303ed +int attr snackbarStyle 0x7f0303ee +int attr snackbarTextViewStyle 0x7f0303ef +int attr spanCount 0x7f0303f0 +int attr spinBars 0x7f0303f1 +int attr spinnerDropDownItemStyle 0x7f0303f2 +int attr spinnerStyle 0x7f0303f3 +int attr splitLayoutDirection 0x7f0303f4 +int attr splitMaxAspectRatioInLandscape 0x7f0303f5 +int attr splitMaxAspectRatioInPortrait 0x7f0303f6 +int attr splitMinHeightDp 0x7f0303f7 +int attr splitMinSmallestWidthDp 0x7f0303f8 +int attr splitMinWidthDp 0x7f0303f9 +int attr splitRatio 0x7f0303fa +int attr splitTrack 0x7f0303fb +int attr springBoundary 0x7f0303fc +int attr springDamping 0x7f0303fd +int attr springMass 0x7f0303fe +int attr springStiffness 0x7f0303ff +int attr springStopThreshold 0x7f030400 +int attr srcCompat 0x7f030401 +int attr stackFromEnd 0x7f030402 +int attr staggered 0x7f030403 +int attr startDestination 0x7f030404 +int attr startIconCheckable 0x7f030405 +int attr startIconContentDescription 0x7f030406 +int attr startIconDrawable 0x7f030407 +int attr startIconMinSize 0x7f030408 +int attr startIconScaleType 0x7f030409 +int attr startIconTint 0x7f03040a +int attr startIconTintMode 0x7f03040b +int attr state_above_anchor 0x7f03040c +int attr state_collapsed 0x7f03040d +int attr state_collapsible 0x7f03040e +int attr state_dragged 0x7f03040f +int attr state_error 0x7f030410 +int attr state_indeterminate 0x7f030411 +int attr state_liftable 0x7f030412 +int attr state_lifted 0x7f030413 +int attr state_with_icon 0x7f030414 +int attr statusBarBackground 0x7f030415 +int attr statusBarForeground 0x7f030416 +int attr statusBarScrim 0x7f030417 +int attr stickyPlaceholder 0x7f030418 +int attr strokeColor 0x7f030419 +int attr strokeWidth 0x7f03041a +int attr subMenuArrow 0x7f03041b +int attr subheaderColor 0x7f03041c +int attr subheaderInsetEnd 0x7f03041d +int attr subheaderInsetStart 0x7f03041e +int attr subheaderTextAppearance 0x7f03041f +int attr submitBackground 0x7f030420 +int attr subtitle 0x7f030421 +int attr subtitleCentered 0x7f030422 +int attr subtitleTextAppearance 0x7f030423 +int attr subtitleTextColor 0x7f030424 +int attr subtitleTextStyle 0x7f030425 +int attr suffixText 0x7f030426 +int attr suffixTextAppearance 0x7f030427 +int attr suffixTextColor 0x7f030428 +int attr suggestionRowLayout 0x7f030429 +int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f03042a +int attr switchMinWidth 0x7f03042b +int attr switchPadding 0x7f03042c +int attr switchStyle 0x7f03042d +int attr switchTextAppearance 0x7f03042e +int attr tabBackground 0x7f03042f +int attr tabContentStart 0x7f030430 +int attr tabGravity 0x7f030431 +int attr tabIconTint 0x7f030432 +int attr tabIconTintMode 0x7f030433 +int attr tabIndicator 0x7f030434 +int attr tabIndicatorAnimationDuration 0x7f030435 +int attr tabIndicatorAnimationMode 0x7f030436 +int attr tabIndicatorColor 0x7f030437 +int attr tabIndicatorFullWidth 0x7f030438 +int attr tabIndicatorGravity 0x7f030439 +int attr tabIndicatorHeight 0x7f03043a +int attr tabInlineLabel 0x7f03043b +int attr tabMaxWidth 0x7f03043c +int attr tabMinWidth 0x7f03043d +int attr tabMode 0x7f03043e +int attr tabPadding 0x7f03043f +int attr tabPaddingBottom 0x7f030440 +int attr tabPaddingEnd 0x7f030441 +int attr tabPaddingStart 0x7f030442 +int attr tabPaddingTop 0x7f030443 +int attr tabRippleColor 0x7f030444 +int attr tabSecondaryStyle 0x7f030445 +int attr tabSelectedTextAppearance 0x7f030446 +int attr tabSelectedTextColor 0x7f030447 +int attr tabStyle 0x7f030448 +int attr tabTextAppearance 0x7f030449 +int attr tabTextColor 0x7f03044a +int attr tabUnboundedRipple 0x7f03044b +int attr tag 0x7f03044c +int attr targetId 0x7f03044d +int attr targetPackage 0x7f03044e +int attr telltales_tailColor 0x7f03044f +int attr telltales_tailScale 0x7f030450 +int attr telltales_velocityMode 0x7f030451 +int attr textAllCaps 0x7f030452 +int attr textAppearanceBody1 0x7f030453 +int attr textAppearanceBody2 0x7f030454 +int attr textAppearanceBodyLarge 0x7f030455 +int attr textAppearanceBodyMedium 0x7f030456 +int attr textAppearanceBodySmall 0x7f030457 +int attr textAppearanceButton 0x7f030458 +int attr textAppearanceCaption 0x7f030459 +int attr textAppearanceDisplayLarge 0x7f03045a +int attr textAppearanceDisplayMedium 0x7f03045b +int attr textAppearanceDisplaySmall 0x7f03045c +int attr textAppearanceHeadline1 0x7f03045d +int attr textAppearanceHeadline2 0x7f03045e +int attr textAppearanceHeadline3 0x7f03045f +int attr textAppearanceHeadline4 0x7f030460 +int attr textAppearanceHeadline5 0x7f030461 +int attr textAppearanceHeadline6 0x7f030462 +int attr textAppearanceHeadlineLarge 0x7f030463 +int attr textAppearanceHeadlineMedium 0x7f030464 +int attr textAppearanceHeadlineSmall 0x7f030465 +int attr textAppearanceLabelLarge 0x7f030466 +int attr textAppearanceLabelMedium 0x7f030467 +int attr textAppearanceLabelSmall 0x7f030468 +int attr textAppearanceLargePopupMenu 0x7f030469 +int attr textAppearanceLineHeightEnabled 0x7f03046a +int attr textAppearanceListItem 0x7f03046b +int attr textAppearanceListItemSecondary 0x7f03046c +int attr textAppearanceListItemSmall 0x7f03046d +int attr textAppearanceOverline 0x7f03046e +int attr textAppearancePopupMenuHeader 0x7f03046f +int attr textAppearanceSearchResultSubtitle 0x7f030470 +int attr textAppearanceSearchResultTitle 0x7f030471 +int attr textAppearanceSmallPopupMenu 0x7f030472 +int attr textAppearanceSubtitle1 0x7f030473 +int attr textAppearanceSubtitle2 0x7f030474 +int attr textAppearanceTitleLarge 0x7f030475 +int attr textAppearanceTitleMedium 0x7f030476 +int attr textAppearanceTitleSmall 0x7f030477 +int attr textBackground 0x7f030478 +int attr textBackgroundPanX 0x7f030479 +int attr textBackgroundPanY 0x7f03047a +int attr textBackgroundRotate 0x7f03047b +int attr textBackgroundZoom 0x7f03047c +int attr textColorAlertDialogListItem 0x7f03047d +int attr textColorSearchUrl 0x7f03047e +int attr textEndPadding 0x7f03047f +int attr textFillColor 0x7f030480 +int attr textInputFilledDenseStyle 0x7f030481 +int attr textInputFilledExposedDropdownMenuStyle 0x7f030482 +int attr textInputFilledStyle 0x7f030483 +int attr textInputLayoutFocusedRectEnabled 0x7f030484 +int attr textInputOutlinedDenseStyle 0x7f030485 +int attr textInputOutlinedExposedDropdownMenuStyle 0x7f030486 +int attr textInputOutlinedStyle 0x7f030487 +int attr textInputStyle 0x7f030488 +int attr textLocale 0x7f030489 +int attr textOutlineColor 0x7f03048a +int attr textOutlineThickness 0x7f03048b +int attr textPanX 0x7f03048c +int attr textPanY 0x7f03048d +int attr textStartPadding 0x7f03048e +int attr textureBlurFactor 0x7f03048f +int attr textureEffect 0x7f030490 +int attr textureHeight 0x7f030491 +int attr textureWidth 0x7f030492 +int attr theme 0x7f030493 +int attr thickness 0x7f030494 +int attr thumbColor 0x7f030495 +int attr thumbElevation 0x7f030496 +int attr thumbIcon 0x7f030497 +int attr thumbIconSize 0x7f030498 +int attr thumbIconTint 0x7f030499 +int attr thumbIconTintMode 0x7f03049a +int attr thumbRadius 0x7f03049b +int attr thumbStrokeColor 0x7f03049c +int attr thumbStrokeWidth 0x7f03049d +int attr thumbTextPadding 0x7f03049e +int attr thumbTint 0x7f03049f +int attr thumbTintMode 0x7f0304a0 +int attr tickColor 0x7f0304a1 +int attr tickColorActive 0x7f0304a2 +int attr tickColorInactive 0x7f0304a3 +int attr tickMark 0x7f0304a4 +int attr tickMarkTint 0x7f0304a5 +int attr tickMarkTintMode 0x7f0304a6 +int attr tickRadiusActive 0x7f0304a7 +int attr tickRadiusInactive 0x7f0304a8 +int attr tickVisible 0x7f0304a9 +int attr tint 0x7f0304aa +int attr tintMode 0x7f0304ab +int attr tintNavigationIcon 0x7f0304ac +int attr title 0x7f0304ad +int attr titleCentered 0x7f0304ae +int attr titleCollapseMode 0x7f0304af +int attr titleEnabled 0x7f0304b0 +int attr titleMargin 0x7f0304b1 +int attr titleMarginBottom 0x7f0304b2 +int attr titleMarginEnd 0x7f0304b3 +int attr titleMarginStart 0x7f0304b4 +int attr titleMarginTop 0x7f0304b5 +int attr titleMargins 0x7f0304b6 +int attr titlePositionInterpolator 0x7f0304b7 +int attr titleTextAppearance 0x7f0304b8 +int attr titleTextColor 0x7f0304b9 +int attr titleTextEllipsize 0x7f0304ba +int attr titleTextStyle 0x7f0304bb +int attr toggleCheckedStateOnClick 0x7f0304bc +int attr toolbarId 0x7f0304bd +int attr toolbarNavigationButtonStyle 0x7f0304be +int attr toolbarStyle 0x7f0304bf +int attr toolbarSurfaceStyle 0x7f0304c0 +int attr tooltipForegroundColor 0x7f0304c1 +int attr tooltipFrameBackground 0x7f0304c2 +int attr tooltipStyle 0x7f0304c3 +int attr tooltipText 0x7f0304c4 +int attr topInsetScrimEnabled 0x7f0304c5 +int attr touchAnchorId 0x7f0304c6 +int attr touchAnchorSide 0x7f0304c7 +int attr touchRegionId 0x7f0304c8 +int attr track 0x7f0304c9 +int attr trackColor 0x7f0304ca +int attr trackColorActive 0x7f0304cb +int attr trackColorInactive 0x7f0304cc +int attr trackCornerRadius 0x7f0304cd +int attr trackDecoration 0x7f0304ce +int attr trackDecorationTint 0x7f0304cf +int attr trackDecorationTintMode 0x7f0304d0 +int attr trackHeight 0x7f0304d1 +int attr trackThickness 0x7f0304d2 +int attr trackTint 0x7f0304d3 +int attr trackTintMode 0x7f0304d4 +int attr transformPivotTarget 0x7f0304d5 +int attr transitionDisable 0x7f0304d6 +int attr transitionEasing 0x7f0304d7 +int attr transitionFlags 0x7f0304d8 +int attr transitionPathRotate 0x7f0304d9 +int attr transitionShapeAppearance 0x7f0304da +int attr triggerId 0x7f0304db +int attr triggerReceiver 0x7f0304dc +int attr triggerSlack 0x7f0304dd +int attr ttcIndex 0x7f0304de +int attr upDuration 0x7f0304df +int attr uri 0x7f0304e0 +int attr useCompatPadding 0x7f0304e1 +int attr useMaterialThemeColors 0x7f0304e2 +int attr values 0x7f0304e3 +int attr verticalOffset 0x7f0304e4 +int attr verticalOffsetWithText 0x7f0304e5 +int attr viewInflaterClass 0x7f0304e6 +int attr viewTransitionMode 0x7f0304e7 +int attr viewTransitionOnCross 0x7f0304e8 +int attr viewTransitionOnNegativeCross 0x7f0304e9 +int attr viewTransitionOnPositiveCross 0x7f0304ea +int attr visibilityMode 0x7f0304eb +int attr voiceIcon 0x7f0304ec +int attr warmth 0x7f0304ed +int attr waveDecay 0x7f0304ee +int attr waveOffset 0x7f0304ef +int attr wavePeriod 0x7f0304f0 +int attr wavePhase 0x7f0304f1 +int attr waveShape 0x7f0304f2 +int attr waveVariesBy 0x7f0304f3 +int attr windowActionBar 0x7f0304f4 +int attr windowActionBarOverlay 0x7f0304f5 +int attr windowActionModeOverlay 0x7f0304f6 +int attr windowFixedHeightMajor 0x7f0304f7 +int attr windowFixedHeightMinor 0x7f0304f8 +int attr windowFixedWidthMajor 0x7f0304f9 +int attr windowFixedWidthMinor 0x7f0304fa +int attr windowMinWidthMajor 0x7f0304fb +int attr windowMinWidthMinor 0x7f0304fc +int attr windowNoTitle 0x7f0304fd +int attr yearSelectedStyle 0x7f0304fe +int attr yearStyle 0x7f0304ff +int attr yearTodayStyle 0x7f030500 +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_config_actionMenuItemAllCaps 0x7f040001 +int bool mtrl_btn_textappearance_all_caps 0x7f040002 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_decor_view_status_guard 0x7f050005 +int color abc_decor_view_status_guard_light 0x7f050006 +int color abc_hint_foreground_material_dark 0x7f050007 +int color abc_hint_foreground_material_light 0x7f050008 +int color abc_primary_text_disable_only_material_dark 0x7f050009 +int color abc_primary_text_disable_only_material_light 0x7f05000a +int color abc_primary_text_material_dark 0x7f05000b +int color abc_primary_text_material_light 0x7f05000c +int color abc_search_url_text 0x7f05000d +int color abc_search_url_text_normal 0x7f05000e +int color abc_search_url_text_pressed 0x7f05000f +int color abc_search_url_text_selected 0x7f050010 +int color abc_secondary_text_material_dark 0x7f050011 +int color abc_secondary_text_material_light 0x7f050012 +int color abc_tint_btn_checkable 0x7f050013 +int color abc_tint_default 0x7f050014 +int color abc_tint_edittext 0x7f050015 +int color abc_tint_seek_thumb 0x7f050016 +int color abc_tint_spinner 0x7f050017 +int color abc_tint_switch_track 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color androidx_core_ripple_material_light 0x7f05001b +int color androidx_core_secondary_text_default_material_light 0x7f05001c +int color background_floating_material_dark 0x7f05001d +int color background_floating_material_light 0x7f05001e +int color background_material_dark 0x7f05001f +int color background_material_light 0x7f050020 +int color bright_foreground_disabled_material_dark 0x7f050021 +int color bright_foreground_disabled_material_light 0x7f050022 +int color bright_foreground_inverse_material_dark 0x7f050023 +int color bright_foreground_inverse_material_light 0x7f050024 +int color bright_foreground_material_dark 0x7f050025 +int color bright_foreground_material_light 0x7f050026 +int color browser_actions_bg_grey 0x7f050027 +int color browser_actions_divider_color 0x7f050028 +int color browser_actions_text_color 0x7f050029 +int color browser_actions_title_color 0x7f05002a +int color button_material_dark 0x7f05002b +int color button_material_light 0x7f05002c +int color call_notification_answer_color 0x7f05002d +int color call_notification_decline_color 0x7f05002e +int color cardview_dark_background 0x7f05002f +int color cardview_light_background 0x7f050030 +int color cardview_shadow_end_color 0x7f050031 +int color cardview_shadow_start_color 0x7f050032 +int color colorAccent 0x7f050033 +int color colorActionMenuTextColor 0x7f050034 +int color colorPrimary 0x7f050035 +int color colorPrimaryDark 0x7f050036 +int color design_bottom_navigation_shadow_color 0x7f050037 +int color design_box_stroke_color 0x7f050038 +int color design_dark_default_color_background 0x7f050039 +int color design_dark_default_color_error 0x7f05003a +int color design_dark_default_color_on_background 0x7f05003b +int color design_dark_default_color_on_error 0x7f05003c +int color design_dark_default_color_on_primary 0x7f05003d +int color design_dark_default_color_on_secondary 0x7f05003e +int color design_dark_default_color_on_surface 0x7f05003f +int color design_dark_default_color_primary 0x7f050040 +int color design_dark_default_color_primary_dark 0x7f050041 +int color design_dark_default_color_primary_variant 0x7f050042 +int color design_dark_default_color_secondary 0x7f050043 +int color design_dark_default_color_secondary_variant 0x7f050044 +int color design_dark_default_color_surface 0x7f050045 +int color design_default_color_background 0x7f050046 +int color design_default_color_error 0x7f050047 +int color design_default_color_on_background 0x7f050048 +int color design_default_color_on_error 0x7f050049 +int color design_default_color_on_primary 0x7f05004a +int color design_default_color_on_secondary 0x7f05004b +int color design_default_color_on_surface 0x7f05004c +int color design_default_color_primary 0x7f05004d +int color design_default_color_primary_dark 0x7f05004e +int color design_default_color_primary_variant 0x7f05004f +int color design_default_color_secondary 0x7f050050 +int color design_default_color_secondary_variant 0x7f050051 +int color design_default_color_surface 0x7f050052 +int color design_error 0x7f050053 +int color design_fab_shadow_end_color 0x7f050054 +int color design_fab_shadow_mid_color 0x7f050055 +int color design_fab_shadow_start_color 0x7f050056 +int color design_fab_stroke_end_inner_color 0x7f050057 +int color design_fab_stroke_end_outer_color 0x7f050058 +int color design_fab_stroke_top_inner_color 0x7f050059 +int color design_fab_stroke_top_outer_color 0x7f05005a +int color design_icon_tint 0x7f05005b +int color design_snackbar_background_color 0x7f05005c +int color dim_foreground_disabled_material_dark 0x7f05005d +int color dim_foreground_disabled_material_light 0x7f05005e +int color dim_foreground_material_dark 0x7f05005f +int color dim_foreground_material_light 0x7f050060 +int color error_color_material_dark 0x7f050061 +int color error_color_material_light 0x7f050062 +int color foreground_material_dark 0x7f050063 +int color foreground_material_light 0x7f050064 +int color highlighted_text_material_dark 0x7f050065 +int color highlighted_text_material_light 0x7f050066 +int color m3_appbar_overlay_color 0x7f050067 +int color m3_assist_chip_icon_tint_color 0x7f050068 +int color m3_assist_chip_stroke_color 0x7f050069 +int color m3_bottom_sheet_drag_handle_color 0x7f05006a +int color m3_button_background_color_selector 0x7f05006b +int color m3_button_foreground_color_selector 0x7f05006c +int color m3_button_outline_color_selector 0x7f05006d +int color m3_button_ripple_color 0x7f05006e +int color m3_button_ripple_color_selector 0x7f05006f +int color m3_calendar_item_disabled_text 0x7f050070 +int color m3_calendar_item_stroke_color 0x7f050071 +int color m3_card_foreground_color 0x7f050072 +int color m3_card_ripple_color 0x7f050073 +int color m3_card_stroke_color 0x7f050074 +int color m3_checkbox_button_icon_tint 0x7f050075 +int color m3_checkbox_button_tint 0x7f050076 +int color m3_chip_assist_text_color 0x7f050077 +int color m3_chip_background_color 0x7f050078 +int color m3_chip_ripple_color 0x7f050079 +int color m3_chip_stroke_color 0x7f05007a +int color m3_chip_text_color 0x7f05007b +int color m3_dark_default_color_primary_text 0x7f05007c +int color m3_dark_default_color_secondary_text 0x7f05007d +int color m3_dark_highlighted_text 0x7f05007e +int color m3_dark_hint_foreground 0x7f05007f +int color m3_dark_primary_text_disable_only 0x7f050080 +int color m3_default_color_primary_text 0x7f050081 +int color m3_default_color_secondary_text 0x7f050082 +int color m3_dynamic_dark_default_color_primary_text 0x7f050083 +int color m3_dynamic_dark_default_color_secondary_text 0x7f050084 +int color m3_dynamic_dark_highlighted_text 0x7f050085 +int color m3_dynamic_dark_hint_foreground 0x7f050086 +int color m3_dynamic_dark_primary_text_disable_only 0x7f050087 +int color m3_dynamic_default_color_primary_text 0x7f050088 +int color m3_dynamic_default_color_secondary_text 0x7f050089 +int color m3_dynamic_highlighted_text 0x7f05008a +int color m3_dynamic_hint_foreground 0x7f05008b +int color m3_dynamic_primary_text_disable_only 0x7f05008c +int color m3_efab_ripple_color_selector 0x7f05008d +int color m3_elevated_chip_background_color 0x7f05008e +int color m3_fab_efab_background_color_selector 0x7f05008f +int color m3_fab_efab_foreground_color_selector 0x7f050090 +int color m3_fab_ripple_color_selector 0x7f050091 +int color m3_filled_icon_button_container_color_selector 0x7f050092 +int color m3_highlighted_text 0x7f050093 +int color m3_hint_foreground 0x7f050094 +int color m3_icon_button_icon_color_selector 0x7f050095 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x7f050096 +int color m3_navigation_bar_item_with_indicator_label_tint 0x7f050097 +int color m3_navigation_bar_ripple_color_selector 0x7f050098 +int color m3_navigation_item_background_color 0x7f050099 +int color m3_navigation_item_icon_tint 0x7f05009a +int color m3_navigation_item_ripple_color 0x7f05009b +int color m3_navigation_item_text_color 0x7f05009c +int color m3_navigation_rail_item_with_indicator_icon_tint 0x7f05009d +int color m3_navigation_rail_item_with_indicator_label_tint 0x7f05009e +int color m3_navigation_rail_ripple_color_selector 0x7f05009f +int color m3_popupmenu_overlay_color 0x7f0500a0 +int color m3_primary_text_disable_only 0x7f0500a1 +int color m3_radiobutton_button_tint 0x7f0500a2 +int color m3_radiobutton_ripple_tint 0x7f0500a3 +int color m3_ref_palette_black 0x7f0500a4 +int color m3_ref_palette_dynamic_neutral0 0x7f0500a5 +int color m3_ref_palette_dynamic_neutral10 0x7f0500a6 +int color m3_ref_palette_dynamic_neutral100 0x7f0500a7 +int color m3_ref_palette_dynamic_neutral12 0x7f0500a8 +int color m3_ref_palette_dynamic_neutral17 0x7f0500a9 +int color m3_ref_palette_dynamic_neutral20 0x7f0500aa +int color m3_ref_palette_dynamic_neutral22 0x7f0500ab +int color m3_ref_palette_dynamic_neutral24 0x7f0500ac +int color m3_ref_palette_dynamic_neutral30 0x7f0500ad +int color m3_ref_palette_dynamic_neutral4 0x7f0500ae +int color m3_ref_palette_dynamic_neutral40 0x7f0500af +int color m3_ref_palette_dynamic_neutral50 0x7f0500b0 +int color m3_ref_palette_dynamic_neutral6 0x7f0500b1 +int color m3_ref_palette_dynamic_neutral60 0x7f0500b2 +int color m3_ref_palette_dynamic_neutral70 0x7f0500b3 +int color m3_ref_palette_dynamic_neutral80 0x7f0500b4 +int color m3_ref_palette_dynamic_neutral87 0x7f0500b5 +int color m3_ref_palette_dynamic_neutral90 0x7f0500b6 +int color m3_ref_palette_dynamic_neutral92 0x7f0500b7 +int color m3_ref_palette_dynamic_neutral94 0x7f0500b8 +int color m3_ref_palette_dynamic_neutral95 0x7f0500b9 +int color m3_ref_palette_dynamic_neutral96 0x7f0500ba +int color m3_ref_palette_dynamic_neutral98 0x7f0500bb +int color m3_ref_palette_dynamic_neutral99 0x7f0500bc +int color m3_ref_palette_dynamic_neutral_variant0 0x7f0500bd +int color m3_ref_palette_dynamic_neutral_variant10 0x7f0500be +int color m3_ref_palette_dynamic_neutral_variant100 0x7f0500bf +int color m3_ref_palette_dynamic_neutral_variant12 0x7f0500c0 +int color m3_ref_palette_dynamic_neutral_variant17 0x7f0500c1 +int color m3_ref_palette_dynamic_neutral_variant20 0x7f0500c2 +int color m3_ref_palette_dynamic_neutral_variant22 0x7f0500c3 +int color m3_ref_palette_dynamic_neutral_variant24 0x7f0500c4 +int color m3_ref_palette_dynamic_neutral_variant30 0x7f0500c5 +int color m3_ref_palette_dynamic_neutral_variant4 0x7f0500c6 +int color m3_ref_palette_dynamic_neutral_variant40 0x7f0500c7 +int color m3_ref_palette_dynamic_neutral_variant50 0x7f0500c8 +int color m3_ref_palette_dynamic_neutral_variant6 0x7f0500c9 +int color m3_ref_palette_dynamic_neutral_variant60 0x7f0500ca +int color m3_ref_palette_dynamic_neutral_variant70 0x7f0500cb +int color m3_ref_palette_dynamic_neutral_variant80 0x7f0500cc +int color m3_ref_palette_dynamic_neutral_variant87 0x7f0500cd +int color m3_ref_palette_dynamic_neutral_variant90 0x7f0500ce +int color m3_ref_palette_dynamic_neutral_variant92 0x7f0500cf +int color m3_ref_palette_dynamic_neutral_variant94 0x7f0500d0 +int color m3_ref_palette_dynamic_neutral_variant95 0x7f0500d1 +int color m3_ref_palette_dynamic_neutral_variant96 0x7f0500d2 +int color m3_ref_palette_dynamic_neutral_variant98 0x7f0500d3 +int color m3_ref_palette_dynamic_neutral_variant99 0x7f0500d4 +int color m3_ref_palette_dynamic_primary0 0x7f0500d5 +int color m3_ref_palette_dynamic_primary10 0x7f0500d6 +int color m3_ref_palette_dynamic_primary100 0x7f0500d7 +int color m3_ref_palette_dynamic_primary20 0x7f0500d8 +int color m3_ref_palette_dynamic_primary30 0x7f0500d9 +int color m3_ref_palette_dynamic_primary40 0x7f0500da +int color m3_ref_palette_dynamic_primary50 0x7f0500db +int color m3_ref_palette_dynamic_primary60 0x7f0500dc +int color m3_ref_palette_dynamic_primary70 0x7f0500dd +int color m3_ref_palette_dynamic_primary80 0x7f0500de +int color m3_ref_palette_dynamic_primary90 0x7f0500df +int color m3_ref_palette_dynamic_primary95 0x7f0500e0 +int color m3_ref_palette_dynamic_primary99 0x7f0500e1 +int color m3_ref_palette_dynamic_secondary0 0x7f0500e2 +int color m3_ref_palette_dynamic_secondary10 0x7f0500e3 +int color m3_ref_palette_dynamic_secondary100 0x7f0500e4 +int color m3_ref_palette_dynamic_secondary20 0x7f0500e5 +int color m3_ref_palette_dynamic_secondary30 0x7f0500e6 +int color m3_ref_palette_dynamic_secondary40 0x7f0500e7 +int color m3_ref_palette_dynamic_secondary50 0x7f0500e8 +int color m3_ref_palette_dynamic_secondary60 0x7f0500e9 +int color m3_ref_palette_dynamic_secondary70 0x7f0500ea +int color m3_ref_palette_dynamic_secondary80 0x7f0500eb +int color m3_ref_palette_dynamic_secondary90 0x7f0500ec +int color m3_ref_palette_dynamic_secondary95 0x7f0500ed +int color m3_ref_palette_dynamic_secondary99 0x7f0500ee +int color m3_ref_palette_dynamic_tertiary0 0x7f0500ef +int color m3_ref_palette_dynamic_tertiary10 0x7f0500f0 +int color m3_ref_palette_dynamic_tertiary100 0x7f0500f1 +int color m3_ref_palette_dynamic_tertiary20 0x7f0500f2 +int color m3_ref_palette_dynamic_tertiary30 0x7f0500f3 +int color m3_ref_palette_dynamic_tertiary40 0x7f0500f4 +int color m3_ref_palette_dynamic_tertiary50 0x7f0500f5 +int color m3_ref_palette_dynamic_tertiary60 0x7f0500f6 +int color m3_ref_palette_dynamic_tertiary70 0x7f0500f7 +int color m3_ref_palette_dynamic_tertiary80 0x7f0500f8 +int color m3_ref_palette_dynamic_tertiary90 0x7f0500f9 +int color m3_ref_palette_dynamic_tertiary95 0x7f0500fa +int color m3_ref_palette_dynamic_tertiary99 0x7f0500fb +int color m3_ref_palette_error0 0x7f0500fc +int color m3_ref_palette_error10 0x7f0500fd +int color m3_ref_palette_error100 0x7f0500fe +int color m3_ref_palette_error20 0x7f0500ff +int color m3_ref_palette_error30 0x7f050100 +int color m3_ref_palette_error40 0x7f050101 +int color m3_ref_palette_error50 0x7f050102 +int color m3_ref_palette_error60 0x7f050103 +int color m3_ref_palette_error70 0x7f050104 +int color m3_ref_palette_error80 0x7f050105 +int color m3_ref_palette_error90 0x7f050106 +int color m3_ref_palette_error95 0x7f050107 +int color m3_ref_palette_error99 0x7f050108 +int color m3_ref_palette_neutral0 0x7f050109 +int color m3_ref_palette_neutral10 0x7f05010a +int color m3_ref_palette_neutral100 0x7f05010b +int color m3_ref_palette_neutral12 0x7f05010c +int color m3_ref_palette_neutral17 0x7f05010d +int color m3_ref_palette_neutral20 0x7f05010e +int color m3_ref_palette_neutral22 0x7f05010f +int color m3_ref_palette_neutral24 0x7f050110 +int color m3_ref_palette_neutral30 0x7f050111 +int color m3_ref_palette_neutral4 0x7f050112 +int color m3_ref_palette_neutral40 0x7f050113 +int color m3_ref_palette_neutral50 0x7f050114 +int color m3_ref_palette_neutral6 0x7f050115 +int color m3_ref_palette_neutral60 0x7f050116 +int color m3_ref_palette_neutral70 0x7f050117 +int color m3_ref_palette_neutral80 0x7f050118 +int color m3_ref_palette_neutral87 0x7f050119 +int color m3_ref_palette_neutral90 0x7f05011a +int color m3_ref_palette_neutral92 0x7f05011b +int color m3_ref_palette_neutral94 0x7f05011c +int color m3_ref_palette_neutral95 0x7f05011d +int color m3_ref_palette_neutral96 0x7f05011e +int color m3_ref_palette_neutral98 0x7f05011f +int color m3_ref_palette_neutral99 0x7f050120 +int color m3_ref_palette_neutral_variant0 0x7f050121 +int color m3_ref_palette_neutral_variant10 0x7f050122 +int color m3_ref_palette_neutral_variant100 0x7f050123 +int color m3_ref_palette_neutral_variant20 0x7f050124 +int color m3_ref_palette_neutral_variant30 0x7f050125 +int color m3_ref_palette_neutral_variant40 0x7f050126 +int color m3_ref_palette_neutral_variant50 0x7f050127 +int color m3_ref_palette_neutral_variant60 0x7f050128 +int color m3_ref_palette_neutral_variant70 0x7f050129 +int color m3_ref_palette_neutral_variant80 0x7f05012a +int color m3_ref_palette_neutral_variant90 0x7f05012b +int color m3_ref_palette_neutral_variant95 0x7f05012c +int color m3_ref_palette_neutral_variant99 0x7f05012d +int color m3_ref_palette_primary0 0x7f05012e +int color m3_ref_palette_primary10 0x7f05012f +int color m3_ref_palette_primary100 0x7f050130 +int color m3_ref_palette_primary20 0x7f050131 +int color m3_ref_palette_primary30 0x7f050132 +int color m3_ref_palette_primary40 0x7f050133 +int color m3_ref_palette_primary50 0x7f050134 +int color m3_ref_palette_primary60 0x7f050135 +int color m3_ref_palette_primary70 0x7f050136 +int color m3_ref_palette_primary80 0x7f050137 +int color m3_ref_palette_primary90 0x7f050138 +int color m3_ref_palette_primary95 0x7f050139 +int color m3_ref_palette_primary99 0x7f05013a +int color m3_ref_palette_secondary0 0x7f05013b +int color m3_ref_palette_secondary10 0x7f05013c +int color m3_ref_palette_secondary100 0x7f05013d +int color m3_ref_palette_secondary20 0x7f05013e +int color m3_ref_palette_secondary30 0x7f05013f +int color m3_ref_palette_secondary40 0x7f050140 +int color m3_ref_palette_secondary50 0x7f050141 +int color m3_ref_palette_secondary60 0x7f050142 +int color m3_ref_palette_secondary70 0x7f050143 +int color m3_ref_palette_secondary80 0x7f050144 +int color m3_ref_palette_secondary90 0x7f050145 +int color m3_ref_palette_secondary95 0x7f050146 +int color m3_ref_palette_secondary99 0x7f050147 +int color m3_ref_palette_tertiary0 0x7f050148 +int color m3_ref_palette_tertiary10 0x7f050149 +int color m3_ref_palette_tertiary100 0x7f05014a +int color m3_ref_palette_tertiary20 0x7f05014b +int color m3_ref_palette_tertiary30 0x7f05014c +int color m3_ref_palette_tertiary40 0x7f05014d +int color m3_ref_palette_tertiary50 0x7f05014e +int color m3_ref_palette_tertiary60 0x7f05014f +int color m3_ref_palette_tertiary70 0x7f050150 +int color m3_ref_palette_tertiary80 0x7f050151 +int color m3_ref_palette_tertiary90 0x7f050152 +int color m3_ref_palette_tertiary95 0x7f050153 +int color m3_ref_palette_tertiary99 0x7f050154 +int color m3_ref_palette_white 0x7f050155 +int color m3_selection_control_ripple_color_selector 0x7f050156 +int color m3_simple_item_ripple_color 0x7f050157 +int color m3_slider_active_track_color 0x7f050158 +int color m3_slider_halo_color 0x7f050159 +int color m3_slider_inactive_track_color 0x7f05015a +int color m3_slider_thumb_color 0x7f05015b +int color m3_switch_thumb_tint 0x7f05015c +int color m3_switch_track_tint 0x7f05015d +int color m3_sys_color_dark_background 0x7f05015e +int color m3_sys_color_dark_error 0x7f05015f +int color m3_sys_color_dark_error_container 0x7f050160 +int color m3_sys_color_dark_inverse_on_surface 0x7f050161 +int color m3_sys_color_dark_inverse_primary 0x7f050162 +int color m3_sys_color_dark_inverse_surface 0x7f050163 +int color m3_sys_color_dark_on_background 0x7f050164 +int color m3_sys_color_dark_on_error 0x7f050165 +int color m3_sys_color_dark_on_error_container 0x7f050166 +int color m3_sys_color_dark_on_primary 0x7f050167 +int color m3_sys_color_dark_on_primary_container 0x7f050168 +int color m3_sys_color_dark_on_secondary 0x7f050169 +int color m3_sys_color_dark_on_secondary_container 0x7f05016a +int color m3_sys_color_dark_on_surface 0x7f05016b +int color m3_sys_color_dark_on_surface_variant 0x7f05016c +int color m3_sys_color_dark_on_tertiary 0x7f05016d +int color m3_sys_color_dark_on_tertiary_container 0x7f05016e +int color m3_sys_color_dark_outline 0x7f05016f +int color m3_sys_color_dark_outline_variant 0x7f050170 +int color m3_sys_color_dark_primary 0x7f050171 +int color m3_sys_color_dark_primary_container 0x7f050172 +int color m3_sys_color_dark_secondary 0x7f050173 +int color m3_sys_color_dark_secondary_container 0x7f050174 +int color m3_sys_color_dark_surface 0x7f050175 +int color m3_sys_color_dark_surface_bright 0x7f050176 +int color m3_sys_color_dark_surface_container 0x7f050177 +int color m3_sys_color_dark_surface_container_high 0x7f050178 +int color m3_sys_color_dark_surface_container_highest 0x7f050179 +int color m3_sys_color_dark_surface_container_low 0x7f05017a +int color m3_sys_color_dark_surface_container_lowest 0x7f05017b +int color m3_sys_color_dark_surface_dim 0x7f05017c +int color m3_sys_color_dark_surface_variant 0x7f05017d +int color m3_sys_color_dark_tertiary 0x7f05017e +int color m3_sys_color_dark_tertiary_container 0x7f05017f +int color m3_sys_color_dynamic_dark_background 0x7f050180 +int color m3_sys_color_dynamic_dark_error 0x7f050181 +int color m3_sys_color_dynamic_dark_error_container 0x7f050182 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x7f050183 +int color m3_sys_color_dynamic_dark_inverse_primary 0x7f050184 +int color m3_sys_color_dynamic_dark_inverse_surface 0x7f050185 +int color m3_sys_color_dynamic_dark_on_background 0x7f050186 +int color m3_sys_color_dynamic_dark_on_error 0x7f050187 +int color m3_sys_color_dynamic_dark_on_error_container 0x7f050188 +int color m3_sys_color_dynamic_dark_on_primary 0x7f050189 +int color m3_sys_color_dynamic_dark_on_primary_container 0x7f05018a +int color m3_sys_color_dynamic_dark_on_secondary 0x7f05018b +int color m3_sys_color_dynamic_dark_on_secondary_container 0x7f05018c +int color m3_sys_color_dynamic_dark_on_surface 0x7f05018d +int color m3_sys_color_dynamic_dark_on_surface_variant 0x7f05018e +int color m3_sys_color_dynamic_dark_on_tertiary 0x7f05018f +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x7f050190 +int color m3_sys_color_dynamic_dark_outline 0x7f050191 +int color m3_sys_color_dynamic_dark_outline_variant 0x7f050192 +int color m3_sys_color_dynamic_dark_primary 0x7f050193 +int color m3_sys_color_dynamic_dark_primary_container 0x7f050194 +int color m3_sys_color_dynamic_dark_secondary 0x7f050195 +int color m3_sys_color_dynamic_dark_secondary_container 0x7f050196 +int color m3_sys_color_dynamic_dark_surface 0x7f050197 +int color m3_sys_color_dynamic_dark_surface_bright 0x7f050198 +int color m3_sys_color_dynamic_dark_surface_container 0x7f050199 +int color m3_sys_color_dynamic_dark_surface_container_high 0x7f05019a +int color m3_sys_color_dynamic_dark_surface_container_highest 0x7f05019b +int color m3_sys_color_dynamic_dark_surface_container_low 0x7f05019c +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x7f05019d +int color m3_sys_color_dynamic_dark_surface_dim 0x7f05019e +int color m3_sys_color_dynamic_dark_surface_variant 0x7f05019f +int color m3_sys_color_dynamic_dark_tertiary 0x7f0501a0 +int color m3_sys_color_dynamic_dark_tertiary_container 0x7f0501a1 +int color m3_sys_color_dynamic_light_background 0x7f0501a2 +int color m3_sys_color_dynamic_light_error 0x7f0501a3 +int color m3_sys_color_dynamic_light_error_container 0x7f0501a4 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x7f0501a5 +int color m3_sys_color_dynamic_light_inverse_primary 0x7f0501a6 +int color m3_sys_color_dynamic_light_inverse_surface 0x7f0501a7 +int color m3_sys_color_dynamic_light_on_background 0x7f0501a8 +int color m3_sys_color_dynamic_light_on_error 0x7f0501a9 +int color m3_sys_color_dynamic_light_on_error_container 0x7f0501aa +int color m3_sys_color_dynamic_light_on_primary 0x7f0501ab +int color m3_sys_color_dynamic_light_on_primary_container 0x7f0501ac +int color m3_sys_color_dynamic_light_on_secondary 0x7f0501ad +int color m3_sys_color_dynamic_light_on_secondary_container 0x7f0501ae +int color m3_sys_color_dynamic_light_on_surface 0x7f0501af +int color m3_sys_color_dynamic_light_on_surface_variant 0x7f0501b0 +int color m3_sys_color_dynamic_light_on_tertiary 0x7f0501b1 +int color m3_sys_color_dynamic_light_on_tertiary_container 0x7f0501b2 +int color m3_sys_color_dynamic_light_outline 0x7f0501b3 +int color m3_sys_color_dynamic_light_outline_variant 0x7f0501b4 +int color m3_sys_color_dynamic_light_primary 0x7f0501b5 +int color m3_sys_color_dynamic_light_primary_container 0x7f0501b6 +int color m3_sys_color_dynamic_light_secondary 0x7f0501b7 +int color m3_sys_color_dynamic_light_secondary_container 0x7f0501b8 +int color m3_sys_color_dynamic_light_surface 0x7f0501b9 +int color m3_sys_color_dynamic_light_surface_bright 0x7f0501ba +int color m3_sys_color_dynamic_light_surface_container 0x7f0501bb +int color m3_sys_color_dynamic_light_surface_container_high 0x7f0501bc +int color m3_sys_color_dynamic_light_surface_container_highest 0x7f0501bd +int color m3_sys_color_dynamic_light_surface_container_low 0x7f0501be +int color m3_sys_color_dynamic_light_surface_container_lowest 0x7f0501bf +int color m3_sys_color_dynamic_light_surface_dim 0x7f0501c0 +int color m3_sys_color_dynamic_light_surface_variant 0x7f0501c1 +int color m3_sys_color_dynamic_light_tertiary 0x7f0501c2 +int color m3_sys_color_dynamic_light_tertiary_container 0x7f0501c3 +int color m3_sys_color_dynamic_on_primary_fixed 0x7f0501c4 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x7f0501c5 +int color m3_sys_color_dynamic_on_secondary_fixed 0x7f0501c6 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x7f0501c7 +int color m3_sys_color_dynamic_on_tertiary_fixed 0x7f0501c8 +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x7f0501c9 +int color m3_sys_color_dynamic_primary_fixed 0x7f0501ca +int color m3_sys_color_dynamic_primary_fixed_dim 0x7f0501cb +int color m3_sys_color_dynamic_secondary_fixed 0x7f0501cc +int color m3_sys_color_dynamic_secondary_fixed_dim 0x7f0501cd +int color m3_sys_color_dynamic_tertiary_fixed 0x7f0501ce +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x7f0501cf +int color m3_sys_color_light_background 0x7f0501d0 +int color m3_sys_color_light_error 0x7f0501d1 +int color m3_sys_color_light_error_container 0x7f0501d2 +int color m3_sys_color_light_inverse_on_surface 0x7f0501d3 +int color m3_sys_color_light_inverse_primary 0x7f0501d4 +int color m3_sys_color_light_inverse_surface 0x7f0501d5 +int color m3_sys_color_light_on_background 0x7f0501d6 +int color m3_sys_color_light_on_error 0x7f0501d7 +int color m3_sys_color_light_on_error_container 0x7f0501d8 +int color m3_sys_color_light_on_primary 0x7f0501d9 +int color m3_sys_color_light_on_primary_container 0x7f0501da +int color m3_sys_color_light_on_secondary 0x7f0501db +int color m3_sys_color_light_on_secondary_container 0x7f0501dc +int color m3_sys_color_light_on_surface 0x7f0501dd +int color m3_sys_color_light_on_surface_variant 0x7f0501de +int color m3_sys_color_light_on_tertiary 0x7f0501df +int color m3_sys_color_light_on_tertiary_container 0x7f0501e0 +int color m3_sys_color_light_outline 0x7f0501e1 +int color m3_sys_color_light_outline_variant 0x7f0501e2 +int color m3_sys_color_light_primary 0x7f0501e3 +int color m3_sys_color_light_primary_container 0x7f0501e4 +int color m3_sys_color_light_secondary 0x7f0501e5 +int color m3_sys_color_light_secondary_container 0x7f0501e6 +int color m3_sys_color_light_surface 0x7f0501e7 +int color m3_sys_color_light_surface_bright 0x7f0501e8 +int color m3_sys_color_light_surface_container 0x7f0501e9 +int color m3_sys_color_light_surface_container_high 0x7f0501ea +int color m3_sys_color_light_surface_container_highest 0x7f0501eb +int color m3_sys_color_light_surface_container_low 0x7f0501ec +int color m3_sys_color_light_surface_container_lowest 0x7f0501ed +int color m3_sys_color_light_surface_dim 0x7f0501ee +int color m3_sys_color_light_surface_variant 0x7f0501ef +int color m3_sys_color_light_tertiary 0x7f0501f0 +int color m3_sys_color_light_tertiary_container 0x7f0501f1 +int color m3_sys_color_on_primary_fixed 0x7f0501f2 +int color m3_sys_color_on_primary_fixed_variant 0x7f0501f3 +int color m3_sys_color_on_secondary_fixed 0x7f0501f4 +int color m3_sys_color_on_secondary_fixed_variant 0x7f0501f5 +int color m3_sys_color_on_tertiary_fixed 0x7f0501f6 +int color m3_sys_color_on_tertiary_fixed_variant 0x7f0501f7 +int color m3_sys_color_primary_fixed 0x7f0501f8 +int color m3_sys_color_primary_fixed_dim 0x7f0501f9 +int color m3_sys_color_secondary_fixed 0x7f0501fa +int color m3_sys_color_secondary_fixed_dim 0x7f0501fb +int color m3_sys_color_tertiary_fixed 0x7f0501fc +int color m3_sys_color_tertiary_fixed_dim 0x7f0501fd +int color m3_tabs_icon_color 0x7f0501fe +int color m3_tabs_icon_color_secondary 0x7f0501ff +int color m3_tabs_ripple_color 0x7f050200 +int color m3_tabs_ripple_color_secondary 0x7f050201 +int color m3_tabs_text_color 0x7f050202 +int color m3_tabs_text_color_secondary 0x7f050203 +int color m3_text_button_background_color_selector 0x7f050204 +int color m3_text_button_foreground_color_selector 0x7f050205 +int color m3_text_button_ripple_color_selector 0x7f050206 +int color m3_textfield_filled_background_color 0x7f050207 +int color m3_textfield_indicator_text_color 0x7f050208 +int color m3_textfield_input_text_color 0x7f050209 +int color m3_textfield_label_color 0x7f05020a +int color m3_textfield_stroke_color 0x7f05020b +int color m3_timepicker_button_background_color 0x7f05020c +int color m3_timepicker_button_ripple_color 0x7f05020d +int color m3_timepicker_button_text_color 0x7f05020e +int color m3_timepicker_clock_text_color 0x7f05020f +int color m3_timepicker_display_background_color 0x7f050210 +int color m3_timepicker_display_ripple_color 0x7f050211 +int color m3_timepicker_display_text_color 0x7f050212 +int color m3_timepicker_secondary_text_button_ripple_color 0x7f050213 +int color m3_timepicker_secondary_text_button_text_color 0x7f050214 +int color m3_timepicker_time_input_stroke_color 0x7f050215 +int color m3_tonal_button_ripple_color_selector 0x7f050216 +int color material_blue_grey_800 0x7f050217 +int color material_blue_grey_900 0x7f050218 +int color material_blue_grey_950 0x7f050219 +int color material_cursor_color 0x7f05021a +int color material_deep_teal_200 0x7f05021b +int color material_deep_teal_500 0x7f05021c +int color material_divider_color 0x7f05021d +int color material_dynamic_color_dark_error 0x7f05021e +int color material_dynamic_color_dark_error_container 0x7f05021f +int color material_dynamic_color_dark_on_error 0x7f050220 +int color material_dynamic_color_dark_on_error_container 0x7f050221 +int color material_dynamic_color_light_error 0x7f050222 +int color material_dynamic_color_light_error_container 0x7f050223 +int color material_dynamic_color_light_on_error 0x7f050224 +int color material_dynamic_color_light_on_error_container 0x7f050225 +int color material_dynamic_neutral0 0x7f050226 +int color material_dynamic_neutral10 0x7f050227 +int color material_dynamic_neutral100 0x7f050228 +int color material_dynamic_neutral20 0x7f050229 +int color material_dynamic_neutral30 0x7f05022a +int color material_dynamic_neutral40 0x7f05022b +int color material_dynamic_neutral50 0x7f05022c +int color material_dynamic_neutral60 0x7f05022d +int color material_dynamic_neutral70 0x7f05022e +int color material_dynamic_neutral80 0x7f05022f +int color material_dynamic_neutral90 0x7f050230 +int color material_dynamic_neutral95 0x7f050231 +int color material_dynamic_neutral99 0x7f050232 +int color material_dynamic_neutral_variant0 0x7f050233 +int color material_dynamic_neutral_variant10 0x7f050234 +int color material_dynamic_neutral_variant100 0x7f050235 +int color material_dynamic_neutral_variant20 0x7f050236 +int color material_dynamic_neutral_variant30 0x7f050237 +int color material_dynamic_neutral_variant40 0x7f050238 +int color material_dynamic_neutral_variant50 0x7f050239 +int color material_dynamic_neutral_variant60 0x7f05023a +int color material_dynamic_neutral_variant70 0x7f05023b +int color material_dynamic_neutral_variant80 0x7f05023c +int color material_dynamic_neutral_variant90 0x7f05023d +int color material_dynamic_neutral_variant95 0x7f05023e +int color material_dynamic_neutral_variant99 0x7f05023f +int color material_dynamic_primary0 0x7f050240 +int color material_dynamic_primary10 0x7f050241 +int color material_dynamic_primary100 0x7f050242 +int color material_dynamic_primary20 0x7f050243 +int color material_dynamic_primary30 0x7f050244 +int color material_dynamic_primary40 0x7f050245 +int color material_dynamic_primary50 0x7f050246 +int color material_dynamic_primary60 0x7f050247 +int color material_dynamic_primary70 0x7f050248 +int color material_dynamic_primary80 0x7f050249 +int color material_dynamic_primary90 0x7f05024a +int color material_dynamic_primary95 0x7f05024b +int color material_dynamic_primary99 0x7f05024c +int color material_dynamic_secondary0 0x7f05024d +int color material_dynamic_secondary10 0x7f05024e +int color material_dynamic_secondary100 0x7f05024f +int color material_dynamic_secondary20 0x7f050250 +int color material_dynamic_secondary30 0x7f050251 +int color material_dynamic_secondary40 0x7f050252 +int color material_dynamic_secondary50 0x7f050253 +int color material_dynamic_secondary60 0x7f050254 +int color material_dynamic_secondary70 0x7f050255 +int color material_dynamic_secondary80 0x7f050256 +int color material_dynamic_secondary90 0x7f050257 +int color material_dynamic_secondary95 0x7f050258 +int color material_dynamic_secondary99 0x7f050259 +int color material_dynamic_tertiary0 0x7f05025a +int color material_dynamic_tertiary10 0x7f05025b +int color material_dynamic_tertiary100 0x7f05025c +int color material_dynamic_tertiary20 0x7f05025d +int color material_dynamic_tertiary30 0x7f05025e +int color material_dynamic_tertiary40 0x7f05025f +int color material_dynamic_tertiary50 0x7f050260 +int color material_dynamic_tertiary60 0x7f050261 +int color material_dynamic_tertiary70 0x7f050262 +int color material_dynamic_tertiary80 0x7f050263 +int color material_dynamic_tertiary90 0x7f050264 +int color material_dynamic_tertiary95 0x7f050265 +int color material_dynamic_tertiary99 0x7f050266 +int color material_grey_100 0x7f050267 +int color material_grey_300 0x7f050268 +int color material_grey_50 0x7f050269 +int color material_grey_600 0x7f05026a +int color material_grey_800 0x7f05026b +int color material_grey_850 0x7f05026c +int color material_grey_900 0x7f05026d +int color material_harmonized_color_error 0x7f05026e +int color material_harmonized_color_error_container 0x7f05026f +int color material_harmonized_color_on_error 0x7f050270 +int color material_harmonized_color_on_error_container 0x7f050271 +int color material_on_background_disabled 0x7f050272 +int color material_on_background_emphasis_high_type 0x7f050273 +int color material_on_background_emphasis_medium 0x7f050274 +int color material_on_primary_disabled 0x7f050275 +int color material_on_primary_emphasis_high_type 0x7f050276 +int color material_on_primary_emphasis_medium 0x7f050277 +int color material_on_surface_disabled 0x7f050278 +int color material_on_surface_emphasis_high_type 0x7f050279 +int color material_on_surface_emphasis_medium 0x7f05027a +int color material_on_surface_stroke 0x7f05027b +int color material_personalized__highlighted_text 0x7f05027c +int color material_personalized__highlighted_text_inverse 0x7f05027d +int color material_personalized_color_background 0x7f05027e +int color material_personalized_color_control_activated 0x7f05027f +int color material_personalized_color_control_highlight 0x7f050280 +int color material_personalized_color_control_normal 0x7f050281 +int color material_personalized_color_error 0x7f050282 +int color material_personalized_color_error_container 0x7f050283 +int color material_personalized_color_on_background 0x7f050284 +int color material_personalized_color_on_error 0x7f050285 +int color material_personalized_color_on_error_container 0x7f050286 +int color material_personalized_color_on_primary 0x7f050287 +int color material_personalized_color_on_primary_container 0x7f050288 +int color material_personalized_color_on_secondary 0x7f050289 +int color material_personalized_color_on_secondary_container 0x7f05028a +int color material_personalized_color_on_surface 0x7f05028b +int color material_personalized_color_on_surface_inverse 0x7f05028c +int color material_personalized_color_on_surface_variant 0x7f05028d +int color material_personalized_color_on_tertiary 0x7f05028e +int color material_personalized_color_on_tertiary_container 0x7f05028f +int color material_personalized_color_outline 0x7f050290 +int color material_personalized_color_outline_variant 0x7f050291 +int color material_personalized_color_primary 0x7f050292 +int color material_personalized_color_primary_container 0x7f050293 +int color material_personalized_color_primary_inverse 0x7f050294 +int color material_personalized_color_primary_text 0x7f050295 +int color material_personalized_color_primary_text_inverse 0x7f050296 +int color material_personalized_color_secondary 0x7f050297 +int color material_personalized_color_secondary_container 0x7f050298 +int color material_personalized_color_secondary_text 0x7f050299 +int color material_personalized_color_secondary_text_inverse 0x7f05029a +int color material_personalized_color_surface 0x7f05029b +int color material_personalized_color_surface_bright 0x7f05029c +int color material_personalized_color_surface_container 0x7f05029d +int color material_personalized_color_surface_container_high 0x7f05029e +int color material_personalized_color_surface_container_highest 0x7f05029f +int color material_personalized_color_surface_container_low 0x7f0502a0 +int color material_personalized_color_surface_container_lowest 0x7f0502a1 +int color material_personalized_color_surface_dim 0x7f0502a2 +int color material_personalized_color_surface_inverse 0x7f0502a3 +int color material_personalized_color_surface_variant 0x7f0502a4 +int color material_personalized_color_tertiary 0x7f0502a5 +int color material_personalized_color_tertiary_container 0x7f0502a6 +int color material_personalized_color_text_hint_foreground_inverse 0x7f0502a7 +int color material_personalized_color_text_primary_inverse 0x7f0502a8 +int color material_personalized_color_text_primary_inverse_disable_only 0x7f0502a9 +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x7f0502aa +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x7f0502ab +int color material_personalized_hint_foreground 0x7f0502ac +int color material_personalized_hint_foreground_inverse 0x7f0502ad +int color material_personalized_primary_inverse_text_disable_only 0x7f0502ae +int color material_personalized_primary_text_disable_only 0x7f0502af +int color material_slider_active_tick_marks_color 0x7f0502b0 +int color material_slider_active_track_color 0x7f0502b1 +int color material_slider_halo_color 0x7f0502b2 +int color material_slider_inactive_tick_marks_color 0x7f0502b3 +int color material_slider_inactive_track_color 0x7f0502b4 +int color material_slider_thumb_color 0x7f0502b5 +int color material_timepicker_button_background 0x7f0502b6 +int color material_timepicker_button_stroke 0x7f0502b7 +int color material_timepicker_clock_text_color 0x7f0502b8 +int color material_timepicker_clockface 0x7f0502b9 +int color material_timepicker_modebutton_tint 0x7f0502ba +int color maui_splash_color 0x7f0502bb +int color mtrl_btn_bg_color_selector 0x7f0502bc +int color mtrl_btn_ripple_color 0x7f0502bd +int color mtrl_btn_stroke_color_selector 0x7f0502be +int color mtrl_btn_text_btn_bg_color_selector 0x7f0502bf +int color mtrl_btn_text_btn_ripple_color 0x7f0502c0 +int color mtrl_btn_text_color_disabled 0x7f0502c1 +int color mtrl_btn_text_color_selector 0x7f0502c2 +int color mtrl_btn_transparent_bg_color 0x7f0502c3 +int color mtrl_calendar_item_stroke_color 0x7f0502c4 +int color mtrl_calendar_selected_range 0x7f0502c5 +int color mtrl_card_view_foreground 0x7f0502c6 +int color mtrl_card_view_ripple 0x7f0502c7 +int color mtrl_chip_background_color 0x7f0502c8 +int color mtrl_chip_close_icon_tint 0x7f0502c9 +int color mtrl_chip_surface_color 0x7f0502ca +int color mtrl_chip_text_color 0x7f0502cb +int color mtrl_choice_chip_background_color 0x7f0502cc +int color mtrl_choice_chip_ripple_color 0x7f0502cd +int color mtrl_choice_chip_text_color 0x7f0502ce +int color mtrl_error 0x7f0502cf +int color mtrl_fab_bg_color_selector 0x7f0502d0 +int color mtrl_fab_icon_text_color_selector 0x7f0502d1 +int color mtrl_fab_ripple_color 0x7f0502d2 +int color mtrl_filled_background_color 0x7f0502d3 +int color mtrl_filled_icon_tint 0x7f0502d4 +int color mtrl_filled_stroke_color 0x7f0502d5 +int color mtrl_indicator_text_color 0x7f0502d6 +int color mtrl_navigation_bar_colored_item_tint 0x7f0502d7 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0502d8 +int color mtrl_navigation_bar_item_tint 0x7f0502d9 +int color mtrl_navigation_bar_ripple_color 0x7f0502da +int color mtrl_navigation_item_background_color 0x7f0502db +int color mtrl_navigation_item_icon_tint 0x7f0502dc +int color mtrl_navigation_item_text_color 0x7f0502dd +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0502de +int color mtrl_on_surface_ripple_color 0x7f0502df +int color mtrl_outlined_icon_tint 0x7f0502e0 +int color mtrl_outlined_stroke_color 0x7f0502e1 +int color mtrl_popupmenu_overlay_color 0x7f0502e2 +int color mtrl_scrim_color 0x7f0502e3 +int color mtrl_switch_thumb_icon_tint 0x7f0502e4 +int color mtrl_switch_thumb_tint 0x7f0502e5 +int color mtrl_switch_track_decoration_tint 0x7f0502e6 +int color mtrl_switch_track_tint 0x7f0502e7 +int color mtrl_tabs_colored_ripple_color 0x7f0502e8 +int color mtrl_tabs_icon_color_selector 0x7f0502e9 +int color mtrl_tabs_icon_color_selector_colored 0x7f0502ea +int color mtrl_tabs_legacy_text_color_selector 0x7f0502eb +int color mtrl_tabs_ripple_color 0x7f0502ec +int color mtrl_text_btn_text_color_selector 0x7f0502ed +int color mtrl_textinput_default_box_stroke_color 0x7f0502ee +int color mtrl_textinput_disabled_color 0x7f0502ef +int color mtrl_textinput_filled_box_default_background_color 0x7f0502f0 +int color mtrl_textinput_focused_box_stroke_color 0x7f0502f1 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0502f2 +int color notification_action_color_filter 0x7f0502f3 +int color notification_icon_bg_color 0x7f0502f4 +int color notification_material_background_media_default_color 0x7f0502f5 +int color primary_dark_material_dark 0x7f0502f6 +int color primary_dark_material_light 0x7f0502f7 +int color primary_material_dark 0x7f0502f8 +int color primary_material_light 0x7f0502f9 +int color primary_text_default_material_dark 0x7f0502fa +int color primary_text_default_material_light 0x7f0502fb +int color primary_text_disabled_material_dark 0x7f0502fc +int color primary_text_disabled_material_light 0x7f0502fd +int color ripple_material_dark 0x7f0502fe +int color ripple_material_light 0x7f0502ff +int color secondary_text_default_material_dark 0x7f050300 +int color secondary_text_default_material_light 0x7f050301 +int color secondary_text_disabled_material_dark 0x7f050302 +int color secondary_text_disabled_material_light 0x7f050303 +int color switch_thumb_disabled_material_dark 0x7f050304 +int color switch_thumb_disabled_material_light 0x7f050305 +int color switch_thumb_material_dark 0x7f050306 +int color switch_thumb_material_light 0x7f050307 +int color switch_thumb_normal_material_dark 0x7f050308 +int color switch_thumb_normal_material_light 0x7f050309 +int color tooltip_background_dark 0x7f05030a +int color tooltip_background_light 0x7f05030b +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_height_large_material 0x7f060030 +int dimen abc_list_item_height_material 0x7f060031 +int dimen abc_list_item_height_small_material 0x7f060032 +int dimen abc_list_item_padding_horizontal_material 0x7f060033 +int dimen abc_panel_menu_list_width 0x7f060034 +int dimen abc_progress_bar_height_material 0x7f060035 +int dimen abc_search_view_preferred_height 0x7f060036 +int dimen abc_search_view_preferred_width 0x7f060037 +int dimen abc_seekbar_track_background_height_material 0x7f060038 +int dimen abc_seekbar_track_progress_height_material 0x7f060039 +int dimen abc_select_dialog_padding_start_material 0x7f06003a +int dimen abc_star_big 0x7f06003b +int dimen abc_star_medium 0x7f06003c +int dimen abc_star_small 0x7f06003d +int dimen abc_switch_padding 0x7f06003e +int dimen abc_text_size_body_1_material 0x7f06003f +int dimen abc_text_size_body_2_material 0x7f060040 +int dimen abc_text_size_button_material 0x7f060041 +int dimen abc_text_size_caption_material 0x7f060042 +int dimen abc_text_size_display_1_material 0x7f060043 +int dimen abc_text_size_display_2_material 0x7f060044 +int dimen abc_text_size_display_3_material 0x7f060045 +int dimen abc_text_size_display_4_material 0x7f060046 +int dimen abc_text_size_headline_material 0x7f060047 +int dimen abc_text_size_large_material 0x7f060048 +int dimen abc_text_size_medium_material 0x7f060049 +int dimen abc_text_size_menu_header_material 0x7f06004a +int dimen abc_text_size_menu_material 0x7f06004b +int dimen abc_text_size_small_material 0x7f06004c +int dimen abc_text_size_subhead_material 0x7f06004d +int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e +int dimen abc_text_size_title_material 0x7f06004f +int dimen abc_text_size_title_material_toolbar 0x7f060050 +int dimen appcompat_dialog_background_inset 0x7f060051 +int dimen browser_actions_context_menu_max_width 0x7f060052 +int dimen browser_actions_context_menu_min_padding 0x7f060053 +int dimen cardview_compat_inset_shadow 0x7f060054 +int dimen cardview_default_elevation 0x7f060055 +int dimen cardview_default_radius 0x7f060056 +int dimen clock_face_margin_start 0x7f060057 +int dimen compat_button_inset_horizontal_material 0x7f060058 +int dimen compat_button_inset_vertical_material 0x7f060059 +int dimen compat_button_padding_horizontal_material 0x7f06005a +int dimen compat_button_padding_vertical_material 0x7f06005b +int dimen compat_control_corner_material 0x7f06005c +int dimen compat_notification_large_icon_max_height 0x7f06005d +int dimen compat_notification_large_icon_max_width 0x7f06005e +int dimen def_drawer_elevation 0x7f06005f +int dimen design_appbar_elevation 0x7f060060 +int dimen design_bottom_navigation_active_item_max_width 0x7f060061 +int dimen design_bottom_navigation_active_item_min_width 0x7f060062 +int dimen design_bottom_navigation_active_text_size 0x7f060063 +int dimen design_bottom_navigation_elevation 0x7f060064 +int dimen design_bottom_navigation_height 0x7f060065 +int dimen design_bottom_navigation_icon_size 0x7f060066 +int dimen design_bottom_navigation_item_max_width 0x7f060067 +int dimen design_bottom_navigation_item_min_width 0x7f060068 +int dimen design_bottom_navigation_label_padding 0x7f060069 +int dimen design_bottom_navigation_margin 0x7f06006a +int dimen design_bottom_navigation_shadow_height 0x7f06006b +int dimen design_bottom_navigation_text_size 0x7f06006c +int dimen design_bottom_sheet_elevation 0x7f06006d +int dimen design_bottom_sheet_modal_elevation 0x7f06006e +int dimen design_bottom_sheet_peek_height_min 0x7f06006f +int dimen design_fab_border_width 0x7f060070 +int dimen design_fab_elevation 0x7f060071 +int dimen design_fab_image_size 0x7f060072 +int dimen design_fab_size_mini 0x7f060073 +int dimen design_fab_size_normal 0x7f060074 +int dimen design_fab_translation_z_hovered_focused 0x7f060075 +int dimen design_fab_translation_z_pressed 0x7f060076 +int dimen design_navigation_elevation 0x7f060077 +int dimen design_navigation_icon_padding 0x7f060078 +int dimen design_navigation_icon_size 0x7f060079 +int dimen design_navigation_item_horizontal_padding 0x7f06007a +int dimen design_navigation_item_icon_padding 0x7f06007b +int dimen design_navigation_item_vertical_padding 0x7f06007c +int dimen design_navigation_max_width 0x7f06007d +int dimen design_navigation_padding_bottom 0x7f06007e +int dimen design_navigation_separator_vertical_padding 0x7f06007f +int dimen design_snackbar_action_inline_max_width 0x7f060080 +int dimen design_snackbar_action_text_color_alpha 0x7f060081 +int dimen design_snackbar_background_corner_radius 0x7f060082 +int dimen design_snackbar_elevation 0x7f060083 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060084 +int dimen design_snackbar_max_width 0x7f060085 +int dimen design_snackbar_min_width 0x7f060086 +int dimen design_snackbar_padding_horizontal 0x7f060087 +int dimen design_snackbar_padding_vertical 0x7f060088 +int dimen design_snackbar_padding_vertical_2lines 0x7f060089 +int dimen design_snackbar_text_size 0x7f06008a +int dimen design_tab_max_width 0x7f06008b +int dimen design_tab_scrollable_min_width 0x7f06008c +int dimen design_tab_text_size 0x7f06008d +int dimen design_tab_text_size_2line 0x7f06008e +int dimen design_textinput_caption_translate_y 0x7f06008f +int dimen disabled_alpha_material_dark 0x7f060090 +int dimen disabled_alpha_material_light 0x7f060091 +int dimen fastscroll_default_thickness 0x7f060092 +int dimen fastscroll_margin 0x7f060093 +int dimen fastscroll_minimum_range 0x7f060094 +int dimen highlight_alpha_material_colored 0x7f060095 +int dimen highlight_alpha_material_dark 0x7f060096 +int dimen highlight_alpha_material_light 0x7f060097 +int dimen hint_alpha_material_dark 0x7f060098 +int dimen hint_alpha_material_light 0x7f060099 +int dimen hint_pressed_alpha_material_dark 0x7f06009a +int dimen hint_pressed_alpha_material_light 0x7f06009b +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009c +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009d +int dimen item_touch_helper_swipe_escape_velocity 0x7f06009e +int dimen m3_alert_dialog_action_bottom_padding 0x7f06009f +int dimen m3_alert_dialog_action_top_padding 0x7f0600a0 +int dimen m3_alert_dialog_corner_size 0x7f0600a1 +int dimen m3_alert_dialog_elevation 0x7f0600a2 +int dimen m3_alert_dialog_icon_margin 0x7f0600a3 +int dimen m3_alert_dialog_icon_size 0x7f0600a4 +int dimen m3_alert_dialog_title_bottom_margin 0x7f0600a5 +int dimen m3_appbar_expanded_title_margin_bottom 0x7f0600a6 +int dimen m3_appbar_expanded_title_margin_horizontal 0x7f0600a7 +int dimen m3_appbar_scrim_height_trigger 0x7f0600a8 +int dimen m3_appbar_scrim_height_trigger_large 0x7f0600a9 +int dimen m3_appbar_scrim_height_trigger_medium 0x7f0600aa +int dimen m3_appbar_size_compact 0x7f0600ab +int dimen m3_appbar_size_large 0x7f0600ac +int dimen m3_appbar_size_medium 0x7f0600ad +int dimen m3_back_progress_bottom_container_max_scale_x_distance 0x7f0600ae +int dimen m3_back_progress_bottom_container_max_scale_y_distance 0x7f0600af +int dimen m3_back_progress_main_container_max_translation_y 0x7f0600b0 +int dimen m3_back_progress_main_container_min_edge_gap 0x7f0600b1 +int dimen m3_back_progress_side_container_max_scale_x_distance_grow 0x7f0600b2 +int dimen m3_back_progress_side_container_max_scale_x_distance_shrink 0x7f0600b3 +int dimen m3_back_progress_side_container_max_scale_y_distance 0x7f0600b4 +int dimen m3_badge_horizontal_offset 0x7f0600b5 +int dimen m3_badge_offset 0x7f0600b6 +int dimen m3_badge_size 0x7f0600b7 +int dimen m3_badge_vertical_offset 0x7f0600b8 +int dimen m3_badge_with_text_horizontal_offset 0x7f0600b9 +int dimen m3_badge_with_text_offset 0x7f0600ba +int dimen m3_badge_with_text_size 0x7f0600bb +int dimen m3_badge_with_text_vertical_offset 0x7f0600bc +int dimen m3_badge_with_text_vertical_padding 0x7f0600bd +int dimen m3_bottom_nav_item_active_indicator_height 0x7f0600be +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x7f0600bf +int dimen m3_bottom_nav_item_active_indicator_width 0x7f0600c0 +int dimen m3_bottom_nav_item_padding_bottom 0x7f0600c1 +int dimen m3_bottom_nav_item_padding_top 0x7f0600c2 +int dimen m3_bottom_nav_min_height 0x7f0600c3 +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x7f0600c4 +int dimen m3_bottom_sheet_elevation 0x7f0600c5 +int dimen m3_bottom_sheet_modal_elevation 0x7f0600c6 +int dimen m3_bottomappbar_fab_cradle_margin 0x7f0600c7 +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600c8 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x7f0600c9 +int dimen m3_bottomappbar_fab_end_margin 0x7f0600ca +int dimen m3_bottomappbar_height 0x7f0600cb +int dimen m3_bottomappbar_horizontal_padding 0x7f0600cc +int dimen m3_btn_dialog_btn_min_width 0x7f0600cd +int dimen m3_btn_dialog_btn_spacing 0x7f0600ce +int dimen m3_btn_disabled_elevation 0x7f0600cf +int dimen m3_btn_disabled_translation_z 0x7f0600d0 +int dimen m3_btn_elevated_btn_elevation 0x7f0600d1 +int dimen m3_btn_elevation 0x7f0600d2 +int dimen m3_btn_icon_btn_padding_left 0x7f0600d3 +int dimen m3_btn_icon_btn_padding_right 0x7f0600d4 +int dimen m3_btn_icon_only_default_padding 0x7f0600d5 +int dimen m3_btn_icon_only_default_size 0x7f0600d6 +int dimen m3_btn_icon_only_icon_padding 0x7f0600d7 +int dimen m3_btn_icon_only_min_width 0x7f0600d8 +int dimen m3_btn_inset 0x7f0600d9 +int dimen m3_btn_max_width 0x7f0600da +int dimen m3_btn_padding_bottom 0x7f0600db +int dimen m3_btn_padding_left 0x7f0600dc +int dimen m3_btn_padding_right 0x7f0600dd +int dimen m3_btn_padding_top 0x7f0600de +int dimen m3_btn_stroke_size 0x7f0600df +int dimen m3_btn_text_btn_icon_padding_left 0x7f0600e0 +int dimen m3_btn_text_btn_icon_padding_right 0x7f0600e1 +int dimen m3_btn_text_btn_padding_left 0x7f0600e2 +int dimen m3_btn_text_btn_padding_right 0x7f0600e3 +int dimen m3_btn_translation_z_base 0x7f0600e4 +int dimen m3_btn_translation_z_hovered 0x7f0600e5 +int dimen m3_card_disabled_z 0x7f0600e6 +int dimen m3_card_dragged_z 0x7f0600e7 +int dimen m3_card_elevated_disabled_z 0x7f0600e8 +int dimen m3_card_elevated_dragged_z 0x7f0600e9 +int dimen m3_card_elevated_elevation 0x7f0600ea +int dimen m3_card_elevated_hovered_z 0x7f0600eb +int dimen m3_card_elevation 0x7f0600ec +int dimen m3_card_hovered_z 0x7f0600ed +int dimen m3_card_stroke_width 0x7f0600ee +int dimen m3_carousel_debug_keyline_width 0x7f0600ef +int dimen m3_carousel_extra_small_item_size 0x7f0600f0 +int dimen m3_carousel_gone_size 0x7f0600f1 +int dimen m3_carousel_small_item_default_corner_size 0x7f0600f2 +int dimen m3_carousel_small_item_size_max 0x7f0600f3 +int dimen m3_carousel_small_item_size_min 0x7f0600f4 +int dimen m3_chip_checked_hovered_translation_z 0x7f0600f5 +int dimen m3_chip_corner_size 0x7f0600f6 +int dimen m3_chip_disabled_translation_z 0x7f0600f7 +int dimen m3_chip_dragged_translation_z 0x7f0600f8 +int dimen m3_chip_elevated_elevation 0x7f0600f9 +int dimen m3_chip_hovered_translation_z 0x7f0600fa +int dimen m3_chip_icon_size 0x7f0600fb +int dimen m3_comp_assist_chip_container_height 0x7f0600fc +int dimen m3_comp_assist_chip_elevated_container_elevation 0x7f0600fd +int dimen m3_comp_assist_chip_flat_container_elevation 0x7f0600fe +int dimen m3_comp_assist_chip_flat_outline_width 0x7f0600ff +int dimen m3_comp_assist_chip_with_icon_icon_size 0x7f060100 +int dimen m3_comp_badge_large_size 0x7f060101 +int dimen m3_comp_badge_size 0x7f060102 +int dimen m3_comp_bottom_app_bar_container_elevation 0x7f060103 +int dimen m3_comp_bottom_app_bar_container_height 0x7f060104 +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x7f060105 +int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x7f060106 +int dimen m3_comp_date_picker_modal_date_today_container_outline_width 0x7f060107 +int dimen m3_comp_date_picker_modal_header_container_height 0x7f060108 +int dimen m3_comp_date_picker_modal_range_selection_header_container_height 0x7f060109 +int dimen m3_comp_divider_thickness 0x7f06010a +int dimen m3_comp_elevated_button_container_elevation 0x7f06010b +int dimen m3_comp_elevated_button_disabled_container_elevation 0x7f06010c +int dimen m3_comp_elevated_card_container_elevation 0x7f06010d +int dimen m3_comp_elevated_card_icon_size 0x7f06010e +int dimen m3_comp_extended_fab_primary_container_elevation 0x7f06010f +int dimen m3_comp_extended_fab_primary_container_height 0x7f060110 +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x7f060111 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x7f060112 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x7f060113 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x7f060114 +int dimen m3_comp_extended_fab_primary_icon_size 0x7f060115 +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x7f060116 +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x7f060117 +int dimen m3_comp_fab_primary_container_elevation 0x7f060118 +int dimen m3_comp_fab_primary_container_height 0x7f060119 +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x7f06011a +int dimen m3_comp_fab_primary_hover_container_elevation 0x7f06011b +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x7f06011c +int dimen m3_comp_fab_primary_icon_size 0x7f06011d +int dimen m3_comp_fab_primary_large_container_height 0x7f06011e +int dimen m3_comp_fab_primary_large_icon_size 0x7f06011f +int dimen m3_comp_fab_primary_pressed_container_elevation 0x7f060120 +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x7f060121 +int dimen m3_comp_fab_primary_small_container_height 0x7f060122 +int dimen m3_comp_fab_primary_small_icon_size 0x7f060123 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x7f060124 +int dimen m3_comp_filled_button_container_elevation 0x7f060125 +int dimen m3_comp_filled_button_with_icon_icon_size 0x7f060126 +int dimen m3_comp_filled_card_container_elevation 0x7f060127 +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x7f060128 +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x7f060129 +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x7f06012a +int dimen m3_comp_filled_card_icon_size 0x7f06012b +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x7f06012c +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x7f06012d +int dimen m3_comp_filter_chip_container_height 0x7f06012e +int dimen m3_comp_filter_chip_elevated_container_elevation 0x7f06012f +int dimen m3_comp_filter_chip_flat_container_elevation 0x7f060130 +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x7f060131 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x7f060132 +int dimen m3_comp_input_chip_container_elevation 0x7f060133 +int dimen m3_comp_input_chip_container_height 0x7f060134 +int dimen m3_comp_input_chip_unselected_outline_width 0x7f060135 +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x7f060136 +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x7f060137 +int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x7f060138 +int dimen m3_comp_menu_container_elevation 0x7f060139 +int dimen m3_comp_navigation_bar_active_indicator_height 0x7f06013a +int dimen m3_comp_navigation_bar_active_indicator_width 0x7f06013b +int dimen m3_comp_navigation_bar_container_elevation 0x7f06013c +int dimen m3_comp_navigation_bar_container_height 0x7f06013d +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x7f06013e +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x7f06013f +int dimen m3_comp_navigation_bar_icon_size 0x7f060140 +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x7f060141 +int dimen m3_comp_navigation_drawer_container_width 0x7f060142 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x7f060143 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x7f060144 +int dimen m3_comp_navigation_drawer_icon_size 0x7f060145 +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x7f060146 +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x7f060147 +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x7f060148 +int dimen m3_comp_navigation_rail_active_indicator_height 0x7f060149 +int dimen m3_comp_navigation_rail_active_indicator_width 0x7f06014a +int dimen m3_comp_navigation_rail_container_elevation 0x7f06014b +int dimen m3_comp_navigation_rail_container_width 0x7f06014c +int dimen m3_comp_navigation_rail_focus_state_layer_opacity 0x7f06014d +int dimen m3_comp_navigation_rail_hover_state_layer_opacity 0x7f06014e +int dimen m3_comp_navigation_rail_icon_size 0x7f06014f +int dimen m3_comp_navigation_rail_pressed_state_layer_opacity 0x7f060150 +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x7f060151 +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x7f060152 +int dimen m3_comp_outlined_button_outline_width 0x7f060153 +int dimen m3_comp_outlined_card_container_elevation 0x7f060154 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x7f060155 +int dimen m3_comp_outlined_card_icon_size 0x7f060156 +int dimen m3_comp_outlined_card_outline_width 0x7f060157 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x7f060158 +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x7f060159 +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x7f06015a +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x7f06015b +int dimen m3_comp_outlined_text_field_focus_outline_width 0x7f06015c +int dimen m3_comp_outlined_text_field_outline_width 0x7f06015d +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x7f06015e +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x7f06015f +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x7f060160 +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x7f060161 +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x7f060162 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x7f060163 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x7f060164 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x7f060165 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x7f060166 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x7f060167 +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x7f060168 +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x7f060169 +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x7f06016a +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x7f06016b +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x7f06016c +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x7f06016d +int dimen m3_comp_search_bar_avatar_size 0x7f06016e +int dimen m3_comp_search_bar_container_elevation 0x7f06016f +int dimen m3_comp_search_bar_container_height 0x7f060170 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x7f060171 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x7f060172 +int dimen m3_comp_search_view_container_elevation 0x7f060173 +int dimen m3_comp_search_view_docked_header_container_height 0x7f060174 +int dimen m3_comp_search_view_full_screen_header_container_height 0x7f060175 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x7f060176 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x7f060177 +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x7f060178 +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x7f060179 +int dimen m3_comp_sheet_bottom_docked_drag_handle_height 0x7f06017a +int dimen m3_comp_sheet_bottom_docked_drag_handle_width 0x7f06017b +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x7f06017c +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x7f06017d +int dimen m3_comp_sheet_side_docked_container_width 0x7f06017e +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x7f06017f +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x7f060180 +int dimen m3_comp_slider_disabled_active_track_opacity 0x7f060181 +int dimen m3_comp_slider_disabled_handle_opacity 0x7f060182 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x7f060183 +int dimen m3_comp_slider_inactive_track_height 0x7f060184 +int dimen m3_comp_snackbar_container_elevation 0x7f060185 +int dimen m3_comp_suggestion_chip_container_height 0x7f060186 +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x7f060187 +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x7f060188 +int dimen m3_comp_suggestion_chip_flat_outline_width 0x7f060189 +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x7f06018a +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x7f06018b +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x7f06018c +int dimen m3_comp_switch_disabled_track_opacity 0x7f06018d +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x7f06018e +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x7f06018f +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x7f060190 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x7f060191 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x7f060192 +int dimen m3_comp_switch_track_height 0x7f060193 +int dimen m3_comp_switch_track_width 0x7f060194 +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x7f060195 +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x7f060196 +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x7f060197 +int dimen m3_comp_text_button_focus_state_layer_opacity 0x7f060198 +int dimen m3_comp_text_button_hover_state_layer_opacity 0x7f060199 +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x7f06019a +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x7f06019b +int dimen m3_comp_time_picker_container_elevation 0x7f06019c +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x7f06019d +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x7f06019e +int dimen m3_comp_time_picker_period_selector_outline_width 0x7f06019f +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x7f0601a0 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x7f0601a1 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x7f0601a2 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x7f0601a3 +int dimen m3_comp_top_app_bar_large_container_height 0x7f0601a4 +int dimen m3_comp_top_app_bar_medium_container_height 0x7f0601a5 +int dimen m3_comp_top_app_bar_small_container_elevation 0x7f0601a6 +int dimen m3_comp_top_app_bar_small_container_height 0x7f0601a7 +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x7f0601a8 +int dimen m3_datepicker_elevation 0x7f0601a9 +int dimen m3_divider_heavy_thickness 0x7f0601aa +int dimen m3_extended_fab_bottom_padding 0x7f0601ab +int dimen m3_extended_fab_end_padding 0x7f0601ac +int dimen m3_extended_fab_icon_padding 0x7f0601ad +int dimen m3_extended_fab_min_height 0x7f0601ae +int dimen m3_extended_fab_start_padding 0x7f0601af +int dimen m3_extended_fab_top_padding 0x7f0601b0 +int dimen m3_fab_border_width 0x7f0601b1 +int dimen m3_fab_corner_size 0x7f0601b2 +int dimen m3_fab_translation_z_hovered_focused 0x7f0601b3 +int dimen m3_fab_translation_z_pressed 0x7f0601b4 +int dimen m3_large_fab_max_image_size 0x7f0601b5 +int dimen m3_large_fab_size 0x7f0601b6 +int dimen m3_large_text_vertical_offset_adjustment 0x7f0601b7 +int dimen m3_menu_elevation 0x7f0601b8 +int dimen m3_nav_badge_with_text_vertical_offset 0x7f0601b9 +int dimen m3_navigation_drawer_layout_corner_size 0x7f0601ba +int dimen m3_navigation_item_active_indicator_label_padding 0x7f0601bb +int dimen m3_navigation_item_horizontal_padding 0x7f0601bc +int dimen m3_navigation_item_icon_padding 0x7f0601bd +int dimen m3_navigation_item_shape_inset_bottom 0x7f0601be +int dimen m3_navigation_item_shape_inset_end 0x7f0601bf +int dimen m3_navigation_item_shape_inset_start 0x7f0601c0 +int dimen m3_navigation_item_shape_inset_top 0x7f0601c1 +int dimen m3_navigation_item_vertical_padding 0x7f0601c2 +int dimen m3_navigation_menu_divider_horizontal_padding 0x7f0601c3 +int dimen m3_navigation_menu_headline_horizontal_padding 0x7f0601c4 +int dimen m3_navigation_rail_default_width 0x7f0601c5 +int dimen m3_navigation_rail_elevation 0x7f0601c6 +int dimen m3_navigation_rail_icon_size 0x7f0601c7 +int dimen m3_navigation_rail_item_active_indicator_height 0x7f0601c8 +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x7f0601c9 +int dimen m3_navigation_rail_item_active_indicator_width 0x7f0601ca +int dimen m3_navigation_rail_item_min_height 0x7f0601cb +int dimen m3_navigation_rail_item_padding_bottom 0x7f0601cc +int dimen m3_navigation_rail_item_padding_bottom_with_large_font 0x7f0601cd +int dimen m3_navigation_rail_item_padding_top 0x7f0601ce +int dimen m3_navigation_rail_item_padding_top_with_large_font 0x7f0601cf +int dimen m3_ripple_default_alpha 0x7f0601d0 +int dimen m3_ripple_focused_alpha 0x7f0601d1 +int dimen m3_ripple_hovered_alpha 0x7f0601d2 +int dimen m3_ripple_pressed_alpha 0x7f0601d3 +int dimen m3_ripple_selectable_pressed_alpha 0x7f0601d4 +int dimen m3_searchbar_elevation 0x7f0601d5 +int dimen m3_searchbar_height 0x7f0601d6 +int dimen m3_searchbar_margin_horizontal 0x7f0601d7 +int dimen m3_searchbar_margin_vertical 0x7f0601d8 +int dimen m3_searchbar_outlined_stroke_width 0x7f0601d9 +int dimen m3_searchbar_padding_start 0x7f0601da +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x7f0601db +int dimen m3_searchbar_text_size 0x7f0601dc +int dimen m3_searchview_divider_size 0x7f0601dd +int dimen m3_searchview_elevation 0x7f0601de +int dimen m3_searchview_height 0x7f0601df +int dimen m3_side_sheet_margin_detached 0x7f0601e0 +int dimen m3_side_sheet_modal_elevation 0x7f0601e1 +int dimen m3_side_sheet_standard_elevation 0x7f0601e2 +int dimen m3_side_sheet_width 0x7f0601e3 +int dimen m3_simple_item_color_hovered_alpha 0x7f0601e4 +int dimen m3_simple_item_color_selected_alpha 0x7f0601e5 +int dimen m3_slider_inactive_track_height 0x7f0601e6 +int dimen m3_slider_thumb_elevation 0x7f0601e7 +int dimen m3_small_fab_max_image_size 0x7f0601e8 +int dimen m3_small_fab_size 0x7f0601e9 +int dimen m3_snackbar_action_text_color_alpha 0x7f0601ea +int dimen m3_snackbar_margin 0x7f0601eb +int dimen m3_sys_elevation_level0 0x7f0601ec +int dimen m3_sys_elevation_level1 0x7f0601ed +int dimen m3_sys_elevation_level2 0x7f0601ee +int dimen m3_sys_elevation_level3 0x7f0601ef +int dimen m3_sys_elevation_level4 0x7f0601f0 +int dimen m3_sys_elevation_level5 0x7f0601f1 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x7f0601f2 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x7f0601f3 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x7f0601f4 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x7f0601f5 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x7f0601f6 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x7f0601f7 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x7f0601f8 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x7f0601f9 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x7f0601fa +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x7f0601fb +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x7f0601fc +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x7f0601fd +int dimen m3_sys_motion_easing_legacy_control_x1 0x7f0601fe +int dimen m3_sys_motion_easing_legacy_control_x2 0x7f0601ff +int dimen m3_sys_motion_easing_legacy_control_y1 0x7f060200 +int dimen m3_sys_motion_easing_legacy_control_y2 0x7f060201 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x7f060202 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x7f060203 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x7f060204 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x7f060205 +int dimen m3_sys_motion_easing_linear_control_x1 0x7f060206 +int dimen m3_sys_motion_easing_linear_control_x2 0x7f060207 +int dimen m3_sys_motion_easing_linear_control_y1 0x7f060208 +int dimen m3_sys_motion_easing_linear_control_y2 0x7f060209 +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x7f06020a +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x7f06020b +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x7f06020c +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x7f06020d +int dimen m3_sys_motion_easing_standard_control_x1 0x7f06020e +int dimen m3_sys_motion_easing_standard_control_x2 0x7f06020f +int dimen m3_sys_motion_easing_standard_control_y1 0x7f060210 +int dimen m3_sys_motion_easing_standard_control_y2 0x7f060211 +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x7f060212 +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x7f060213 +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x7f060214 +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x7f060215 +int dimen m3_sys_state_dragged_state_layer_opacity 0x7f060216 +int dimen m3_sys_state_focus_state_layer_opacity 0x7f060217 +int dimen m3_sys_state_hover_state_layer_opacity 0x7f060218 +int dimen m3_sys_state_pressed_state_layer_opacity 0x7f060219 +int dimen m3_timepicker_display_stroke_width 0x7f06021a +int dimen m3_timepicker_window_elevation 0x7f06021b +int dimen m3_toolbar_text_size_title 0x7f06021c +int dimen material_bottom_sheet_max_width 0x7f06021d +int dimen material_clock_display_height 0x7f06021e +int dimen material_clock_display_padding 0x7f06021f +int dimen material_clock_display_width 0x7f060220 +int dimen material_clock_face_margin_bottom 0x7f060221 +int dimen material_clock_face_margin_top 0x7f060222 +int dimen material_clock_hand_center_dot_radius 0x7f060223 +int dimen material_clock_hand_padding 0x7f060224 +int dimen material_clock_hand_stroke_width 0x7f060225 +int dimen material_clock_number_text_size 0x7f060226 +int dimen material_clock_period_toggle_height 0x7f060227 +int dimen material_clock_period_toggle_horizontal_gap 0x7f060228 +int dimen material_clock_period_toggle_vertical_gap 0x7f060229 +int dimen material_clock_period_toggle_width 0x7f06022a +int dimen material_clock_size 0x7f06022b +int dimen material_cursor_inset 0x7f06022c +int dimen material_cursor_width 0x7f06022d +int dimen material_divider_thickness 0x7f06022e +int dimen material_emphasis_disabled 0x7f06022f +int dimen material_emphasis_disabled_background 0x7f060230 +int dimen material_emphasis_high_type 0x7f060231 +int dimen material_emphasis_medium 0x7f060232 +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f060233 +int dimen material_filled_edittext_font_1_3_padding_top 0x7f060234 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f060235 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f060236 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f060237 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f060238 +int dimen material_helper_text_default_padding_top 0x7f060239 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f06023a +int dimen material_helper_text_font_1_3_padding_top 0x7f06023b +int dimen material_input_text_to_prefix_suffix_padding 0x7f06023c +int dimen material_textinput_default_width 0x7f06023d +int dimen material_textinput_max_width 0x7f06023e +int dimen material_textinput_min_width 0x7f06023f +int dimen material_time_picker_minimum_screen_height 0x7f060240 +int dimen material_time_picker_minimum_screen_width 0x7f060241 +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f060242 +int dimen mtrl_alert_dialog_background_inset_end 0x7f060243 +int dimen mtrl_alert_dialog_background_inset_start 0x7f060244 +int dimen mtrl_alert_dialog_background_inset_top 0x7f060245 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f060246 +int dimen mtrl_badge_horizontal_edge_offset 0x7f060247 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f060248 +int dimen mtrl_badge_size 0x7f060249 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f06024a +int dimen mtrl_badge_text_size 0x7f06024b +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f06024c +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f06024d +int dimen mtrl_badge_with_text_size 0x7f06024e +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f06024f +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f060250 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060251 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060252 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060253 +int dimen mtrl_bottomappbar_height 0x7f060254 +int dimen mtrl_btn_corner_radius 0x7f060255 +int dimen mtrl_btn_dialog_btn_min_width 0x7f060256 +int dimen mtrl_btn_disabled_elevation 0x7f060257 +int dimen mtrl_btn_disabled_z 0x7f060258 +int dimen mtrl_btn_elevation 0x7f060259 +int dimen mtrl_btn_focused_z 0x7f06025a +int dimen mtrl_btn_hovered_z 0x7f06025b +int dimen mtrl_btn_icon_btn_padding_left 0x7f06025c +int dimen mtrl_btn_icon_padding 0x7f06025d +int dimen mtrl_btn_inset 0x7f06025e +int dimen mtrl_btn_letter_spacing 0x7f06025f +int dimen mtrl_btn_max_width 0x7f060260 +int dimen mtrl_btn_padding_bottom 0x7f060261 +int dimen mtrl_btn_padding_left 0x7f060262 +int dimen mtrl_btn_padding_right 0x7f060263 +int dimen mtrl_btn_padding_top 0x7f060264 +int dimen mtrl_btn_pressed_z 0x7f060265 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f060266 +int dimen mtrl_btn_stroke_size 0x7f060267 +int dimen mtrl_btn_text_btn_icon_padding 0x7f060268 +int dimen mtrl_btn_text_btn_padding_left 0x7f060269 +int dimen mtrl_btn_text_btn_padding_right 0x7f06026a +int dimen mtrl_btn_text_size 0x7f06026b +int dimen mtrl_btn_z 0x7f06026c +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f06026d +int dimen mtrl_calendar_action_height 0x7f06026e +int dimen mtrl_calendar_action_padding 0x7f06026f +int dimen mtrl_calendar_bottom_padding 0x7f060270 +int dimen mtrl_calendar_content_padding 0x7f060271 +int dimen mtrl_calendar_day_corner 0x7f060272 +int dimen mtrl_calendar_day_height 0x7f060273 +int dimen mtrl_calendar_day_horizontal_padding 0x7f060274 +int dimen mtrl_calendar_day_today_stroke 0x7f060275 +int dimen mtrl_calendar_day_vertical_padding 0x7f060276 +int dimen mtrl_calendar_day_width 0x7f060277 +int dimen mtrl_calendar_days_of_week_height 0x7f060278 +int dimen mtrl_calendar_dialog_background_inset 0x7f060279 +int dimen mtrl_calendar_header_content_padding 0x7f06027a +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f06027b +int dimen mtrl_calendar_header_divider_thickness 0x7f06027c +int dimen mtrl_calendar_header_height 0x7f06027d +int dimen mtrl_calendar_header_height_fullscreen 0x7f06027e +int dimen mtrl_calendar_header_selection_line_height 0x7f06027f +int dimen mtrl_calendar_header_text_padding 0x7f060280 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f060281 +int dimen mtrl_calendar_header_toggle_margin_top 0x7f060282 +int dimen mtrl_calendar_landscape_header_width 0x7f060283 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f060284 +int dimen mtrl_calendar_month_horizontal_padding 0x7f060285 +int dimen mtrl_calendar_month_vertical_padding 0x7f060286 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f060287 +int dimen mtrl_calendar_navigation_height 0x7f060288 +int dimen mtrl_calendar_navigation_top_padding 0x7f060289 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f06028a +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f06028b +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f06028c +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f06028d +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f06028e +int dimen mtrl_calendar_text_input_padding_top 0x7f06028f +int dimen mtrl_calendar_title_baseline_to_top 0x7f060290 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f060291 +int dimen mtrl_calendar_year_corner 0x7f060292 +int dimen mtrl_calendar_year_height 0x7f060293 +int dimen mtrl_calendar_year_horizontal_padding 0x7f060294 +int dimen mtrl_calendar_year_vertical_padding 0x7f060295 +int dimen mtrl_calendar_year_width 0x7f060296 +int dimen mtrl_card_checked_icon_margin 0x7f060297 +int dimen mtrl_card_checked_icon_size 0x7f060298 +int dimen mtrl_card_corner_radius 0x7f060299 +int dimen mtrl_card_dragged_z 0x7f06029a +int dimen mtrl_card_elevation 0x7f06029b +int dimen mtrl_card_spacing 0x7f06029c +int dimen mtrl_chip_pressed_translation_z 0x7f06029d +int dimen mtrl_chip_text_size 0x7f06029e +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f06029f +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f0602a0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f0602a1 +int dimen mtrl_extended_fab_bottom_padding 0x7f0602a2 +int dimen mtrl_extended_fab_disabled_elevation 0x7f0602a3 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f0602a4 +int dimen mtrl_extended_fab_elevation 0x7f0602a5 +int dimen mtrl_extended_fab_end_padding 0x7f0602a6 +int dimen mtrl_extended_fab_end_padding_icon 0x7f0602a7 +int dimen mtrl_extended_fab_icon_size 0x7f0602a8 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f0602a9 +int dimen mtrl_extended_fab_min_height 0x7f0602aa +int dimen mtrl_extended_fab_min_width 0x7f0602ab +int dimen mtrl_extended_fab_start_padding 0x7f0602ac +int dimen mtrl_extended_fab_start_padding_icon 0x7f0602ad +int dimen mtrl_extended_fab_top_padding 0x7f0602ae +int dimen mtrl_extended_fab_translation_z_base 0x7f0602af +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f0602b0 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f0602b1 +int dimen mtrl_fab_elevation 0x7f0602b2 +int dimen mtrl_fab_min_touch_target 0x7f0602b3 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0602b4 +int dimen mtrl_fab_translation_z_pressed 0x7f0602b5 +int dimen mtrl_high_ripple_default_alpha 0x7f0602b6 +int dimen mtrl_high_ripple_focused_alpha 0x7f0602b7 +int dimen mtrl_high_ripple_hovered_alpha 0x7f0602b8 +int dimen mtrl_high_ripple_pressed_alpha 0x7f0602b9 +int dimen mtrl_low_ripple_default_alpha 0x7f0602ba +int dimen mtrl_low_ripple_focused_alpha 0x7f0602bb +int dimen mtrl_low_ripple_hovered_alpha 0x7f0602bc +int dimen mtrl_low_ripple_pressed_alpha 0x7f0602bd +int dimen mtrl_min_touch_target_size 0x7f0602be +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0602bf +int dimen mtrl_navigation_bar_item_default_margin 0x7f0602c0 +int dimen mtrl_navigation_elevation 0x7f0602c1 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0602c2 +int dimen mtrl_navigation_item_icon_padding 0x7f0602c3 +int dimen mtrl_navigation_item_icon_size 0x7f0602c4 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0602c5 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0602c6 +int dimen mtrl_navigation_rail_active_text_size 0x7f0602c7 +int dimen mtrl_navigation_rail_compact_width 0x7f0602c8 +int dimen mtrl_navigation_rail_default_width 0x7f0602c9 +int dimen mtrl_navigation_rail_elevation 0x7f0602ca +int dimen mtrl_navigation_rail_icon_margin 0x7f0602cb +int dimen mtrl_navigation_rail_icon_size 0x7f0602cc +int dimen mtrl_navigation_rail_margin 0x7f0602cd +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0602ce +int dimen mtrl_navigation_rail_text_size 0x7f0602cf +int dimen mtrl_progress_circular_inset 0x7f0602d0 +int dimen mtrl_progress_circular_inset_extra_small 0x7f0602d1 +int dimen mtrl_progress_circular_inset_medium 0x7f0602d2 +int dimen mtrl_progress_circular_inset_small 0x7f0602d3 +int dimen mtrl_progress_circular_radius 0x7f0602d4 +int dimen mtrl_progress_circular_size 0x7f0602d5 +int dimen mtrl_progress_circular_size_extra_small 0x7f0602d6 +int dimen mtrl_progress_circular_size_medium 0x7f0602d7 +int dimen mtrl_progress_circular_size_small 0x7f0602d8 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0602d9 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0602da +int dimen mtrl_progress_circular_track_thickness_small 0x7f0602db +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0602dc +int dimen mtrl_progress_track_thickness 0x7f0602dd +int dimen mtrl_shape_corner_size_large_component 0x7f0602de +int dimen mtrl_shape_corner_size_medium_component 0x7f0602df +int dimen mtrl_shape_corner_size_small_component 0x7f0602e0 +int dimen mtrl_slider_halo_radius 0x7f0602e1 +int dimen mtrl_slider_label_padding 0x7f0602e2 +int dimen mtrl_slider_label_radius 0x7f0602e3 +int dimen mtrl_slider_label_square_side 0x7f0602e4 +int dimen mtrl_slider_thumb_elevation 0x7f0602e5 +int dimen mtrl_slider_thumb_radius 0x7f0602e6 +int dimen mtrl_slider_tick_radius 0x7f0602e7 +int dimen mtrl_slider_track_height 0x7f0602e8 +int dimen mtrl_slider_track_side_padding 0x7f0602e9 +int dimen mtrl_slider_widget_height 0x7f0602ea +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0602eb +int dimen mtrl_snackbar_background_corner_radius 0x7f0602ec +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0602ed +int dimen mtrl_snackbar_margin 0x7f0602ee +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0602ef +int dimen mtrl_snackbar_padding_horizontal 0x7f0602f0 +int dimen mtrl_switch_text_padding 0x7f0602f1 +int dimen mtrl_switch_thumb_elevation 0x7f0602f2 +int dimen mtrl_switch_thumb_icon_size 0x7f0602f3 +int dimen mtrl_switch_thumb_size 0x7f0602f4 +int dimen mtrl_switch_track_height 0x7f0602f5 +int dimen mtrl_switch_track_width 0x7f0602f6 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0602f7 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0602f8 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0602f9 +int dimen mtrl_textinput_box_stroke_width_default 0x7f0602fa +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0602fb +int dimen mtrl_textinput_counter_margin_start 0x7f0602fc +int dimen mtrl_textinput_end_icon_margin_start 0x7f0602fd +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0602fe +int dimen mtrl_textinput_start_icon_margin_end 0x7f0602ff +int dimen mtrl_toolbar_default_height 0x7f060300 +int dimen mtrl_tooltip_arrowSize 0x7f060301 +int dimen mtrl_tooltip_cornerSize 0x7f060302 +int dimen mtrl_tooltip_minHeight 0x7f060303 +int dimen mtrl_tooltip_minWidth 0x7f060304 +int dimen mtrl_tooltip_padding 0x7f060305 +int dimen mtrl_transition_shared_axis_slide_distance 0x7f060306 +int dimen notification_action_icon_size 0x7f060307 +int dimen notification_action_text_size 0x7f060308 +int dimen notification_big_circle_margin 0x7f060309 +int dimen notification_content_margin_start 0x7f06030a +int dimen notification_large_icon_height 0x7f06030b +int dimen notification_large_icon_width 0x7f06030c +int dimen notification_main_column_padding_top 0x7f06030d +int dimen notification_media_narrow_margin 0x7f06030e +int dimen notification_right_icon_size 0x7f06030f +int dimen notification_right_side_padding_top 0x7f060310 +int dimen notification_small_icon_background_padding 0x7f060311 +int dimen notification_small_icon_size_as_large 0x7f060312 +int dimen notification_subtext_size 0x7f060313 +int dimen notification_top_pad 0x7f060314 +int dimen notification_top_pad_large_text 0x7f060315 +int dimen sliding_pane_detail_pane_width 0x7f060316 +int dimen tooltip_corner_radius 0x7f060317 +int dimen tooltip_horizontal_padding 0x7f060318 +int dimen tooltip_margin 0x7f060319 +int dimen tooltip_precise_anchor_extra_offset 0x7f06031a +int dimen tooltip_precise_anchor_threshold 0x7f06031b +int dimen tooltip_vertical_padding 0x7f06031c +int dimen tooltip_y_offset_non_touch 0x7f06031d +int dimen tooltip_y_offset_touch 0x7f06031e +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000 +int drawable abc_action_bar_item_background_material 0x7f070001 +int drawable abc_btn_borderless_material 0x7f070002 +int drawable abc_btn_check_material 0x7f070003 +int drawable abc_btn_check_material_anim 0x7f070004 +int drawable abc_btn_check_to_on_mtrl_000 0x7f070005 +int drawable abc_btn_check_to_on_mtrl_015 0x7f070006 +int drawable abc_btn_colored_material 0x7f070007 +int drawable abc_btn_default_mtrl_shape 0x7f070008 +int drawable abc_btn_radio_material 0x7f070009 +int drawable abc_btn_radio_material_anim 0x7f07000a +int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000b +int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000c +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e +int drawable abc_cab_background_internal_bg 0x7f07000f +int drawable abc_cab_background_top_material 0x7f070010 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070011 +int drawable abc_control_background_material 0x7f070012 +int drawable abc_dialog_material_background 0x7f070013 +int drawable abc_edit_text_material 0x7f070014 +int drawable abc_ic_ab_back_material 0x7f070015 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070016 +int drawable abc_ic_clear_material 0x7f070017 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070018 +int drawable abc_ic_go_search_api_material 0x7f070019 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001a +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001b +int drawable abc_ic_menu_overflow_material 0x7f07001c +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001d +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001e +int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001f +int drawable abc_ic_search_api_material 0x7f070020 +int drawable abc_ic_voice_search_api_material 0x7f070021 +int drawable abc_item_background_holo_dark 0x7f070022 +int drawable abc_item_background_holo_light 0x7f070023 +int drawable abc_list_divider_material 0x7f070024 +int drawable abc_list_divider_mtrl_alpha 0x7f070025 +int drawable abc_list_focused_holo 0x7f070026 +int drawable abc_list_longpressed_holo 0x7f070027 +int drawable abc_list_pressed_holo_dark 0x7f070028 +int drawable abc_list_pressed_holo_light 0x7f070029 +int drawable abc_list_selector_background_transition_holo_dark 0x7f07002a +int drawable abc_list_selector_background_transition_holo_light 0x7f07002b +int drawable abc_list_selector_disabled_holo_dark 0x7f07002c +int drawable abc_list_selector_disabled_holo_light 0x7f07002d +int drawable abc_list_selector_holo_dark 0x7f07002e +int drawable abc_list_selector_holo_light 0x7f07002f +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070030 +int drawable abc_popup_background_mtrl_mult 0x7f070031 +int drawable abc_ratingbar_indicator_material 0x7f070032 +int drawable abc_ratingbar_material 0x7f070033 +int drawable abc_ratingbar_small_material 0x7f070034 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070035 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070036 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070037 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070038 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070039 +int drawable abc_seekbar_thumb_material 0x7f07003a +int drawable abc_seekbar_tick_mark_material 0x7f07003b +int drawable abc_seekbar_track_material 0x7f07003c +int drawable abc_spinner_mtrl_am_alpha 0x7f07003d +int drawable abc_spinner_textfield_background_material 0x7f07003e +int drawable abc_star_black_48dp 0x7f07003f +int drawable abc_star_half_black_48dp 0x7f070040 +int drawable abc_switch_thumb_material 0x7f070041 +int drawable abc_switch_track_mtrl_alpha 0x7f070042 +int drawable abc_tab_indicator_material 0x7f070043 +int drawable abc_tab_indicator_mtrl_alpha 0x7f070044 +int drawable abc_text_cursor_material 0x7f070045 +int drawable abc_text_select_handle_left_mtrl 0x7f070046 +int drawable abc_text_select_handle_middle_mtrl 0x7f070047 +int drawable abc_text_select_handle_right_mtrl 0x7f070048 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070049 +int drawable abc_textfield_default_mtrl_alpha 0x7f07004a +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07004b +int drawable abc_textfield_search_default_mtrl_alpha 0x7f07004c +int drawable abc_textfield_search_material 0x7f07004d +int drawable abc_vector_test 0x7f07004e +int drawable avd_hide_password 0x7f07004f +int drawable avd_show_password 0x7f070050 +int drawable btn_checkbox_checked_mtrl 0x7f070051 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070052 +int drawable btn_checkbox_unchecked_mtrl 0x7f070053 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070054 +int drawable btn_radio_off_mtrl 0x7f070055 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f070056 +int drawable btn_radio_on_mtrl 0x7f070057 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f070058 +int drawable design_fab_background 0x7f070059 +int drawable design_ic_visibility 0x7f07005a +int drawable design_ic_visibility_off 0x7f07005b +int drawable design_password_eye 0x7f07005c +int drawable design_snackbar_background 0x7f07005d +int drawable dotnet_bot 0x7f07005e +int drawable ic_arrow_back_black_24 0x7f07005f +int drawable ic_call_answer 0x7f070060 +int drawable ic_call_answer_low 0x7f070061 +int drawable ic_call_answer_video 0x7f070062 +int drawable ic_call_answer_video_low 0x7f070063 +int drawable ic_call_decline 0x7f070064 +int drawable ic_call_decline_low 0x7f070065 +int drawable ic_clear_black_24 0x7f070066 +int drawable ic_clock_black_24dp 0x7f070067 +int drawable ic_keyboard_black_24dp 0x7f070068 +int drawable ic_m3_chip_check 0x7f070069 +int drawable ic_m3_chip_checked_circle 0x7f07006a +int drawable ic_m3_chip_close 0x7f07006b +int drawable ic_mtrl_checked_circle 0x7f07006c +int drawable ic_mtrl_chip_checked_black 0x7f07006d +int drawable ic_mtrl_chip_checked_circle 0x7f07006e +int drawable ic_mtrl_chip_close_circle 0x7f07006f +int drawable ic_search_black_24 0x7f070070 +int drawable m3_avd_hide_password 0x7f070071 +int drawable m3_avd_show_password 0x7f070072 +int drawable m3_bottom_sheet_drag_handle 0x7f070073 +int drawable m3_password_eye 0x7f070074 +int drawable m3_popupmenu_background_overlay 0x7f070075 +int drawable m3_radiobutton_ripple 0x7f070076 +int drawable m3_selection_control_ripple 0x7f070077 +int drawable m3_tabs_background 0x7f070078 +int drawable m3_tabs_line_indicator 0x7f070079 +int drawable m3_tabs_rounded_line_indicator 0x7f07007a +int drawable m3_tabs_transparent_background 0x7f07007b +int drawable material_cursor_drawable 0x7f07007c +int drawable material_ic_calendar_black_24dp 0x7f07007d +int drawable material_ic_clear_black_24dp 0x7f07007e +int drawable material_ic_edit_black_24dp 0x7f07007f +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f070080 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f070081 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f070082 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f070083 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f070084 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f070085 +int drawable maui_splash 0x7f070086 +int drawable maui_splash_image 0x7f070087 +int drawable mtrl_bottomsheet_drag_handle 0x7f070088 +int drawable mtrl_checkbox_button 0x7f070089 +int drawable mtrl_checkbox_button_checked_unchecked 0x7f07008a +int drawable mtrl_checkbox_button_icon 0x7f07008b +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x7f07008c +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x7f07008d +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x7f07008e +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x7f07008f +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x7f070090 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x7f070091 +int drawable mtrl_checkbox_button_unchecked_checked 0x7f070092 +int drawable mtrl_dialog_background 0x7f070093 +int drawable mtrl_dropdown_arrow 0x7f070094 +int drawable mtrl_ic_arrow_drop_down 0x7f070095 +int drawable mtrl_ic_arrow_drop_up 0x7f070096 +int drawable mtrl_ic_cancel 0x7f070097 +int drawable mtrl_ic_check_mark 0x7f070098 +int drawable mtrl_ic_checkbox_checked 0x7f070099 +int drawable mtrl_ic_checkbox_unchecked 0x7f07009a +int drawable mtrl_ic_error 0x7f07009b +int drawable mtrl_ic_indeterminate 0x7f07009c +int drawable mtrl_navigation_bar_item_background 0x7f07009d +int drawable mtrl_popupmenu_background 0x7f07009e +int drawable mtrl_popupmenu_background_overlay 0x7f07009f +int drawable mtrl_switch_thumb 0x7f0700a0 +int drawable mtrl_switch_thumb_checked 0x7f0700a1 +int drawable mtrl_switch_thumb_checked_pressed 0x7f0700a2 +int drawable mtrl_switch_thumb_checked_unchecked 0x7f0700a3 +int drawable mtrl_switch_thumb_pressed 0x7f0700a4 +int drawable mtrl_switch_thumb_pressed_checked 0x7f0700a5 +int drawable mtrl_switch_thumb_pressed_unchecked 0x7f0700a6 +int drawable mtrl_switch_thumb_unchecked 0x7f0700a7 +int drawable mtrl_switch_thumb_unchecked_checked 0x7f0700a8 +int drawable mtrl_switch_thumb_unchecked_pressed 0x7f0700a9 +int drawable mtrl_switch_track 0x7f0700aa +int drawable mtrl_switch_track_decoration 0x7f0700ab +int drawable mtrl_tabs_default_indicator 0x7f0700ac +int drawable navigation_empty_icon 0x7f0700ad +int drawable notification_action_background 0x7f0700ae +int drawable notification_bg 0x7f0700af +int drawable notification_bg_low 0x7f0700b0 +int drawable notification_bg_low_normal 0x7f0700b1 +int drawable notification_bg_low_pressed 0x7f0700b2 +int drawable notification_bg_normal 0x7f0700b3 +int drawable notification_bg_normal_pressed 0x7f0700b4 +int drawable notification_icon_background 0x7f0700b5 +int drawable notification_oversize_large_icon_bg 0x7f0700b6 +int drawable notification_template_icon_bg 0x7f0700b7 +int drawable notification_template_icon_low_bg 0x7f0700b8 +int drawable notification_tile_bg 0x7f0700b9 +int drawable notify_panel_notification_icon_bg 0x7f0700ba +int drawable splash 0x7f0700bb +int drawable test_level_drawable 0x7f0700bc +int drawable tooltip_frame_dark 0x7f0700bd +int drawable tooltip_frame_light 0x7f0700be +int id accelerate 0x7f080000 +int id accessibility_action_clickable_span 0x7f080001 +int id accessibility_custom_action_0 0x7f080002 +int id accessibility_custom_action_1 0x7f080003 +int id accessibility_custom_action_10 0x7f080004 +int id accessibility_custom_action_11 0x7f080005 +int id accessibility_custom_action_12 0x7f080006 +int id accessibility_custom_action_13 0x7f080007 +int id accessibility_custom_action_14 0x7f080008 +int id accessibility_custom_action_15 0x7f080009 +int id accessibility_custom_action_16 0x7f08000a +int id accessibility_custom_action_17 0x7f08000b +int id accessibility_custom_action_18 0x7f08000c +int id accessibility_custom_action_19 0x7f08000d +int id accessibility_custom_action_2 0x7f08000e +int id accessibility_custom_action_20 0x7f08000f +int id accessibility_custom_action_21 0x7f080010 +int id accessibility_custom_action_22 0x7f080011 +int id accessibility_custom_action_23 0x7f080012 +int id accessibility_custom_action_24 0x7f080013 +int id accessibility_custom_action_25 0x7f080014 +int id accessibility_custom_action_26 0x7f080015 +int id accessibility_custom_action_27 0x7f080016 +int id accessibility_custom_action_28 0x7f080017 +int id accessibility_custom_action_29 0x7f080018 +int id accessibility_custom_action_3 0x7f080019 +int id accessibility_custom_action_30 0x7f08001a +int id accessibility_custom_action_31 0x7f08001b +int id accessibility_custom_action_4 0x7f08001c +int id accessibility_custom_action_5 0x7f08001d +int id accessibility_custom_action_6 0x7f08001e +int id accessibility_custom_action_7 0x7f08001f +int id accessibility_custom_action_8 0x7f080020 +int id accessibility_custom_action_9 0x7f080021 +int id action0 0x7f080022 +int id actionDown 0x7f080023 +int id actionDownUp 0x7f080024 +int id actionUp 0x7f080025 +int id action_bar 0x7f080026 +int id action_bar_activity_content 0x7f080027 +int id action_bar_container 0x7f080028 +int id action_bar_root 0x7f080029 +int id action_bar_spinner 0x7f08002a +int id action_bar_subtitle 0x7f08002b +int id action_bar_title 0x7f08002c +int id action_container 0x7f08002d +int id action_context_bar 0x7f08002e +int id action_divider 0x7f08002f +int id action_image 0x7f080030 +int id action_menu_divider 0x7f080031 +int id action_menu_presenter 0x7f080032 +int id action_mode_bar 0x7f080033 +int id action_mode_bar_stub 0x7f080034 +int id action_mode_close_button 0x7f080035 +int id action_text 0x7f080036 +int id actions 0x7f080037 +int id activity_chooser_view_content 0x7f080038 +int id adjacent 0x7f080039 +int id alertTitle 0x7f08003a +int id aligned 0x7f08003b +int id allStates 0x7f08003c +int id always 0x7f08003d +int id alwaysAllow 0x7f08003e +int id alwaysDisallow 0x7f08003f +int id androidx_window_activity_scope 0x7f080040 +int id antiClockwise 0x7f080041 +int id arc 0x7f080042 +int id asConfigured 0x7f080043 +int id background 0x7f080044 +int id barrier 0x7f080045 +int id baseline 0x7f080046 +int id bestChoice 0x7f080047 +int id bottom 0x7f080048 +int id bottomToTop 0x7f080049 +int id bounce 0x7f08004a +int id browser_actions_header_text 0x7f08004b +int id browser_actions_menu_item_icon 0x7f08004c +int id browser_actions_menu_item_text 0x7f08004d +int id browser_actions_menu_items 0x7f08004e +int id browser_actions_menu_view 0x7f08004f +int id button1 0x7f080050 +int id button2 0x7f080051 +int id button3 0x7f080052 +int id buttonPanel 0x7f080053 +int id cache_measures 0x7f080054 +int id callMeasure 0x7f080055 +int id cancel_action 0x7f080056 +int id cancel_button 0x7f080057 +int id center 0x7f080058 +int id chain 0x7f080059 +int id chain2 0x7f08005a +int id chains 0x7f08005b +int id checkbox 0x7f08005c +int id checked 0x7f08005d +int id chronometer 0x7f08005e +int id circle_center 0x7f08005f +int id clockwise 0x7f080060 +int id closest 0x7f080061 +int id confirm_button 0x7f080062 +int id constraint 0x7f080063 +int id container 0x7f080064 +int id content 0x7f080065 +int id contentPanel 0x7f080066 +int id coordinator 0x7f080067 +int id cos 0x7f080068 +int id currentState 0x7f080069 +int id custom 0x7f08006a +int id customPanel 0x7f08006b +int id cut 0x7f08006c +int id date_picker_actions 0x7f08006d +int id decelerate 0x7f08006e +int id decor_content_parent 0x7f08006f +int id default_activity_button 0x7f080070 +int id deltaRelative 0x7f080071 +int id dependency_ordering 0x7f080072 +int id design_bottom_sheet 0x7f080073 +int id design_menu_item_action_area 0x7f080074 +int id design_menu_item_action_area_stub 0x7f080075 +int id design_menu_item_text 0x7f080076 +int id design_navigation_view 0x7f080077 +int id dialog_button 0x7f080078 +int id dimensions 0x7f080079 +int id direct 0x7f08007a +int id dragAnticlockwise 0x7f08007b +int id dragClockwise 0x7f08007c +int id dragDown 0x7f08007d +int id dragEnd 0x7f08007e +int id dragLeft 0x7f08007f +int id dragRight 0x7f080080 +int id dragStart 0x7f080081 +int id dragUp 0x7f080082 +int id easeIn 0x7f080083 +int id easeInOut 0x7f080084 +int id easeOut 0x7f080085 +int id edit_query 0x7f080086 +int id edit_text_id 0x7f080087 +int id end 0x7f080088 +int id end_padder 0x7f080089 +int id expand_activities_button 0x7f08008a +int id expanded_menu 0x7f08008b +int id flip 0x7f08008c +int id flyoutcontent_appbar 0x7f08008d +int id fragment_container_view_tag 0x7f08008e +int id fullscreen_header 0x7f08008f +int id ghost_view 0x7f080090 +int id ghost_view_holder 0x7f080091 +int id glide_custom_view_target_tag 0x7f080092 +int id gone 0x7f080093 +int id graph 0x7f080094 +int id graph_wrap 0x7f080095 +int id group_divider 0x7f080096 +int id grouping 0x7f080097 +int id groups 0x7f080098 +int id header_title 0x7f080099 +int id hide_ime_id 0x7f08009a +int id home 0x7f08009b +int id honorRequest 0x7f08009c +int id horizontal_only 0x7f08009d +int id icon 0x7f08009e +int id icon1 0x7f08009f +int id icon_group 0x7f0800a0 +int id ignore 0x7f0800a1 +int id ignoreRequest 0x7f0800a2 +int id image 0x7f0800a3 +int id included 0x7f0800a4 +int id indeterminate 0x7f0800a5 +int id info 0x7f0800a6 +int id invisible 0x7f0800a7 +int id is_pooling_container_tag 0x7f0800a8 +int id item_touch_helper_previous_elevation 0x7f0800a9 +int id left 0x7f0800aa +int id legacy 0x7f0800ab +int id line1 0x7f0800ac +int id line3 0x7f0800ad +int id linear 0x7f0800ae +int id list_item 0x7f0800af +int id locale 0x7f0800b0 +int id ltr 0x7f0800b1 +int id m3_side_sheet 0x7f0800b2 +int id mask 0x7f0800b3 +int id masked 0x7f0800b4 +int id match_constraint 0x7f0800b5 +int id match_parent 0x7f0800b6 +int id material_clock_display 0x7f0800b7 +int id material_clock_display_and_toggle 0x7f0800b8 +int id material_clock_face 0x7f0800b9 +int id material_clock_hand 0x7f0800ba +int id material_clock_level 0x7f0800bb +int id material_clock_period_am_button 0x7f0800bc +int id material_clock_period_pm_button 0x7f0800bd +int id material_clock_period_toggle 0x7f0800be +int id material_hour_text_input 0x7f0800bf +int id material_hour_tv 0x7f0800c0 +int id material_label 0x7f0800c1 +int id material_minute_text_input 0x7f0800c2 +int id material_minute_tv 0x7f0800c3 +int id material_textinput_timepicker 0x7f0800c4 +int id material_timepicker_cancel_button 0x7f0800c5 +int id material_timepicker_container 0x7f0800c6 +int id material_timepicker_mode_button 0x7f0800c7 +int id material_timepicker_ok_button 0x7f0800c8 +int id material_timepicker_view 0x7f0800c9 +int id material_value_index 0x7f0800ca +int id media_actions 0x7f0800cb +int id media_controller_compat_view_tag 0x7f0800cc +int id message 0x7f0800cd +int id middle 0x7f0800ce +int id month_grid 0x7f0800cf +int id month_navigation_bar 0x7f0800d0 +int id month_navigation_fragment_toggle 0x7f0800d1 +int id month_navigation_next 0x7f0800d2 +int id month_navigation_previous 0x7f0800d3 +int id month_title 0x7f0800d4 +int id motion_base 0x7f0800d5 +int id mtrl_anchor_parent 0x7f0800d6 +int id mtrl_calendar_day_selector_frame 0x7f0800d7 +int id mtrl_calendar_days_of_week 0x7f0800d8 +int id mtrl_calendar_frame 0x7f0800d9 +int id mtrl_calendar_main_pane 0x7f0800da +int id mtrl_calendar_months 0x7f0800db +int id mtrl_calendar_selection_frame 0x7f0800dc +int id mtrl_calendar_text_input_frame 0x7f0800dd +int id mtrl_calendar_year_selector_frame 0x7f0800de +int id mtrl_card_checked_layer_id 0x7f0800df +int id mtrl_child_content_container 0x7f0800e0 +int id mtrl_internal_children_alpha_tag 0x7f0800e1 +int id mtrl_motion_snapshot_view 0x7f0800e2 +int id mtrl_picker_fullscreen 0x7f0800e3 +int id mtrl_picker_header 0x7f0800e4 +int id mtrl_picker_header_selection_text 0x7f0800e5 +int id mtrl_picker_header_title_and_selection 0x7f0800e6 +int id mtrl_picker_header_toggle 0x7f0800e7 +int id mtrl_picker_text_input_date 0x7f0800e8 +int id mtrl_picker_text_input_range_end 0x7f0800e9 +int id mtrl_picker_text_input_range_start 0x7f0800ea +int id mtrl_picker_title_text 0x7f0800eb +int id mtrl_view_tag_bottom_padding 0x7f0800ec +int id nav_controller_view_tag 0x7f0800ed +int id nav_host 0x7f0800ee +int id nav_host_fragment_container 0x7f0800ef +int id navigation_bar_item_active_indicator_view 0x7f0800f0 +int id navigation_bar_item_icon_container 0x7f0800f1 +int id navigation_bar_item_icon_view 0x7f0800f2 +int id navigation_bar_item_labels_group 0x7f0800f3 +int id navigation_bar_item_large_label_view 0x7f0800f4 +int id navigation_bar_item_small_label_view 0x7f0800f5 +int id navigation_header_container 0x7f0800f6 +int id navigation_layout 0x7f0800f7 +int id navigationlayout_appbar 0x7f0800f8 +int id navigationlayout_bottomtabs 0x7f0800f9 +int id navigationlayout_content 0x7f0800fa +int id navigationlayout_toptabs 0x7f0800fb +int id never 0x7f0800fc +int id noState 0x7f0800fd +int id none 0x7f0800fe +int id normal 0x7f0800ff +int id notification_background 0x7f080100 +int id notification_main_column 0x7f080101 +int id notification_main_column_container 0x7f080102 +int id off 0x7f080103 +int id on 0x7f080104 +int id open_search_bar_text_view 0x7f080105 +int id open_search_view_background 0x7f080106 +int id open_search_view_clear_button 0x7f080107 +int id open_search_view_content_container 0x7f080108 +int id open_search_view_divider 0x7f080109 +int id open_search_view_dummy_toolbar 0x7f08010a +int id open_search_view_edit_text 0x7f08010b +int id open_search_view_header_container 0x7f08010c +int id open_search_view_root 0x7f08010d +int id open_search_view_scrim 0x7f08010e +int id open_search_view_search_prefix 0x7f08010f +int id open_search_view_status_bar_spacer 0x7f080110 +int id open_search_view_toolbar 0x7f080111 +int id open_search_view_toolbar_container 0x7f080112 +int id overshoot 0x7f080113 +int id packed 0x7f080114 +int id parent 0x7f080115 +int id parentPanel 0x7f080116 +int id parent_matrix 0x7f080117 +int id path 0x7f080118 +int id pathRelative 0x7f080119 +int id percent 0x7f08011a +int id pooling_container_listener_holder_tag 0x7f08011b +int id position 0x7f08011c +int id pressed 0x7f08011d +int id progress 0x7f08011e +int id progress_circular 0x7f08011f +int id progress_horizontal 0x7f080120 +int id radio 0x7f080121 +int id ratio 0x7f080122 +int id rectangles 0x7f080123 +int id report_drawn 0x7f080124 +int id reverseSawtooth 0x7f080125 +int id right 0x7f080126 +int id right_icon 0x7f080127 +int id right_side 0x7f080128 +int id rounded 0x7f080129 +int id row_index_key 0x7f08012a +int id rtl 0x7f08012b +int id save_non_transition_alpha 0x7f08012c +int id save_overlay_view 0x7f08012d +int id sawtooth 0x7f08012e +int id scrollIndicatorDown 0x7f08012f +int id scrollIndicatorUp 0x7f080130 +int id scrollView 0x7f080131 +int id search_badge 0x7f080132 +int id search_bar 0x7f080133 +int id search_button 0x7f080134 +int id search_close_btn 0x7f080135 +int id search_edit_frame 0x7f080136 +int id search_go_btn 0x7f080137 +int id search_mag_icon 0x7f080138 +int id search_plate 0x7f080139 +int id search_src_text 0x7f08013a +int id search_voice_btn 0x7f08013b +int id secondaryProgress 0x7f08013c +int id select_dialog_listview 0x7f08013d +int id selection_type 0x7f08013e +int id sharedValueSet 0x7f08013f +int id sharedValueUnset 0x7f080140 +int id shellcontent_appbar 0x7f080141 +int id shortcut 0x7f080142 +int id sin 0x7f080143 +int id skipped 0x7f080144 +int id sliding_pane_detail_container 0x7f080145 +int id sliding_pane_layout 0x7f080146 +int id snackbar_action 0x7f080147 +int id snackbar_text 0x7f080148 +int id spacer 0x7f080149 +int id special_effects_controller_view_tag 0x7f08014a +int id spline 0x7f08014b +int id split_action_bar 0x7f08014c +int id spread 0x7f08014d +int id spread_inside 0x7f08014e +int id square 0x7f08014f +int id standard 0x7f080150 +int id start 0x7f080151 +int id startHorizontal 0x7f080152 +int id startVertical 0x7f080153 +int id status_bar_latest_event_content 0x7f080154 +int id submenuarrow 0x7f080155 +int id submit_area 0x7f080156 +int id tag_accessibility_actions 0x7f080157 +int id tag_accessibility_clickable_spans 0x7f080158 +int id tag_accessibility_heading 0x7f080159 +int id tag_accessibility_pane_title 0x7f08015a +int id tag_on_apply_window_listener 0x7f08015b +int id tag_on_receive_content_listener 0x7f08015c +int id tag_on_receive_content_mime_types 0x7f08015d +int id tag_screen_reader_focusable 0x7f08015e +int id tag_state_description 0x7f08015f +int id tag_transition_group 0x7f080160 +int id tag_unhandled_key_event_manager 0x7f080161 +int id tag_unhandled_key_listeners 0x7f080162 +int id tag_window_insets_animation_callback 0x7f080163 +int id text 0x7f080164 +int id text1 0x7f080165 +int id text2 0x7f080166 +int id textSpacerNoButtons 0x7f080167 +int id textSpacerNoTitle 0x7f080168 +int id text_input_end_icon 0x7f080169 +int id text_input_error_icon 0x7f08016a +int id text_input_start_icon 0x7f08016b +int id textinput_counter 0x7f08016c +int id textinput_error 0x7f08016d +int id textinput_helper_text 0x7f08016e +int id textinput_placeholder 0x7f08016f +int id textinput_prefix_text 0x7f080170 +int id textinput_suffix_text 0x7f080171 +int id time 0x7f080172 +int id title 0x7f080173 +int id titleDividerNoCustom 0x7f080174 +int id title_template 0x7f080175 +int id top 0x7f080176 +int id topPanel 0x7f080177 +int id topToBottom 0x7f080178 +int id touch_outside 0x7f080179 +int id transition_clip 0x7f08017a +int id transition_current_scene 0x7f08017b +int id transition_image_transform 0x7f08017c +int id transition_layout_save 0x7f08017d +int id transition_pause_alpha 0x7f08017e +int id transition_position 0x7f08017f +int id transition_scene_layoutid_cache 0x7f080180 +int id transition_transform 0x7f080181 +int id triangle 0x7f080182 +int id unchecked 0x7f080183 +int id up 0x7f080184 +int id vertical_only 0x7f080185 +int id view_offset_helper 0x7f080186 +int id view_transition 0x7f080187 +int id view_tree_lifecycle_owner 0x7f080188 +int id view_tree_on_back_pressed_dispatcher_owner 0x7f080189 +int id view_tree_saved_state_registry_owner 0x7f08018a +int id view_tree_view_model_store_owner 0x7f08018b +int id visible 0x7f08018c +int id visible_removing_fragment_view_tag 0x7f08018d +int id with_icon 0x7f08018e +int id wrap 0x7f08018f +int id wrap_content 0x7f080190 +int id wrap_content_constrained 0x7f080191 +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_navAnimTime 0x7f090005 +int integer config_tooltipAnimTime 0x7f090006 +int integer design_snackbar_text_max_lines 0x7f090007 +int integer design_tab_indicator_anim_duration_ms 0x7f090008 +int integer hide_password_duration 0x7f090009 +int integer m3_badge_max_number 0x7f09000a +int integer m3_btn_anim_delay_ms 0x7f09000b +int integer m3_btn_anim_duration_ms 0x7f09000c +int integer m3_card_anim_delay_ms 0x7f09000d +int integer m3_card_anim_duration_ms 0x7f09000e +int integer m3_chip_anim_duration 0x7f09000f +int integer m3_sys_motion_duration_extra_long1 0x7f090010 +int integer m3_sys_motion_duration_extra_long2 0x7f090011 +int integer m3_sys_motion_duration_extra_long3 0x7f090012 +int integer m3_sys_motion_duration_extra_long4 0x7f090013 +int integer m3_sys_motion_duration_long1 0x7f090014 +int integer m3_sys_motion_duration_long2 0x7f090015 +int integer m3_sys_motion_duration_long3 0x7f090016 +int integer m3_sys_motion_duration_long4 0x7f090017 +int integer m3_sys_motion_duration_medium1 0x7f090018 +int integer m3_sys_motion_duration_medium2 0x7f090019 +int integer m3_sys_motion_duration_medium3 0x7f09001a +int integer m3_sys_motion_duration_medium4 0x7f09001b +int integer m3_sys_motion_duration_short1 0x7f09001c +int integer m3_sys_motion_duration_short2 0x7f09001d +int integer m3_sys_motion_duration_short3 0x7f09001e +int integer m3_sys_motion_duration_short4 0x7f09001f +int integer m3_sys_motion_path 0x7f090020 +int integer m3_sys_shape_corner_extra_large_corner_family 0x7f090021 +int integer m3_sys_shape_corner_extra_small_corner_family 0x7f090022 +int integer m3_sys_shape_corner_full_corner_family 0x7f090023 +int integer m3_sys_shape_corner_large_corner_family 0x7f090024 +int integer m3_sys_shape_corner_medium_corner_family 0x7f090025 +int integer m3_sys_shape_corner_small_corner_family 0x7f090026 +int integer material_motion_duration_long_1 0x7f090027 +int integer material_motion_duration_long_2 0x7f090028 +int integer material_motion_duration_medium_1 0x7f090029 +int integer material_motion_duration_medium_2 0x7f09002a +int integer material_motion_duration_short_1 0x7f09002b +int integer material_motion_duration_short_2 0x7f09002c +int integer material_motion_path 0x7f09002d +int integer mtrl_badge_max_character_count 0x7f09002e +int integer mtrl_btn_anim_delay_ms 0x7f09002f +int integer mtrl_btn_anim_duration_ms 0x7f090030 +int integer mtrl_calendar_header_orientation 0x7f090031 +int integer mtrl_calendar_selection_text_lines 0x7f090032 +int integer mtrl_calendar_year_selector_span 0x7f090033 +int integer mtrl_card_anim_delay_ms 0x7f090034 +int integer mtrl_card_anim_duration_ms 0x7f090035 +int integer mtrl_chip_anim_duration 0x7f090036 +int integer mtrl_switch_thumb_motion_duration 0x7f090037 +int integer mtrl_switch_thumb_post_morphing_duration 0x7f090038 +int integer mtrl_switch_thumb_pre_morphing_duration 0x7f090039 +int integer mtrl_switch_thumb_pressed_duration 0x7f09003a +int integer mtrl_switch_thumb_viewport_center_coordinate 0x7f09003b +int integer mtrl_switch_thumb_viewport_size 0x7f09003c +int integer mtrl_switch_track_viewport_height 0x7f09003d +int integer mtrl_switch_track_viewport_width 0x7f09003e +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09003f +int integer mtrl_view_gone 0x7f090040 +int integer mtrl_view_invisible 0x7f090041 +int integer mtrl_view_visible 0x7f090042 +int integer show_password_duration 0x7f090043 +int integer status_bar_notification_info_maxnum 0x7f090044 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 +int interpolator fast_out_slow_in 0x7f0a0006 +int interpolator m3_sys_motion_easing_emphasized 0x7f0a0007 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x7f0a0008 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x7f0a0009 +int interpolator m3_sys_motion_easing_linear 0x7f0a000a +int interpolator m3_sys_motion_easing_standard 0x7f0a000b +int interpolator m3_sys_motion_easing_standard_accelerate 0x7f0a000c +int interpolator m3_sys_motion_easing_standard_decelerate 0x7f0a000d +int interpolator mtrl_fast_out_linear_in 0x7f0a000e +int interpolator mtrl_fast_out_slow_in 0x7f0a000f +int interpolator mtrl_linear 0x7f0a0010 +int interpolator mtrl_linear_out_slow_in 0x7f0a0011 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout browser_actions_context_menu_page 0x7f0b001c +int layout browser_actions_context_menu_row 0x7f0b001d +int layout custom_dialog 0x7f0b001e +int layout design_bottom_navigation_item 0x7f0b001f +int layout design_bottom_sheet_dialog 0x7f0b0020 +int layout design_layout_snackbar 0x7f0b0021 +int layout design_layout_snackbar_include 0x7f0b0022 +int layout design_layout_tab_icon 0x7f0b0023 +int layout design_layout_tab_text 0x7f0b0024 +int layout design_menu_item_action_area 0x7f0b0025 +int layout design_navigation_item 0x7f0b0026 +int layout design_navigation_item_header 0x7f0b0027 +int layout design_navigation_item_separator 0x7f0b0028 +int layout design_navigation_item_subheader 0x7f0b0029 +int layout design_navigation_menu 0x7f0b002a +int layout design_navigation_menu_item 0x7f0b002b +int layout design_text_input_end_icon 0x7f0b002c +int layout design_text_input_start_icon 0x7f0b002d +int layout drawer_layout 0x7f0b002e +int layout flyoutcontent 0x7f0b002f +int layout fragment_backstack 0x7f0b0030 +int layout ime_base_split_test_activity 0x7f0b0031 +int layout ime_secondary_split_test_activity 0x7f0b0032 +int layout m3_alert_dialog 0x7f0b0033 +int layout m3_alert_dialog_actions 0x7f0b0034 +int layout m3_alert_dialog_title 0x7f0b0035 +int layout m3_auto_complete_simple_item 0x7f0b0036 +int layout m3_side_sheet_dialog 0x7f0b0037 +int layout material_chip_input_combo 0x7f0b0038 +int layout material_clock_display 0x7f0b0039 +int layout material_clock_display_divider 0x7f0b003a +int layout material_clock_period_toggle 0x7f0b003b +int layout material_clock_period_toggle_land 0x7f0b003c +int layout material_clockface_textview 0x7f0b003d +int layout material_clockface_view 0x7f0b003e +int layout material_radial_view_group 0x7f0b003f +int layout material_textinput_timepicker 0x7f0b0040 +int layout material_time_chip 0x7f0b0041 +int layout material_time_input 0x7f0b0042 +int layout material_timepicker 0x7f0b0043 +int layout material_timepicker_dialog 0x7f0b0044 +int layout material_timepicker_textinput_display 0x7f0b0045 +int layout mtrl_alert_dialog 0x7f0b0046 +int layout mtrl_alert_dialog_actions 0x7f0b0047 +int layout mtrl_alert_dialog_title 0x7f0b0048 +int layout mtrl_alert_select_dialog_item 0x7f0b0049 +int layout mtrl_alert_select_dialog_multichoice 0x7f0b004a +int layout mtrl_alert_select_dialog_singlechoice 0x7f0b004b +int layout mtrl_auto_complete_simple_item 0x7f0b004c +int layout mtrl_calendar_day 0x7f0b004d +int layout mtrl_calendar_day_of_week 0x7f0b004e +int layout mtrl_calendar_days_of_week 0x7f0b004f +int layout mtrl_calendar_horizontal 0x7f0b0050 +int layout mtrl_calendar_month 0x7f0b0051 +int layout mtrl_calendar_month_labeled 0x7f0b0052 +int layout mtrl_calendar_month_navigation 0x7f0b0053 +int layout mtrl_calendar_months 0x7f0b0054 +int layout mtrl_calendar_vertical 0x7f0b0055 +int layout mtrl_calendar_year 0x7f0b0056 +int layout mtrl_layout_snackbar 0x7f0b0057 +int layout mtrl_layout_snackbar_include 0x7f0b0058 +int layout mtrl_navigation_rail_item 0x7f0b0059 +int layout mtrl_picker_actions 0x7f0b005a +int layout mtrl_picker_dialog 0x7f0b005b +int layout mtrl_picker_fullscreen 0x7f0b005c +int layout mtrl_picker_header_dialog 0x7f0b005d +int layout mtrl_picker_header_fullscreen 0x7f0b005e +int layout mtrl_picker_header_selection_text 0x7f0b005f +int layout mtrl_picker_header_title_text 0x7f0b0060 +int layout mtrl_picker_header_toggle 0x7f0b0061 +int layout mtrl_picker_text_input_date 0x7f0b0062 +int layout mtrl_picker_text_input_date_range 0x7f0b0063 +int layout mtrl_search_bar 0x7f0b0064 +int layout mtrl_search_view 0x7f0b0065 +int layout navigationlayout 0x7f0b0066 +int layout notification_action 0x7f0b0067 +int layout notification_action_tombstone 0x7f0b0068 +int layout notification_media_action 0x7f0b0069 +int layout notification_media_cancel_action 0x7f0b006a +int layout notification_template_big_media 0x7f0b006b +int layout notification_template_big_media_custom 0x7f0b006c +int layout notification_template_big_media_narrow 0x7f0b006d +int layout notification_template_big_media_narrow_custom 0x7f0b006e +int layout notification_template_custom_big 0x7f0b006f +int layout notification_template_icon_group 0x7f0b0070 +int layout notification_template_lines_media 0x7f0b0071 +int layout notification_template_media 0x7f0b0072 +int layout notification_template_media_custom 0x7f0b0073 +int layout notification_template_part_chronometer 0x7f0b0074 +int layout notification_template_part_time 0x7f0b0075 +int layout select_dialog_item_material 0x7f0b0076 +int layout select_dialog_multichoice_material 0x7f0b0077 +int layout select_dialog_singlechoice_material 0x7f0b0078 +int layout shellcontent 0x7f0b0079 +int layout support_simple_spinner_dropdown_item 0x7f0b007a +int mipmap appicon 0x7f0c0000 +int mipmap appicon_background 0x7f0c0001 +int mipmap appicon_foreground 0x7f0c0002 +int mipmap appicon_round 0x7f0c0003 +int plurals mtrl_badge_content_description 0x7f0d0000 +int string abc_action_bar_home_description 0x7f0e0000 +int string abc_action_bar_up_description 0x7f0e0001 +int string abc_action_menu_overflow_description 0x7f0e0002 +int string abc_action_mode_done 0x7f0e0003 +int string abc_activity_chooser_view_see_all 0x7f0e0004 +int string abc_activitychooserview_choose_application 0x7f0e0005 +int string abc_capital_off 0x7f0e0006 +int string abc_capital_on 0x7f0e0007 +int string abc_menu_alt_shortcut_label 0x7f0e0008 +int string abc_menu_ctrl_shortcut_label 0x7f0e0009 +int string abc_menu_delete_shortcut_label 0x7f0e000a +int string abc_menu_enter_shortcut_label 0x7f0e000b +int string abc_menu_function_shortcut_label 0x7f0e000c +int string abc_menu_meta_shortcut_label 0x7f0e000d +int string abc_menu_shift_shortcut_label 0x7f0e000e +int string abc_menu_space_shortcut_label 0x7f0e000f +int string abc_menu_sym_shortcut_label 0x7f0e0010 +int string abc_prepend_shortcut_label 0x7f0e0011 +int string abc_search_hint 0x7f0e0012 +int string abc_searchview_description_clear 0x7f0e0013 +int string abc_searchview_description_query 0x7f0e0014 +int string abc_searchview_description_search 0x7f0e0015 +int string abc_searchview_description_submit 0x7f0e0016 +int string abc_searchview_description_voice 0x7f0e0017 +int string abc_shareactionprovider_share_with 0x7f0e0018 +int string abc_shareactionprovider_share_with_application 0x7f0e0019 +int string abc_toolbar_collapse_description 0x7f0e001a +int string androidx_startup 0x7f0e001b +int string appbar_scrolling_view_behavior 0x7f0e001c +int string bottom_sheet_behavior 0x7f0e001d +int string bottomsheet_action_collapse 0x7f0e001e +int string bottomsheet_action_expand 0x7f0e001f +int string bottomsheet_action_expand_halfway 0x7f0e0020 +int string bottomsheet_drag_handle_clicked 0x7f0e0021 +int string bottomsheet_drag_handle_content_description 0x7f0e0022 +int string call_notification_answer_action 0x7f0e0023 +int string call_notification_answer_video_action 0x7f0e0024 +int string call_notification_decline_action 0x7f0e0025 +int string call_notification_hang_up_action 0x7f0e0026 +int string call_notification_incoming_text 0x7f0e0027 +int string call_notification_ongoing_text 0x7f0e0028 +int string call_notification_screening_text 0x7f0e0029 +int string character_counter_content_description 0x7f0e002a +int string character_counter_overflowed_content_description 0x7f0e002b +int string character_counter_pattern 0x7f0e002c +int string clear_text_end_icon_content_description 0x7f0e002d +int string copy_toast_msg 0x7f0e002e +int string dest_title 0x7f0e002f +int string error_a11y_label 0x7f0e0030 +int string error_icon_content_description 0x7f0e0031 +int string exposed_dropdown_menu_content_description 0x7f0e0032 +int string fab_transformation_scrim_behavior 0x7f0e0033 +int string fab_transformation_sheet_behavior 0x7f0e0034 +int string fallback_menu_item_copy_link 0x7f0e0035 +int string fallback_menu_item_open_in_browser 0x7f0e0036 +int string fallback_menu_item_share_link 0x7f0e0037 +int string hide_bottom_view_on_scroll_behavior 0x7f0e0038 +int string icon_content_description 0x7f0e0039 +int string item_view_role_description 0x7f0e003a +int string m3_exceed_max_badge_text_suffix 0x7f0e003b +int string m3_ref_typeface_brand_medium 0x7f0e003c +int string m3_ref_typeface_brand_regular 0x7f0e003d +int string m3_ref_typeface_plain_medium 0x7f0e003e +int string m3_ref_typeface_plain_regular 0x7f0e003f +int string m3_sys_motion_easing_emphasized 0x7f0e0040 +int string m3_sys_motion_easing_emphasized_accelerate 0x7f0e0041 +int string m3_sys_motion_easing_emphasized_decelerate 0x7f0e0042 +int string m3_sys_motion_easing_emphasized_path_data 0x7f0e0043 +int string m3_sys_motion_easing_legacy 0x7f0e0044 +int string m3_sys_motion_easing_legacy_accelerate 0x7f0e0045 +int string m3_sys_motion_easing_legacy_decelerate 0x7f0e0046 +int string m3_sys_motion_easing_linear 0x7f0e0047 +int string m3_sys_motion_easing_standard 0x7f0e0048 +int string m3_sys_motion_easing_standard_accelerate 0x7f0e0049 +int string m3_sys_motion_easing_standard_decelerate 0x7f0e004a +int string material_clock_display_divider 0x7f0e004b +int string material_clock_toggle_content_description 0x7f0e004c +int string material_hour_24h_suffix 0x7f0e004d +int string material_hour_selection 0x7f0e004e +int string material_hour_suffix 0x7f0e004f +int string material_minute_selection 0x7f0e0050 +int string material_minute_suffix 0x7f0e0051 +int string material_motion_easing_accelerated 0x7f0e0052 +int string material_motion_easing_decelerated 0x7f0e0053 +int string material_motion_easing_emphasized 0x7f0e0054 +int string material_motion_easing_linear 0x7f0e0055 +int string material_motion_easing_standard 0x7f0e0056 +int string material_slider_range_end 0x7f0e0057 +int string material_slider_range_start 0x7f0e0058 +int string material_slider_value 0x7f0e0059 +int string material_timepicker_am 0x7f0e005a +int string material_timepicker_clock_mode_description 0x7f0e005b +int string material_timepicker_hour 0x7f0e005c +int string material_timepicker_minute 0x7f0e005d +int string material_timepicker_pm 0x7f0e005e +int string material_timepicker_select_time 0x7f0e005f +int string material_timepicker_text_input_mode_description 0x7f0e0060 +int string maui_empty_unused 0x7f0e0061 +int string mtrl_badge_numberless_content_description 0x7f0e0062 +int string mtrl_checkbox_button_icon_path_checked 0x7f0e0063 +int string mtrl_checkbox_button_icon_path_group_name 0x7f0e0064 +int string mtrl_checkbox_button_icon_path_indeterminate 0x7f0e0065 +int string mtrl_checkbox_button_icon_path_name 0x7f0e0066 +int string mtrl_checkbox_button_path_checked 0x7f0e0067 +int string mtrl_checkbox_button_path_group_name 0x7f0e0068 +int string mtrl_checkbox_button_path_name 0x7f0e0069 +int string mtrl_checkbox_button_path_unchecked 0x7f0e006a +int string mtrl_checkbox_state_description_checked 0x7f0e006b +int string mtrl_checkbox_state_description_indeterminate 0x7f0e006c +int string mtrl_checkbox_state_description_unchecked 0x7f0e006d +int string mtrl_chip_close_icon_content_description 0x7f0e006e +int string mtrl_exceed_max_badge_number_content_description 0x7f0e006f +int string mtrl_exceed_max_badge_number_suffix 0x7f0e0070 +int string mtrl_picker_a11y_next_month 0x7f0e0071 +int string mtrl_picker_a11y_prev_month 0x7f0e0072 +int string mtrl_picker_announce_current_range_selection 0x7f0e0073 +int string mtrl_picker_announce_current_selection 0x7f0e0074 +int string mtrl_picker_announce_current_selection_none 0x7f0e0075 +int string mtrl_picker_cancel 0x7f0e0076 +int string mtrl_picker_confirm 0x7f0e0077 +int string mtrl_picker_date_header_selected 0x7f0e0078 +int string mtrl_picker_date_header_title 0x7f0e0079 +int string mtrl_picker_date_header_unselected 0x7f0e007a +int string mtrl_picker_day_of_week_column_header 0x7f0e007b +int string mtrl_picker_end_date_description 0x7f0e007c +int string mtrl_picker_invalid_format 0x7f0e007d +int string mtrl_picker_invalid_format_example 0x7f0e007e +int string mtrl_picker_invalid_format_use 0x7f0e007f +int string mtrl_picker_invalid_range 0x7f0e0080 +int string mtrl_picker_navigate_to_current_year_description 0x7f0e0081 +int string mtrl_picker_navigate_to_year_description 0x7f0e0082 +int string mtrl_picker_out_of_range 0x7f0e0083 +int string mtrl_picker_range_header_only_end_selected 0x7f0e0084 +int string mtrl_picker_range_header_only_start_selected 0x7f0e0085 +int string mtrl_picker_range_header_selected 0x7f0e0086 +int string mtrl_picker_range_header_title 0x7f0e0087 +int string mtrl_picker_range_header_unselected 0x7f0e0088 +int string mtrl_picker_save 0x7f0e0089 +int string mtrl_picker_start_date_description 0x7f0e008a +int string mtrl_picker_text_input_date_hint 0x7f0e008b +int string mtrl_picker_text_input_date_range_end_hint 0x7f0e008c +int string mtrl_picker_text_input_date_range_start_hint 0x7f0e008d +int string mtrl_picker_text_input_day_abbr 0x7f0e008e +int string mtrl_picker_text_input_month_abbr 0x7f0e008f +int string mtrl_picker_text_input_year_abbr 0x7f0e0090 +int string mtrl_picker_today_description 0x7f0e0091 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0e0092 +int string mtrl_picker_toggle_to_day_selection 0x7f0e0093 +int string mtrl_picker_toggle_to_text_input_mode 0x7f0e0094 +int string mtrl_picker_toggle_to_year_selection 0x7f0e0095 +int string mtrl_switch_thumb_group_name 0x7f0e0096 +int string mtrl_switch_thumb_path_checked 0x7f0e0097 +int string mtrl_switch_thumb_path_morphing 0x7f0e0098 +int string mtrl_switch_thumb_path_name 0x7f0e0099 +int string mtrl_switch_thumb_path_pressed 0x7f0e009a +int string mtrl_switch_thumb_path_unchecked 0x7f0e009b +int string mtrl_switch_track_decoration_path 0x7f0e009c +int string mtrl_switch_track_path 0x7f0e009d +int string mtrl_timepicker_cancel 0x7f0e009e +int string mtrl_timepicker_confirm 0x7f0e009f +int string nav_app_bar_navigate_up_description 0x7f0e00a0 +int string nav_app_bar_open_drawer_description 0x7f0e00a1 +int string overflow_tab_title 0x7f0e00a2 +int string password_toggle_content_description 0x7f0e00a3 +int string path_password_eye 0x7f0e00a4 +int string path_password_eye_mask_strike_through 0x7f0e00a5 +int string path_password_eye_mask_visible 0x7f0e00a6 +int string path_password_strike_through 0x7f0e00a7 +int string search_menu_title 0x7f0e00a8 +int string searchbar_scrolling_view_behavior 0x7f0e00a9 +int string searchview_clear_text_content_description 0x7f0e00aa +int string searchview_navigation_content_description 0x7f0e00ab +int string side_sheet_accessibility_pane_title 0x7f0e00ac +int string side_sheet_behavior 0x7f0e00ad +int string status_bar_notification_info_overflow 0x7f0e00ae +int style ActionMode 0x7f0f0000 +int style AlertDialog.AppCompat 0x7f0f0001 +int style AlertDialog.AppCompat.Light 0x7f0f0002 +int style Animation.AppCompat.Dialog 0x7f0f0003 +int style Animation.AppCompat.DropDownUp 0x7f0f0004 +int style Animation.AppCompat.Tooltip 0x7f0f0005 +int style Animation.Design.BottomSheetDialog 0x7f0f0006 +int style Animation.Material3.BottomSheetDialog 0x7f0f0007 +int style Animation.Material3.SideSheetDialog 0x7f0f0008 +int style Animation.Material3.SideSheetDialog.Left 0x7f0f0009 +int style Animation.Material3.SideSheetDialog.Right 0x7f0f000a +int style Animation.MaterialComponents.BottomSheetDialog 0x7f0f000b +int style AppTheme 0x7f0f000c +int style AppTheme.NoActionBar 0x7f0f000d +int style Base.AlertDialog.AppCompat 0x7f0f000e +int style Base.AlertDialog.AppCompat.Light 0x7f0f000f +int style Base.Animation.AppCompat.Dialog 0x7f0f0010 +int style Base.Animation.AppCompat.DropDownUp 0x7f0f0011 +int style Base.Animation.AppCompat.Tooltip 0x7f0f0012 +int style Base.CardView 0x7f0f0013 +int style Base.DialogWindowTitle.AppCompat 0x7f0f0014 +int style Base.DialogWindowTitleBackground.AppCompat 0x7f0f0015 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0016 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0017 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f0018 +int style Base.TextAppearance.AppCompat 0x7f0f0019 +int style Base.TextAppearance.AppCompat.Body1 0x7f0f001a +int style Base.TextAppearance.AppCompat.Body2 0x7f0f001b +int style Base.TextAppearance.AppCompat.Button 0x7f0f001c +int style Base.TextAppearance.AppCompat.Caption 0x7f0f001d +int style Base.TextAppearance.AppCompat.Display1 0x7f0f001e +int style Base.TextAppearance.AppCompat.Display2 0x7f0f001f +int style Base.TextAppearance.AppCompat.Display3 0x7f0f0020 +int style Base.TextAppearance.AppCompat.Display4 0x7f0f0021 +int style Base.TextAppearance.AppCompat.Headline 0x7f0f0022 +int style Base.TextAppearance.AppCompat.Inverse 0x7f0f0023 +int style Base.TextAppearance.AppCompat.Large 0x7f0f0024 +int style Base.TextAppearance.AppCompat.Large.Inverse 0x7f0f0025 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f0026 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f0027 +int style Base.TextAppearance.AppCompat.Medium 0x7f0f0028 +int style Base.TextAppearance.AppCompat.Medium.Inverse 0x7f0f0029 +int style Base.TextAppearance.AppCompat.Menu 0x7f0f002a +int style Base.TextAppearance.AppCompat.SearchResult 0x7f0f002b +int style Base.TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f002c +int style Base.TextAppearance.AppCompat.SearchResult.Title 0x7f0f002d +int style Base.TextAppearance.AppCompat.Small 0x7f0f002e +int style Base.TextAppearance.AppCompat.Small.Inverse 0x7f0f002f +int style Base.TextAppearance.AppCompat.Subhead 0x7f0f0030 +int style Base.TextAppearance.AppCompat.Subhead.Inverse 0x7f0f0031 +int style Base.TextAppearance.AppCompat.Title 0x7f0f0032 +int style Base.TextAppearance.AppCompat.Title.Inverse 0x7f0f0033 +int style Base.TextAppearance.AppCompat.Tooltip 0x7f0f0034 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f0035 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f0036 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f0037 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f0038 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f0039 +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f003a +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f003b +int style Base.TextAppearance.AppCompat.Widget.Button 0x7f0f003c +int style Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f003d +int style Base.TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f003e +int style Base.TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f003f +int style Base.TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f0040 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f0041 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f0042 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f0043 +int style Base.TextAppearance.AppCompat.Widget.Switch 0x7f0f0044 +int style Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f0045 +int style Base.TextAppearance.Material3.Search 0x7f0f0046 +int style Base.TextAppearance.MaterialComponents.Badge 0x7f0f0047 +int style Base.TextAppearance.MaterialComponents.Button 0x7f0f0048 +int style Base.TextAppearance.MaterialComponents.Headline6 0x7f0f0049 +int style Base.TextAppearance.MaterialComponents.Subtitle2 0x7f0f004a +int style Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f004b +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f004c +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f004d +int style Base.Theme.AppCompat 0x7f0f004e +int style Base.Theme.AppCompat.CompactMenu 0x7f0f004f +int style Base.Theme.AppCompat.Dialog 0x7f0f0050 +int style Base.Theme.AppCompat.Dialog.Alert 0x7f0f0051 +int style Base.Theme.AppCompat.Dialog.FixedSize 0x7f0f0052 +int style Base.Theme.AppCompat.Dialog.MinWidth 0x7f0f0053 +int style Base.Theme.AppCompat.DialogWhenLarge 0x7f0f0054 +int style Base.Theme.AppCompat.Light 0x7f0f0055 +int style Base.Theme.AppCompat.Light.DarkActionBar 0x7f0f0056 +int style Base.Theme.AppCompat.Light.Dialog 0x7f0f0057 +int style Base.Theme.AppCompat.Light.Dialog.Alert 0x7f0f0058 +int style Base.Theme.AppCompat.Light.Dialog.FixedSize 0x7f0f0059 +int style Base.Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f005a +int style Base.Theme.AppCompat.Light.DialogWhenLarge 0x7f0f005b +int style Base.Theme.Material3.Dark 0x7f0f005c +int style Base.Theme.Material3.Dark.BottomSheetDialog 0x7f0f005d +int style Base.Theme.Material3.Dark.Dialog 0x7f0f005e +int style Base.Theme.Material3.Dark.Dialog.FixedSize 0x7f0f005f +int style Base.Theme.Material3.Dark.DialogWhenLarge 0x7f0f0060 +int style Base.Theme.Material3.Dark.SideSheetDialog 0x7f0f0061 +int style Base.Theme.Material3.Light 0x7f0f0062 +int style Base.Theme.Material3.Light.BottomSheetDialog 0x7f0f0063 +int style Base.Theme.Material3.Light.Dialog 0x7f0f0064 +int style Base.Theme.Material3.Light.Dialog.FixedSize 0x7f0f0065 +int style Base.Theme.Material3.Light.DialogWhenLarge 0x7f0f0066 +int style Base.Theme.Material3.Light.SideSheetDialog 0x7f0f0067 +int style Base.Theme.MaterialComponents 0x7f0f0068 +int style Base.Theme.MaterialComponents.Bridge 0x7f0f0069 +int style Base.Theme.MaterialComponents.CompactMenu 0x7f0f006a +int style Base.Theme.MaterialComponents.Dialog 0x7f0f006b +int style Base.Theme.MaterialComponents.Dialog.Alert 0x7f0f006c +int style Base.Theme.MaterialComponents.Dialog.Bridge 0x7f0f006d +int style Base.Theme.MaterialComponents.Dialog.FixedSize 0x7f0f006e +int style Base.Theme.MaterialComponents.Dialog.MinWidth 0x7f0f006f +int style Base.Theme.MaterialComponents.DialogWhenLarge 0x7f0f0070 +int style Base.Theme.MaterialComponents.Light 0x7f0f0071 +int style Base.Theme.MaterialComponents.Light.Bridge 0x7f0f0072 +int style Base.Theme.MaterialComponents.Light.DarkActionBar 0x7f0f0073 +int style Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0074 +int style Base.Theme.MaterialComponents.Light.Dialog 0x7f0f0075 +int style Base.Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0076 +int style Base.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0077 +int style Base.Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f0078 +int style Base.Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f0079 +int style Base.Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f007a +int style Base.ThemeOverlay.AppCompat 0x7f0f007b +int style Base.ThemeOverlay.AppCompat.ActionBar 0x7f0f007c +int style Base.ThemeOverlay.AppCompat.Dark 0x7f0f007d +int style Base.ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f007e +int style Base.ThemeOverlay.AppCompat.Dialog 0x7f0f007f +int style Base.ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f0080 +int style Base.ThemeOverlay.AppCompat.Light 0x7f0f0081 +int style Base.ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f0082 +int style Base.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0083 +int style Base.ThemeOverlay.Material3.Dialog 0x7f0f0084 +int style Base.ThemeOverlay.Material3.SideSheetDialog 0x7f0f0085 +int style Base.ThemeOverlay.Material3.TextInputEditText 0x7f0f0086 +int style Base.ThemeOverlay.MaterialComponents.Dialog 0x7f0f0087 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f0088 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f0089 +int style Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f008a +int style Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f008b +int style Base.V14.Theme.Material3.Dark 0x7f0f008c +int style Base.V14.Theme.Material3.Dark.BottomSheetDialog 0x7f0f008d +int style Base.V14.Theme.Material3.Dark.Dialog 0x7f0f008e +int style Base.V14.Theme.Material3.Dark.SideSheetDialog 0x7f0f008f +int style Base.V14.Theme.Material3.Light 0x7f0f0090 +int style Base.V14.Theme.Material3.Light.BottomSheetDialog 0x7f0f0091 +int style Base.V14.Theme.Material3.Light.Dialog 0x7f0f0092 +int style Base.V14.Theme.Material3.Light.SideSheetDialog 0x7f0f0093 +int style Base.V14.Theme.MaterialComponents 0x7f0f0094 +int style Base.V14.Theme.MaterialComponents.Bridge 0x7f0f0095 +int style Base.V14.Theme.MaterialComponents.Dialog 0x7f0f0096 +int style Base.V14.Theme.MaterialComponents.Dialog.Bridge 0x7f0f0097 +int style Base.V14.Theme.MaterialComponents.Light 0x7f0f0098 +int style Base.V14.Theme.MaterialComponents.Light.Bridge 0x7f0f0099 +int style Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f009a +int style Base.V14.Theme.MaterialComponents.Light.Dialog 0x7f0f009b +int style Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f009c +int style Base.V14.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f009d +int style Base.V14.ThemeOverlay.Material3.SideSheetDialog 0x7f0f009e +int style Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f009f +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog 0x7f0f00a0 +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f00a1 +int style Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f00a2 +int style Base.V14.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f00a3 +int style Base.V21.Theme.AppCompat 0x7f0f00a4 +int style Base.V21.Theme.AppCompat.Dialog 0x7f0f00a5 +int style Base.V21.Theme.AppCompat.Light 0x7f0f00a6 +int style Base.V21.Theme.AppCompat.Light.Dialog 0x7f0f00a7 +int style Base.V21.Theme.MaterialComponents 0x7f0f00a8 +int style Base.V21.Theme.MaterialComponents.Dialog 0x7f0f00a9 +int style Base.V21.Theme.MaterialComponents.Light 0x7f0f00aa +int style Base.V21.Theme.MaterialComponents.Light.Dialog 0x7f0f00ab +int style Base.V21.ThemeOverlay.AppCompat.Dialog 0x7f0f00ac +int style Base.V21.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f00ad +int style Base.V21.ThemeOverlay.Material3.SideSheetDialog 0x7f0f00ae +int style Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f00af +int style Base.V22.Theme.AppCompat 0x7f0f00b0 +int style Base.V22.Theme.AppCompat.Light 0x7f0f00b1 +int style Base.V23.Theme.AppCompat 0x7f0f00b2 +int style Base.V23.Theme.AppCompat.Light 0x7f0f00b3 +int style Base.V24.Theme.Material3.Dark 0x7f0f00b4 +int style Base.V24.Theme.Material3.Dark.Dialog 0x7f0f00b5 +int style Base.V24.Theme.Material3.Light 0x7f0f00b6 +int style Base.V24.Theme.Material3.Light.Dialog 0x7f0f00b7 +int style Base.V26.Theme.AppCompat 0x7f0f00b8 +int style Base.V26.Theme.AppCompat.Light 0x7f0f00b9 +int style Base.V26.Widget.AppCompat.Toolbar 0x7f0f00ba +int style Base.V28.Theme.AppCompat 0x7f0f00bb +int style Base.V28.Theme.AppCompat.Light 0x7f0f00bc +int style Base.V7.Theme.AppCompat 0x7f0f00bd +int style Base.V7.Theme.AppCompat.Dialog 0x7f0f00be +int style Base.V7.Theme.AppCompat.Light 0x7f0f00bf +int style Base.V7.Theme.AppCompat.Light.Dialog 0x7f0f00c0 +int style Base.V7.ThemeOverlay.AppCompat.Dialog 0x7f0f00c1 +int style Base.V7.Widget.AppCompat.AutoCompleteTextView 0x7f0f00c2 +int style Base.V7.Widget.AppCompat.EditText 0x7f0f00c3 +int style Base.V7.Widget.AppCompat.Toolbar 0x7f0f00c4 +int style Base.Widget.AppCompat.ActionBar 0x7f0f00c5 +int style Base.Widget.AppCompat.ActionBar.Solid 0x7f0f00c6 +int style Base.Widget.AppCompat.ActionBar.TabBar 0x7f0f00c7 +int style Base.Widget.AppCompat.ActionBar.TabText 0x7f0f00c8 +int style Base.Widget.AppCompat.ActionBar.TabView 0x7f0f00c9 +int style Base.Widget.AppCompat.ActionButton 0x7f0f00ca +int style Base.Widget.AppCompat.ActionButton.CloseMode 0x7f0f00cb +int style Base.Widget.AppCompat.ActionButton.Overflow 0x7f0f00cc +int style Base.Widget.AppCompat.ActionMode 0x7f0f00cd +int style Base.Widget.AppCompat.ActivityChooserView 0x7f0f00ce +int style Base.Widget.AppCompat.AutoCompleteTextView 0x7f0f00cf +int style Base.Widget.AppCompat.Button 0x7f0f00d0 +int style Base.Widget.AppCompat.Button.Borderless 0x7f0f00d1 +int style Base.Widget.AppCompat.Button.Borderless.Colored 0x7f0f00d2 +int style Base.Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f00d3 +int style Base.Widget.AppCompat.Button.Colored 0x7f0f00d4 +int style Base.Widget.AppCompat.Button.Small 0x7f0f00d5 +int style Base.Widget.AppCompat.ButtonBar 0x7f0f00d6 +int style Base.Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f00d7 +int style Base.Widget.AppCompat.CompoundButton.CheckBox 0x7f0f00d8 +int style Base.Widget.AppCompat.CompoundButton.RadioButton 0x7f0f00d9 +int style Base.Widget.AppCompat.CompoundButton.Switch 0x7f0f00da +int style Base.Widget.AppCompat.DrawerArrowToggle 0x7f0f00db +int style Base.Widget.AppCompat.DrawerArrowToggle.Common 0x7f0f00dc +int style Base.Widget.AppCompat.DropDownItem.Spinner 0x7f0f00dd +int style Base.Widget.AppCompat.EditText 0x7f0f00de +int style Base.Widget.AppCompat.ImageButton 0x7f0f00df +int style Base.Widget.AppCompat.Light.ActionBar 0x7f0f00e0 +int style Base.Widget.AppCompat.Light.ActionBar.Solid 0x7f0f00e1 +int style Base.Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f00e2 +int style Base.Widget.AppCompat.Light.ActionBar.TabText 0x7f0f00e3 +int style Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f00e4 +int style Base.Widget.AppCompat.Light.ActionBar.TabView 0x7f0f00e5 +int style Base.Widget.AppCompat.Light.PopupMenu 0x7f0f00e6 +int style Base.Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f00e7 +int style Base.Widget.AppCompat.ListMenuView 0x7f0f00e8 +int style Base.Widget.AppCompat.ListPopupWindow 0x7f0f00e9 +int style Base.Widget.AppCompat.ListView 0x7f0f00ea +int style Base.Widget.AppCompat.ListView.DropDown 0x7f0f00eb +int style Base.Widget.AppCompat.ListView.Menu 0x7f0f00ec +int style Base.Widget.AppCompat.PopupMenu 0x7f0f00ed +int style Base.Widget.AppCompat.PopupMenu.Overflow 0x7f0f00ee +int style Base.Widget.AppCompat.PopupWindow 0x7f0f00ef +int style Base.Widget.AppCompat.ProgressBar 0x7f0f00f0 +int style Base.Widget.AppCompat.ProgressBar.Horizontal 0x7f0f00f1 +int style Base.Widget.AppCompat.RatingBar 0x7f0f00f2 +int style Base.Widget.AppCompat.RatingBar.Indicator 0x7f0f00f3 +int style Base.Widget.AppCompat.RatingBar.Small 0x7f0f00f4 +int style Base.Widget.AppCompat.SearchView 0x7f0f00f5 +int style Base.Widget.AppCompat.SearchView.ActionBar 0x7f0f00f6 +int style Base.Widget.AppCompat.SeekBar 0x7f0f00f7 +int style Base.Widget.AppCompat.SeekBar.Discrete 0x7f0f00f8 +int style Base.Widget.AppCompat.Spinner 0x7f0f00f9 +int style Base.Widget.AppCompat.Spinner.Underlined 0x7f0f00fa +int style Base.Widget.AppCompat.TextView 0x7f0f00fb +int style Base.Widget.AppCompat.TextView.SpinnerItem 0x7f0f00fc +int style Base.Widget.AppCompat.Toolbar 0x7f0f00fd +int style Base.Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f00fe +int style Base.Widget.Design.TabLayout 0x7f0f00ff +int style Base.Widget.Material3.ActionBar.Solid 0x7f0f0100 +int style Base.Widget.Material3.ActionMode 0x7f0f0101 +int style Base.Widget.Material3.BottomNavigationView 0x7f0f0102 +int style Base.Widget.Material3.CardView 0x7f0f0103 +int style Base.Widget.Material3.Chip 0x7f0f0104 +int style Base.Widget.Material3.CollapsingToolbar 0x7f0f0105 +int style Base.Widget.Material3.CompoundButton.CheckBox 0x7f0f0106 +int style Base.Widget.Material3.CompoundButton.RadioButton 0x7f0f0107 +int style Base.Widget.Material3.CompoundButton.Switch 0x7f0f0108 +int style Base.Widget.Material3.ExtendedFloatingActionButton 0x7f0f0109 +int style Base.Widget.Material3.ExtendedFloatingActionButton.Icon 0x7f0f010a +int style Base.Widget.Material3.FloatingActionButton 0x7f0f010b +int style Base.Widget.Material3.FloatingActionButton.Large 0x7f0f010c +int style Base.Widget.Material3.FloatingActionButton.Small 0x7f0f010d +int style Base.Widget.Material3.Light.ActionBar.Solid 0x7f0f010e +int style Base.Widget.Material3.MaterialCalendar.NavigationButton 0x7f0f010f +int style Base.Widget.Material3.Snackbar 0x7f0f0110 +int style Base.Widget.Material3.TabLayout 0x7f0f0111 +int style Base.Widget.Material3.TabLayout.OnSurface 0x7f0f0112 +int style Base.Widget.Material3.TabLayout.Secondary 0x7f0f0113 +int style Base.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f0114 +int style Base.Widget.MaterialComponents.CheckedTextView 0x7f0f0115 +int style Base.Widget.MaterialComponents.Chip 0x7f0f0116 +int style Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0117 +int style Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton 0x7f0f0118 +int style Base.Widget.MaterialComponents.PopupMenu 0x7f0f0119 +int style Base.Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f011a +int style Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f011b +int style Base.Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f011c +int style Base.Widget.MaterialComponents.Slider 0x7f0f011d +int style Base.Widget.MaterialComponents.Snackbar 0x7f0f011e +int style Base.Widget.MaterialComponents.TextInputEditText 0x7f0f011f +int style Base.Widget.MaterialComponents.TextInputLayout 0x7f0f0120 +int style Base.Widget.MaterialComponents.TextView 0x7f0f0121 +int style CardView 0x7f0f0122 +int style CardView.Dark 0x7f0f0123 +int style CardView.Light 0x7f0f0124 +int style MainTheme 0x7f0f0125 +int style MainTheme.Base 0x7f0f0126 +int style MainTheme.NoActionBar 0x7f0f0127 +int style MaterialAlertDialog.Material3 0x7f0f0128 +int style MaterialAlertDialog.Material3.Animation 0x7f0f0129 +int style MaterialAlertDialog.Material3.Body.Text 0x7f0f012a +int style MaterialAlertDialog.Material3.Body.Text.CenterStacked 0x7f0f012b +int style MaterialAlertDialog.Material3.Title.Icon 0x7f0f012c +int style MaterialAlertDialog.Material3.Title.Icon.CenterStacked 0x7f0f012d +int style MaterialAlertDialog.Material3.Title.Panel 0x7f0f012e +int style MaterialAlertDialog.Material3.Title.Panel.CenterStacked 0x7f0f012f +int style MaterialAlertDialog.Material3.Title.Text 0x7f0f0130 +int style MaterialAlertDialog.Material3.Title.Text.CenterStacked 0x7f0f0131 +int style MaterialAlertDialog.MaterialComponents 0x7f0f0132 +int style MaterialAlertDialog.MaterialComponents.Body.Text 0x7f0f0133 +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar 0x7f0f0134 +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner 0x7f0f0135 +int style MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0136 +int style MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked 0x7f0f0137 +int style MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0138 +int style MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked 0x7f0f0139 +int style MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f013a +int style MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked 0x7f0f013b +int style Maui.MainTheme 0x7f0f013c +int style Maui.MainTheme.Base 0x7f0f013d +int style Maui.MainTheme.NoActionBar 0x7f0f013e +int style Maui.SplashTheme 0x7f0f013f +int style MauiAlertDialogTheme 0x7f0f0140 +int style MauiCheckBox 0x7f0f0141 +int style MauiMaterialButton 0x7f0f0142 +int style Platform.AppCompat 0x7f0f0143 +int style Platform.AppCompat.Light 0x7f0f0144 +int style Platform.MaterialComponents 0x7f0f0145 +int style Platform.MaterialComponents.Dialog 0x7f0f0146 +int style Platform.MaterialComponents.Light 0x7f0f0147 +int style Platform.MaterialComponents.Light.Dialog 0x7f0f0148 +int style Platform.ThemeOverlay.AppCompat 0x7f0f0149 +int style Platform.ThemeOverlay.AppCompat.Dark 0x7f0f014a +int style Platform.ThemeOverlay.AppCompat.Light 0x7f0f014b +int style Platform.V21.AppCompat 0x7f0f014c +int style Platform.V21.AppCompat.Light 0x7f0f014d +int style Platform.V25.AppCompat 0x7f0f014e +int style Platform.V25.AppCompat.Light 0x7f0f014f +int style Platform.Widget.AppCompat.Spinner 0x7f0f0150 +int style RtlOverlay.DialogWindowTitle.AppCompat 0x7f0f0151 +int style RtlOverlay.Widget.AppCompat.ActionBar.TitleItem 0x7f0f0152 +int style RtlOverlay.Widget.AppCompat.DialogTitle.Icon 0x7f0f0153 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem 0x7f0f0154 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup 0x7f0f0155 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut 0x7f0f0156 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow 0x7f0f0157 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Text 0x7f0f0158 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Title 0x7f0f0159 +int style RtlOverlay.Widget.AppCompat.Search.DropDown 0x7f0f015a +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 0x7f0f015b +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 0x7f0f015c +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Query 0x7f0f015d +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Text 0x7f0f015e +int style RtlOverlay.Widget.AppCompat.SearchView.MagIcon 0x7f0f015f +int style RtlUnderlay.Widget.AppCompat.ActionButton 0x7f0f0160 +int style RtlUnderlay.Widget.AppCompat.ActionButton.Overflow 0x7f0f0161 +int style ShapeAppearance.M3.Comp.Badge.Large.Shape 0x7f0f0162 +int style ShapeAppearance.M3.Comp.Badge.Shape 0x7f0f0163 +int style ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape 0x7f0f0164 +int style ShapeAppearance.M3.Comp.DatePicker.Modal.Date.Container.Shape 0x7f0f0165 +int style ShapeAppearance.M3.Comp.FilledButton.Container.Shape 0x7f0f0166 +int style ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape 0x7f0f0167 +int style ShapeAppearance.M3.Comp.NavigationBar.Container.Shape 0x7f0f0168 +int style ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape 0x7f0f0169 +int style ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape 0x7f0f016a +int style ShapeAppearance.M3.Comp.NavigationRail.Container.Shape 0x7f0f016b +int style ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape 0x7f0f016c +int style ShapeAppearance.M3.Comp.SearchBar.Container.Shape 0x7f0f016d +int style ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape 0x7f0f016e +int style ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape 0x7f0f016f +int style ShapeAppearance.M3.Comp.Switch.Handle.Shape 0x7f0f0170 +int style ShapeAppearance.M3.Comp.Switch.StateLayer.Shape 0x7f0f0171 +int style ShapeAppearance.M3.Comp.Switch.Track.Shape 0x7f0f0172 +int style ShapeAppearance.M3.Comp.TextButton.Container.Shape 0x7f0f0173 +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge 0x7f0f0174 +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall 0x7f0f0175 +int style ShapeAppearance.M3.Sys.Shape.Corner.Full 0x7f0f0176 +int style ShapeAppearance.M3.Sys.Shape.Corner.Large 0x7f0f0177 +int style ShapeAppearance.M3.Sys.Shape.Corner.Medium 0x7f0f0178 +int style ShapeAppearance.M3.Sys.Shape.Corner.None 0x7f0f0179 +int style ShapeAppearance.M3.Sys.Shape.Corner.Small 0x7f0f017a +int style ShapeAppearance.Material3.Corner.ExtraLarge 0x7f0f017b +int style ShapeAppearance.Material3.Corner.ExtraSmall 0x7f0f017c +int style ShapeAppearance.Material3.Corner.Full 0x7f0f017d +int style ShapeAppearance.Material3.Corner.Large 0x7f0f017e +int style ShapeAppearance.Material3.Corner.Medium 0x7f0f017f +int style ShapeAppearance.Material3.Corner.None 0x7f0f0180 +int style ShapeAppearance.Material3.Corner.Small 0x7f0f0181 +int style ShapeAppearance.Material3.LargeComponent 0x7f0f0182 +int style ShapeAppearance.Material3.MediumComponent 0x7f0f0183 +int style ShapeAppearance.Material3.NavigationBarView.ActiveIndicator 0x7f0f0184 +int style ShapeAppearance.Material3.SmallComponent 0x7f0f0185 +int style ShapeAppearance.Material3.Tooltip 0x7f0f0186 +int style ShapeAppearance.MaterialComponents 0x7f0f0187 +int style ShapeAppearance.MaterialComponents.Badge 0x7f0f0188 +int style ShapeAppearance.MaterialComponents.LargeComponent 0x7f0f0189 +int style ShapeAppearance.MaterialComponents.MediumComponent 0x7f0f018a +int style ShapeAppearance.MaterialComponents.SmallComponent 0x7f0f018b +int style ShapeAppearance.MaterialComponents.Tooltip 0x7f0f018c +int style ShapeAppearanceOverlay.Material3.Button 0x7f0f018d +int style ShapeAppearanceOverlay.Material3.Chip 0x7f0f018e +int style ShapeAppearanceOverlay.Material3.Corner.Bottom 0x7f0f018f +int style ShapeAppearanceOverlay.Material3.Corner.Left 0x7f0f0190 +int style ShapeAppearanceOverlay.Material3.Corner.Right 0x7f0f0191 +int style ShapeAppearanceOverlay.Material3.Corner.Top 0x7f0f0192 +int style ShapeAppearanceOverlay.Material3.FloatingActionButton 0x7f0f0193 +int style ShapeAppearanceOverlay.Material3.NavigationView.Item 0x7f0f0194 +int style ShapeAppearanceOverlay.Material3.SearchBar 0x7f0f0195 +int style ShapeAppearanceOverlay.Material3.SearchView 0x7f0f0196 +int style ShapeAppearanceOverlay.MaterialAlertDialog.Material3 0x7f0f0197 +int style ShapeAppearanceOverlay.MaterialComponents.BottomSheet 0x7f0f0198 +int style ShapeAppearanceOverlay.MaterialComponents.Chip 0x7f0f0199 +int style ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton 0x7f0f019a +int style ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton 0x7f0f019b +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day 0x7f0f019c +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen 0x7f0f019d +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year 0x7f0f019e +int style ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox 0x7f0f019f +int style TextAppearance.AppCompat 0x7f0f01a0 +int style TextAppearance.AppCompat.Body1 0x7f0f01a1 +int style TextAppearance.AppCompat.Body2 0x7f0f01a2 +int style TextAppearance.AppCompat.Button 0x7f0f01a3 +int style TextAppearance.AppCompat.Caption 0x7f0f01a4 +int style TextAppearance.AppCompat.Display1 0x7f0f01a5 +int style TextAppearance.AppCompat.Display2 0x7f0f01a6 +int style TextAppearance.AppCompat.Display3 0x7f0f01a7 +int style TextAppearance.AppCompat.Display4 0x7f0f01a8 +int style TextAppearance.AppCompat.Headline 0x7f0f01a9 +int style TextAppearance.AppCompat.Inverse 0x7f0f01aa +int style TextAppearance.AppCompat.Large 0x7f0f01ab +int style TextAppearance.AppCompat.Large.Inverse 0x7f0f01ac +int style TextAppearance.AppCompat.Light.SearchResult.Subtitle 0x7f0f01ad +int style TextAppearance.AppCompat.Light.SearchResult.Title 0x7f0f01ae +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f01af +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f01b0 +int style TextAppearance.AppCompat.Medium 0x7f0f01b1 +int style TextAppearance.AppCompat.Medium.Inverse 0x7f0f01b2 +int style TextAppearance.AppCompat.Menu 0x7f0f01b3 +int style TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f01b4 +int style TextAppearance.AppCompat.SearchResult.Title 0x7f0f01b5 +int style TextAppearance.AppCompat.Small 0x7f0f01b6 +int style TextAppearance.AppCompat.Small.Inverse 0x7f0f01b7 +int style TextAppearance.AppCompat.Subhead 0x7f0f01b8 +int style TextAppearance.AppCompat.Subhead.Inverse 0x7f0f01b9 +int style TextAppearance.AppCompat.Title 0x7f0f01ba +int style TextAppearance.AppCompat.Title.Inverse 0x7f0f01bb +int style TextAppearance.AppCompat.Tooltip 0x7f0f01bc +int style TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f01bd +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f01be +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f01bf +int style TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f01c0 +int style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f01c1 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f01c2 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse 0x7f0f01c3 +int style TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f01c4 +int style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse 0x7f0f01c5 +int style TextAppearance.AppCompat.Widget.Button 0x7f0f01c6 +int style TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f01c7 +int style TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f01c8 +int style TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f01c9 +int style TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f01ca +int style TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f01cb +int style TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f01cc +int style TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f01cd +int style TextAppearance.AppCompat.Widget.Switch 0x7f0f01ce +int style TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f01cf +int style TextAppearance.Compat.Notification 0x7f0f01d0 +int style TextAppearance.Compat.Notification.Info 0x7f0f01d1 +int style TextAppearance.Compat.Notification.Info.Media 0x7f0f01d2 +int style TextAppearance.Compat.Notification.Line2 0x7f0f01d3 +int style TextAppearance.Compat.Notification.Line2.Media 0x7f0f01d4 +int style TextAppearance.Compat.Notification.Media 0x7f0f01d5 +int style TextAppearance.Compat.Notification.Time 0x7f0f01d6 +int style TextAppearance.Compat.Notification.Time.Media 0x7f0f01d7 +int style TextAppearance.Compat.Notification.Title 0x7f0f01d8 +int style TextAppearance.Compat.Notification.Title.Media 0x7f0f01d9 +int style TextAppearance.Design.CollapsingToolbar.Expanded 0x7f0f01da +int style TextAppearance.Design.Counter 0x7f0f01db +int style TextAppearance.Design.Counter.Overflow 0x7f0f01dc +int style TextAppearance.Design.Error 0x7f0f01dd +int style TextAppearance.Design.HelperText 0x7f0f01de +int style TextAppearance.Design.Hint 0x7f0f01df +int style TextAppearance.Design.Placeholder 0x7f0f01e0 +int style TextAppearance.Design.Prefix 0x7f0f01e1 +int style TextAppearance.Design.Snackbar.Message 0x7f0f01e2 +int style TextAppearance.Design.Suffix 0x7f0f01e3 +int style TextAppearance.Design.Tab 0x7f0f01e4 +int style TextAppearance.M3.Sys.Typescale.BodyLarge 0x7f0f01e5 +int style TextAppearance.M3.Sys.Typescale.BodyMedium 0x7f0f01e6 +int style TextAppearance.M3.Sys.Typescale.BodySmall 0x7f0f01e7 +int style TextAppearance.M3.Sys.Typescale.DisplayLarge 0x7f0f01e8 +int style TextAppearance.M3.Sys.Typescale.DisplayMedium 0x7f0f01e9 +int style TextAppearance.M3.Sys.Typescale.DisplaySmall 0x7f0f01ea +int style TextAppearance.M3.Sys.Typescale.HeadlineLarge 0x7f0f01eb +int style TextAppearance.M3.Sys.Typescale.HeadlineMedium 0x7f0f01ec +int style TextAppearance.M3.Sys.Typescale.HeadlineSmall 0x7f0f01ed +int style TextAppearance.M3.Sys.Typescale.LabelLarge 0x7f0f01ee +int style TextAppearance.M3.Sys.Typescale.LabelMedium 0x7f0f01ef +int style TextAppearance.M3.Sys.Typescale.LabelSmall 0x7f0f01f0 +int style TextAppearance.M3.Sys.Typescale.TitleLarge 0x7f0f01f1 +int style TextAppearance.M3.Sys.Typescale.TitleMedium 0x7f0f01f2 +int style TextAppearance.M3.Sys.Typescale.TitleSmall 0x7f0f01f3 +int style TextAppearance.Material3.ActionBar.Subtitle 0x7f0f01f4 +int style TextAppearance.Material3.ActionBar.Title 0x7f0f01f5 +int style TextAppearance.Material3.BodyLarge 0x7f0f01f6 +int style TextAppearance.Material3.BodyMedium 0x7f0f01f7 +int style TextAppearance.Material3.BodySmall 0x7f0f01f8 +int style TextAppearance.Material3.DisplayLarge 0x7f0f01f9 +int style TextAppearance.Material3.DisplayMedium 0x7f0f01fa +int style TextAppearance.Material3.DisplaySmall 0x7f0f01fb +int style TextAppearance.Material3.HeadlineLarge 0x7f0f01fc +int style TextAppearance.Material3.HeadlineMedium 0x7f0f01fd +int style TextAppearance.Material3.HeadlineSmall 0x7f0f01fe +int style TextAppearance.Material3.LabelLarge 0x7f0f01ff +int style TextAppearance.Material3.LabelMedium 0x7f0f0200 +int style TextAppearance.Material3.LabelSmall 0x7f0f0201 +int style TextAppearance.Material3.MaterialTimePicker.Title 0x7f0f0202 +int style TextAppearance.Material3.SearchBar 0x7f0f0203 +int style TextAppearance.Material3.SearchView 0x7f0f0204 +int style TextAppearance.Material3.SearchView.Prefix 0x7f0f0205 +int style TextAppearance.Material3.TitleLarge 0x7f0f0206 +int style TextAppearance.Material3.TitleMedium 0x7f0f0207 +int style TextAppearance.Material3.TitleSmall 0x7f0f0208 +int style TextAppearance.MaterialComponents.Badge 0x7f0f0209 +int style TextAppearance.MaterialComponents.Body1 0x7f0f020a +int style TextAppearance.MaterialComponents.Body2 0x7f0f020b +int style TextAppearance.MaterialComponents.Button 0x7f0f020c +int style TextAppearance.MaterialComponents.Caption 0x7f0f020d +int style TextAppearance.MaterialComponents.Chip 0x7f0f020e +int style TextAppearance.MaterialComponents.Headline1 0x7f0f020f +int style TextAppearance.MaterialComponents.Headline2 0x7f0f0210 +int style TextAppearance.MaterialComponents.Headline3 0x7f0f0211 +int style TextAppearance.MaterialComponents.Headline4 0x7f0f0212 +int style TextAppearance.MaterialComponents.Headline5 0x7f0f0213 +int style TextAppearance.MaterialComponents.Headline6 0x7f0f0214 +int style TextAppearance.MaterialComponents.Overline 0x7f0f0215 +int style TextAppearance.MaterialComponents.Subtitle1 0x7f0f0216 +int style TextAppearance.MaterialComponents.Subtitle2 0x7f0f0217 +int style TextAppearance.MaterialComponents.TimePicker.Title 0x7f0f0218 +int style TextAppearance.MaterialComponents.Tooltip 0x7f0f0219 +int style TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f021a +int style TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f021b +int style TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f021c +int style Theme.AppCompat 0x7f0f021d +int style Theme.AppCompat.CompactMenu 0x7f0f021e +int style Theme.AppCompat.DayNight 0x7f0f021f +int style Theme.AppCompat.DayNight.DarkActionBar 0x7f0f0220 +int style Theme.AppCompat.DayNight.Dialog 0x7f0f0221 +int style Theme.AppCompat.DayNight.Dialog.Alert 0x7f0f0222 +int style Theme.AppCompat.DayNight.Dialog.MinWidth 0x7f0f0223 +int style Theme.AppCompat.DayNight.DialogWhenLarge 0x7f0f0224 +int style Theme.AppCompat.DayNight.NoActionBar 0x7f0f0225 +int style Theme.AppCompat.Dialog 0x7f0f0226 +int style Theme.AppCompat.Dialog.Alert 0x7f0f0227 +int style Theme.AppCompat.Dialog.MinWidth 0x7f0f0228 +int style Theme.AppCompat.DialogWhenLarge 0x7f0f0229 +int style Theme.AppCompat.Empty 0x7f0f022a +int style Theme.AppCompat.Light 0x7f0f022b +int style Theme.AppCompat.Light.DarkActionBar 0x7f0f022c +int style Theme.AppCompat.Light.Dialog 0x7f0f022d +int style Theme.AppCompat.Light.Dialog.Alert 0x7f0f022e +int style Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f022f +int style Theme.AppCompat.Light.DialogWhenLarge 0x7f0f0230 +int style Theme.AppCompat.Light.NoActionBar 0x7f0f0231 +int style Theme.AppCompat.NoActionBar 0x7f0f0232 +int style Theme.Design 0x7f0f0233 +int style Theme.Design.BottomSheetDialog 0x7f0f0234 +int style Theme.Design.Light 0x7f0f0235 +int style Theme.Design.Light.BottomSheetDialog 0x7f0f0236 +int style Theme.Design.Light.NoActionBar 0x7f0f0237 +int style Theme.Design.NoActionBar 0x7f0f0238 +int style Theme.Material3.Dark 0x7f0f0239 +int style Theme.Material3.Dark.BottomSheetDialog 0x7f0f023a +int style Theme.Material3.Dark.Dialog 0x7f0f023b +int style Theme.Material3.Dark.Dialog.Alert 0x7f0f023c +int style Theme.Material3.Dark.Dialog.MinWidth 0x7f0f023d +int style Theme.Material3.Dark.DialogWhenLarge 0x7f0f023e +int style Theme.Material3.Dark.NoActionBar 0x7f0f023f +int style Theme.Material3.Dark.SideSheetDialog 0x7f0f0240 +int style Theme.Material3.DayNight 0x7f0f0241 +int style Theme.Material3.DayNight.BottomSheetDialog 0x7f0f0242 +int style Theme.Material3.DayNight.Dialog 0x7f0f0243 +int style Theme.Material3.DayNight.Dialog.Alert 0x7f0f0244 +int style Theme.Material3.DayNight.Dialog.MinWidth 0x7f0f0245 +int style Theme.Material3.DayNight.DialogWhenLarge 0x7f0f0246 +int style Theme.Material3.DayNight.NoActionBar 0x7f0f0247 +int style Theme.Material3.DayNight.SideSheetDialog 0x7f0f0248 +int style Theme.Material3.DynamicColors.Dark 0x7f0f0249 +int style Theme.Material3.DynamicColors.DayNight 0x7f0f024a +int style Theme.Material3.DynamicColors.Light 0x7f0f024b +int style Theme.Material3.Light 0x7f0f024c +int style Theme.Material3.Light.BottomSheetDialog 0x7f0f024d +int style Theme.Material3.Light.Dialog 0x7f0f024e +int style Theme.Material3.Light.Dialog.Alert 0x7f0f024f +int style Theme.Material3.Light.Dialog.MinWidth 0x7f0f0250 +int style Theme.Material3.Light.DialogWhenLarge 0x7f0f0251 +int style Theme.Material3.Light.NoActionBar 0x7f0f0252 +int style Theme.Material3.Light.SideSheetDialog 0x7f0f0253 +int style Theme.MaterialComponents 0x7f0f0254 +int style Theme.MaterialComponents.BottomSheetDialog 0x7f0f0255 +int style Theme.MaterialComponents.Bridge 0x7f0f0256 +int style Theme.MaterialComponents.CompactMenu 0x7f0f0257 +int style Theme.MaterialComponents.DayNight 0x7f0f0258 +int style Theme.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f0259 +int style Theme.MaterialComponents.DayNight.Bridge 0x7f0f025a +int style Theme.MaterialComponents.DayNight.DarkActionBar 0x7f0f025b +int style Theme.MaterialComponents.DayNight.DarkActionBar.Bridge 0x7f0f025c +int style Theme.MaterialComponents.DayNight.Dialog 0x7f0f025d +int style Theme.MaterialComponents.DayNight.Dialog.Alert 0x7f0f025e +int style Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge 0x7f0f025f +int style Theme.MaterialComponents.DayNight.Dialog.Bridge 0x7f0f0260 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize 0x7f0f0261 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge 0x7f0f0262 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth 0x7f0f0263 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge 0x7f0f0264 +int style Theme.MaterialComponents.DayNight.DialogWhenLarge 0x7f0f0265 +int style Theme.MaterialComponents.DayNight.NoActionBar 0x7f0f0266 +int style Theme.MaterialComponents.DayNight.NoActionBar.Bridge 0x7f0f0267 +int style Theme.MaterialComponents.Dialog 0x7f0f0268 +int style Theme.MaterialComponents.Dialog.Alert 0x7f0f0269 +int style Theme.MaterialComponents.Dialog.Alert.Bridge 0x7f0f026a +int style Theme.MaterialComponents.Dialog.Bridge 0x7f0f026b +int style Theme.MaterialComponents.Dialog.FixedSize 0x7f0f026c +int style Theme.MaterialComponents.Dialog.FixedSize.Bridge 0x7f0f026d +int style Theme.MaterialComponents.Dialog.MinWidth 0x7f0f026e +int style Theme.MaterialComponents.Dialog.MinWidth.Bridge 0x7f0f026f +int style Theme.MaterialComponents.DialogWhenLarge 0x7f0f0270 +int style Theme.MaterialComponents.Light 0x7f0f0271 +int style Theme.MaterialComponents.Light.BottomSheetDialog 0x7f0f0272 +int style Theme.MaterialComponents.Light.Bridge 0x7f0f0273 +int style Theme.MaterialComponents.Light.DarkActionBar 0x7f0f0274 +int style Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0275 +int style Theme.MaterialComponents.Light.Dialog 0x7f0f0276 +int style Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0277 +int style Theme.MaterialComponents.Light.Dialog.Alert.Bridge 0x7f0f0278 +int style Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0279 +int style Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f027a +int style Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge 0x7f0f027b +int style Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f027c +int style Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge 0x7f0f027d +int style Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f027e +int style Theme.MaterialComponents.Light.NoActionBar 0x7f0f027f +int style Theme.MaterialComponents.Light.NoActionBar.Bridge 0x7f0f0280 +int style Theme.MaterialComponents.NoActionBar 0x7f0f0281 +int style Theme.MaterialComponents.NoActionBar.Bridge 0x7f0f0282 +int style ThemeOverlay.AppCompat 0x7f0f0283 +int style ThemeOverlay.AppCompat.ActionBar 0x7f0f0284 +int style ThemeOverlay.AppCompat.Dark 0x7f0f0285 +int style ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f0286 +int style ThemeOverlay.AppCompat.DayNight 0x7f0f0287 +int style ThemeOverlay.AppCompat.DayNight.ActionBar 0x7f0f0288 +int style ThemeOverlay.AppCompat.Dialog 0x7f0f0289 +int style ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f028a +int style ThemeOverlay.AppCompat.Light 0x7f0f028b +int style ThemeOverlay.Design.TextInputEditText 0x7f0f028c +int style ThemeOverlay.Material3 0x7f0f028d +int style ThemeOverlay.Material3.ActionBar 0x7f0f028e +int style ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f028f +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox 0x7f0f0290 +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f0291 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f0292 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f0293 +int style ThemeOverlay.Material3.BottomAppBar 0x7f0f0294 +int style ThemeOverlay.Material3.BottomAppBar.Legacy 0x7f0f0295 +int style ThemeOverlay.Material3.BottomNavigationView 0x7f0f0296 +int style ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0297 +int style ThemeOverlay.Material3.Button 0x7f0f0298 +int style ThemeOverlay.Material3.Button.ElevatedButton 0x7f0f0299 +int style ThemeOverlay.Material3.Button.IconButton 0x7f0f029a +int style ThemeOverlay.Material3.Button.IconButton.Filled 0x7f0f029b +int style ThemeOverlay.Material3.Button.IconButton.Filled.Tonal 0x7f0f029c +int style ThemeOverlay.Material3.Button.TextButton 0x7f0f029d +int style ThemeOverlay.Material3.Button.TextButton.Snackbar 0x7f0f029e +int style ThemeOverlay.Material3.Button.TonalButton 0x7f0f029f +int style ThemeOverlay.Material3.Chip 0x7f0f02a0 +int style ThemeOverlay.Material3.Chip.Assist 0x7f0f02a1 +int style ThemeOverlay.Material3.Dark 0x7f0f02a2 +int style ThemeOverlay.Material3.Dark.ActionBar 0x7f0f02a3 +int style ThemeOverlay.Material3.DayNight.BottomSheetDialog 0x7f0f02a4 +int style ThemeOverlay.Material3.DayNight.SideSheetDialog 0x7f0f02a5 +int style ThemeOverlay.Material3.Dialog 0x7f0f02a6 +int style ThemeOverlay.Material3.Dialog.Alert 0x7f0f02a7 +int style ThemeOverlay.Material3.Dialog.Alert.Framework 0x7f0f02a8 +int style ThemeOverlay.Material3.DynamicColors.Dark 0x7f0f02a9 +int style ThemeOverlay.Material3.DynamicColors.DayNight 0x7f0f02aa +int style ThemeOverlay.Material3.DynamicColors.Light 0x7f0f02ab +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary 0x7f0f02ac +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f02ad +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface 0x7f0f02ae +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f02af +int style ThemeOverlay.Material3.FloatingActionButton.Primary 0x7f0f02b0 +int style ThemeOverlay.Material3.FloatingActionButton.Secondary 0x7f0f02b1 +int style ThemeOverlay.Material3.FloatingActionButton.Surface 0x7f0f02b2 +int style ThemeOverlay.Material3.FloatingActionButton.Tertiary 0x7f0f02b3 +int style ThemeOverlay.Material3.HarmonizedColors 0x7f0f02b4 +int style ThemeOverlay.Material3.HarmonizedColors.Empty 0x7f0f02b5 +int style ThemeOverlay.Material3.Light 0x7f0f02b6 +int style ThemeOverlay.Material3.Light.Dialog.Alert.Framework 0x7f0f02b7 +int style ThemeOverlay.Material3.MaterialAlertDialog 0x7f0f02b8 +int style ThemeOverlay.Material3.MaterialAlertDialog.Centered 0x7f0f02b9 +int style ThemeOverlay.Material3.MaterialCalendar 0x7f0f02ba +int style ThemeOverlay.Material3.MaterialCalendar.Fullscreen 0x7f0f02bb +int style ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f02bc +int style ThemeOverlay.Material3.MaterialTimePicker 0x7f0f02bd +int style ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f02be +int style ThemeOverlay.Material3.NavigationRailView 0x7f0f02bf +int style ThemeOverlay.Material3.NavigationView 0x7f0f02c0 +int style ThemeOverlay.Material3.PersonalizedColors 0x7f0f02c1 +int style ThemeOverlay.Material3.Search 0x7f0f02c2 +int style ThemeOverlay.Material3.SideSheetDialog 0x7f0f02c3 +int style ThemeOverlay.Material3.Snackbar 0x7f0f02c4 +int style ThemeOverlay.Material3.TabLayout 0x7f0f02c5 +int style ThemeOverlay.Material3.TextInputEditText 0x7f0f02c6 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox 0x7f0f02c7 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense 0x7f0f02c8 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox 0x7f0f02c9 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f02ca +int style ThemeOverlay.Material3.Toolbar.Surface 0x7f0f02cb +int style ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon 0x7f0f02cc +int style ThemeOverlay.MaterialComponents 0x7f0f02cd +int style ThemeOverlay.MaterialComponents.ActionBar 0x7f0f02ce +int style ThemeOverlay.MaterialComponents.ActionBar.Primary 0x7f0f02cf +int style ThemeOverlay.MaterialComponents.ActionBar.Surface 0x7f0f02d0 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView 0x7f0f02d1 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f02d2 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f02d3 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f02d4 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f02d5 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Primary 0x7f0f02d6 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Surface 0x7f0f02d7 +int style ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f02d8 +int style ThemeOverlay.MaterialComponents.Dark 0x7f0f02d9 +int style ThemeOverlay.MaterialComponents.Dark.ActionBar 0x7f0f02da +int style ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f02db +int style ThemeOverlay.MaterialComponents.Dialog 0x7f0f02dc +int style ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f02dd +int style ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f02de +int style ThemeOverlay.MaterialComponents.Light 0x7f0f02df +int style ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f02e0 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f02e1 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered 0x7f0f02e2 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date 0x7f0f02e3 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar 0x7f0f02e4 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text 0x7f0f02e5 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day 0x7f0f02e6 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner 0x7f0f02e7 +int style ThemeOverlay.MaterialComponents.MaterialCalendar 0x7f0f02e8 +int style ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f02e9 +int style ThemeOverlay.MaterialComponents.TextInputEditText 0x7f0f02ea +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox 0x7f0f02eb +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f02ec +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f02ed +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f02ee +int style ThemeOverlay.MaterialComponents.TimePicker 0x7f0f02ef +int style ThemeOverlay.MaterialComponents.TimePicker.Display 0x7f0f02f0 +int style ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f02f1 +int style ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary 0x7f0f02f2 +int style ThemeOverlay.MaterialComponents.Toolbar.Primary 0x7f0f02f3 +int style ThemeOverlay.MaterialComponents.Toolbar.Surface 0x7f0f02f4 +int style Widget.AppCompat.ActionBar 0x7f0f02f5 +int style Widget.AppCompat.ActionBar.Solid 0x7f0f02f6 +int style Widget.AppCompat.ActionBar.TabBar 0x7f0f02f7 +int style Widget.AppCompat.ActionBar.TabText 0x7f0f02f8 +int style Widget.AppCompat.ActionBar.TabView 0x7f0f02f9 +int style Widget.AppCompat.ActionButton 0x7f0f02fa +int style Widget.AppCompat.ActionButton.CloseMode 0x7f0f02fb +int style Widget.AppCompat.ActionButton.Overflow 0x7f0f02fc +int style Widget.AppCompat.ActionMode 0x7f0f02fd +int style Widget.AppCompat.ActivityChooserView 0x7f0f02fe +int style Widget.AppCompat.AutoCompleteTextView 0x7f0f02ff +int style Widget.AppCompat.Button 0x7f0f0300 +int style Widget.AppCompat.Button.Borderless 0x7f0f0301 +int style Widget.AppCompat.Button.Borderless.Colored 0x7f0f0302 +int style Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f0303 +int style Widget.AppCompat.Button.Colored 0x7f0f0304 +int style Widget.AppCompat.Button.Small 0x7f0f0305 +int style Widget.AppCompat.ButtonBar 0x7f0f0306 +int style Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f0307 +int style Widget.AppCompat.CompoundButton.CheckBox 0x7f0f0308 +int style Widget.AppCompat.CompoundButton.RadioButton 0x7f0f0309 +int style Widget.AppCompat.CompoundButton.Switch 0x7f0f030a +int style Widget.AppCompat.DrawerArrowToggle 0x7f0f030b +int style Widget.AppCompat.DropDownItem.Spinner 0x7f0f030c +int style Widget.AppCompat.EditText 0x7f0f030d +int style Widget.AppCompat.ImageButton 0x7f0f030e +int style Widget.AppCompat.Light.ActionBar 0x7f0f030f +int style Widget.AppCompat.Light.ActionBar.Solid 0x7f0f0310 +int style Widget.AppCompat.Light.ActionBar.Solid.Inverse 0x7f0f0311 +int style Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f0312 +int style Widget.AppCompat.Light.ActionBar.TabBar.Inverse 0x7f0f0313 +int style Widget.AppCompat.Light.ActionBar.TabText 0x7f0f0314 +int style Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f0315 +int style Widget.AppCompat.Light.ActionBar.TabView 0x7f0f0316 +int style Widget.AppCompat.Light.ActionBar.TabView.Inverse 0x7f0f0317 +int style Widget.AppCompat.Light.ActionButton 0x7f0f0318 +int style Widget.AppCompat.Light.ActionButton.CloseMode 0x7f0f0319 +int style Widget.AppCompat.Light.ActionButton.Overflow 0x7f0f031a +int style Widget.AppCompat.Light.ActionMode.Inverse 0x7f0f031b +int style Widget.AppCompat.Light.ActivityChooserView 0x7f0f031c +int style Widget.AppCompat.Light.AutoCompleteTextView 0x7f0f031d +int style Widget.AppCompat.Light.DropDownItem.Spinner 0x7f0f031e +int style Widget.AppCompat.Light.ListPopupWindow 0x7f0f031f +int style Widget.AppCompat.Light.ListView.DropDown 0x7f0f0320 +int style Widget.AppCompat.Light.PopupMenu 0x7f0f0321 +int style Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f0322 +int style Widget.AppCompat.Light.SearchView 0x7f0f0323 +int style Widget.AppCompat.Light.Spinner.DropDown.ActionBar 0x7f0f0324 +int style Widget.AppCompat.ListMenuView 0x7f0f0325 +int style Widget.AppCompat.ListPopupWindow 0x7f0f0326 +int style Widget.AppCompat.ListView 0x7f0f0327 +int style Widget.AppCompat.ListView.DropDown 0x7f0f0328 +int style Widget.AppCompat.ListView.Menu 0x7f0f0329 +int style Widget.AppCompat.PopupMenu 0x7f0f032a +int style Widget.AppCompat.PopupMenu.Overflow 0x7f0f032b +int style Widget.AppCompat.PopupWindow 0x7f0f032c +int style Widget.AppCompat.ProgressBar 0x7f0f032d +int style Widget.AppCompat.ProgressBar.Horizontal 0x7f0f032e +int style Widget.AppCompat.RatingBar 0x7f0f032f +int style Widget.AppCompat.RatingBar.Indicator 0x7f0f0330 +int style Widget.AppCompat.RatingBar.Small 0x7f0f0331 +int style Widget.AppCompat.SearchView 0x7f0f0332 +int style Widget.AppCompat.SearchView.ActionBar 0x7f0f0333 +int style Widget.AppCompat.SeekBar 0x7f0f0334 +int style Widget.AppCompat.SeekBar.Discrete 0x7f0f0335 +int style Widget.AppCompat.Spinner 0x7f0f0336 +int style Widget.AppCompat.Spinner.DropDown 0x7f0f0337 +int style Widget.AppCompat.Spinner.DropDown.ActionBar 0x7f0f0338 +int style Widget.AppCompat.Spinner.Underlined 0x7f0f0339 +int style Widget.AppCompat.TextView 0x7f0f033a +int style Widget.AppCompat.TextView.SpinnerItem 0x7f0f033b +int style Widget.AppCompat.Toolbar 0x7f0f033c +int style Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f033d +int style Widget.Compat.NotificationActionContainer 0x7f0f033e +int style Widget.Compat.NotificationActionText 0x7f0f033f +int style Widget.Design.AppBarLayout 0x7f0f0340 +int style Widget.Design.BottomNavigationView 0x7f0f0341 +int style Widget.Design.BottomSheet.Modal 0x7f0f0342 +int style Widget.Design.CollapsingToolbar 0x7f0f0343 +int style Widget.Design.FloatingActionButton 0x7f0f0344 +int style Widget.Design.NavigationView 0x7f0f0345 +int style Widget.Design.ScrimInsetsFrameLayout 0x7f0f0346 +int style Widget.Design.Snackbar 0x7f0f0347 +int style Widget.Design.TabLayout 0x7f0f0348 +int style Widget.Design.TextInputEditText 0x7f0f0349 +int style Widget.Design.TextInputLayout 0x7f0f034a +int style Widget.Material3.ActionBar.Solid 0x7f0f034b +int style Widget.Material3.ActionMode 0x7f0f034c +int style Widget.Material3.AppBarLayout 0x7f0f034d +int style Widget.Material3.AutoCompleteTextView.FilledBox 0x7f0f034e +int style Widget.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f034f +int style Widget.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f0350 +int style Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f0351 +int style Widget.Material3.Badge 0x7f0f0352 +int style Widget.Material3.Badge.AdjustToBounds 0x7f0f0353 +int style Widget.Material3.BottomAppBar 0x7f0f0354 +int style Widget.Material3.BottomAppBar.Button.Navigation 0x7f0f0355 +int style Widget.Material3.BottomAppBar.Legacy 0x7f0f0356 +int style Widget.Material3.BottomNavigation.Badge 0x7f0f0357 +int style Widget.Material3.BottomNavigationView 0x7f0f0358 +int style Widget.Material3.BottomNavigationView.ActiveIndicator 0x7f0f0359 +int style Widget.Material3.BottomSheet 0x7f0f035a +int style Widget.Material3.BottomSheet.DragHandle 0x7f0f035b +int style Widget.Material3.BottomSheet.Modal 0x7f0f035c +int style Widget.Material3.Button 0x7f0f035d +int style Widget.Material3.Button.ElevatedButton 0x7f0f035e +int style Widget.Material3.Button.ElevatedButton.Icon 0x7f0f035f +int style Widget.Material3.Button.Icon 0x7f0f0360 +int style Widget.Material3.Button.IconButton 0x7f0f0361 +int style Widget.Material3.Button.IconButton.Filled 0x7f0f0362 +int style Widget.Material3.Button.IconButton.Filled.Tonal 0x7f0f0363 +int style Widget.Material3.Button.IconButton.Outlined 0x7f0f0364 +int style Widget.Material3.Button.OutlinedButton 0x7f0f0365 +int style Widget.Material3.Button.OutlinedButton.Icon 0x7f0f0366 +int style Widget.Material3.Button.TextButton 0x7f0f0367 +int style Widget.Material3.Button.TextButton.Dialog 0x7f0f0368 +int style Widget.Material3.Button.TextButton.Dialog.Flush 0x7f0f0369 +int style Widget.Material3.Button.TextButton.Dialog.Icon 0x7f0f036a +int style Widget.Material3.Button.TextButton.Icon 0x7f0f036b +int style Widget.Material3.Button.TextButton.Snackbar 0x7f0f036c +int style Widget.Material3.Button.TonalButton 0x7f0f036d +int style Widget.Material3.Button.TonalButton.Icon 0x7f0f036e +int style Widget.Material3.Button.UnelevatedButton 0x7f0f036f +int style Widget.Material3.CardView.Elevated 0x7f0f0370 +int style Widget.Material3.CardView.Filled 0x7f0f0371 +int style Widget.Material3.CardView.Outlined 0x7f0f0372 +int style Widget.Material3.CheckedTextView 0x7f0f0373 +int style Widget.Material3.Chip.Assist 0x7f0f0374 +int style Widget.Material3.Chip.Assist.Elevated 0x7f0f0375 +int style Widget.Material3.Chip.Filter 0x7f0f0376 +int style Widget.Material3.Chip.Filter.Elevated 0x7f0f0377 +int style Widget.Material3.Chip.Input 0x7f0f0378 +int style Widget.Material3.Chip.Input.Elevated 0x7f0f0379 +int style Widget.Material3.Chip.Input.Icon 0x7f0f037a +int style Widget.Material3.Chip.Input.Icon.Elevated 0x7f0f037b +int style Widget.Material3.Chip.Suggestion 0x7f0f037c +int style Widget.Material3.Chip.Suggestion.Elevated 0x7f0f037d +int style Widget.Material3.ChipGroup 0x7f0f037e +int style Widget.Material3.CircularProgressIndicator 0x7f0f037f +int style Widget.Material3.CircularProgressIndicator.ExtraSmall 0x7f0f0380 +int style Widget.Material3.CircularProgressIndicator.Medium 0x7f0f0381 +int style Widget.Material3.CircularProgressIndicator.Small 0x7f0f0382 +int style Widget.Material3.CollapsingToolbar 0x7f0f0383 +int style Widget.Material3.CollapsingToolbar.Large 0x7f0f0384 +int style Widget.Material3.CollapsingToolbar.Medium 0x7f0f0385 +int style Widget.Material3.CompoundButton.CheckBox 0x7f0f0386 +int style Widget.Material3.CompoundButton.MaterialSwitch 0x7f0f0387 +int style Widget.Material3.CompoundButton.RadioButton 0x7f0f0388 +int style Widget.Material3.CompoundButton.Switch 0x7f0f0389 +int style Widget.Material3.DrawerLayout 0x7f0f038a +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Primary 0x7f0f038b +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary 0x7f0f038c +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Surface 0x7f0f038d +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary 0x7f0f038e +int style Widget.Material3.ExtendedFloatingActionButton.Primary 0x7f0f038f +int style Widget.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f0390 +int style Widget.Material3.ExtendedFloatingActionButton.Surface 0x7f0f0391 +int style Widget.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f0392 +int style Widget.Material3.FloatingActionButton.Large.Primary 0x7f0f0393 +int style Widget.Material3.FloatingActionButton.Large.Secondary 0x7f0f0394 +int style Widget.Material3.FloatingActionButton.Large.Surface 0x7f0f0395 +int style Widget.Material3.FloatingActionButton.Large.Tertiary 0x7f0f0396 +int style Widget.Material3.FloatingActionButton.Primary 0x7f0f0397 +int style Widget.Material3.FloatingActionButton.Secondary 0x7f0f0398 +int style Widget.Material3.FloatingActionButton.Small.Primary 0x7f0f0399 +int style Widget.Material3.FloatingActionButton.Small.Secondary 0x7f0f039a +int style Widget.Material3.FloatingActionButton.Small.Surface 0x7f0f039b +int style Widget.Material3.FloatingActionButton.Small.Tertiary 0x7f0f039c +int style Widget.Material3.FloatingActionButton.Surface 0x7f0f039d +int style Widget.Material3.FloatingActionButton.Tertiary 0x7f0f039e +int style Widget.Material3.Light.ActionBar.Solid 0x7f0f039f +int style Widget.Material3.LinearProgressIndicator 0x7f0f03a0 +int style Widget.Material3.MaterialButtonToggleGroup 0x7f0f03a1 +int style Widget.Material3.MaterialCalendar 0x7f0f03a2 +int style Widget.Material3.MaterialCalendar.Day 0x7f0f03a3 +int style Widget.Material3.MaterialCalendar.Day.Invalid 0x7f0f03a4 +int style Widget.Material3.MaterialCalendar.Day.Selected 0x7f0f03a5 +int style Widget.Material3.MaterialCalendar.Day.Today 0x7f0f03a6 +int style Widget.Material3.MaterialCalendar.DayOfWeekLabel 0x7f0f03a7 +int style Widget.Material3.MaterialCalendar.DayTextView 0x7f0f03a8 +int style Widget.Material3.MaterialCalendar.Fullscreen 0x7f0f03a9 +int style Widget.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f03aa +int style Widget.Material3.MaterialCalendar.HeaderDivider 0x7f0f03ab +int style Widget.Material3.MaterialCalendar.HeaderLayout 0x7f0f03ac +int style Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f03ad +int style Widget.Material3.MaterialCalendar.HeaderSelection 0x7f0f03ae +int style Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f03af +int style Widget.Material3.MaterialCalendar.HeaderTitle 0x7f0f03b0 +int style Widget.Material3.MaterialCalendar.HeaderToggleButton 0x7f0f03b1 +int style Widget.Material3.MaterialCalendar.Item 0x7f0f03b2 +int style Widget.Material3.MaterialCalendar.MonthNavigationButton 0x7f0f03b3 +int style Widget.Material3.MaterialCalendar.MonthTextView 0x7f0f03b4 +int style Widget.Material3.MaterialCalendar.Year 0x7f0f03b5 +int style Widget.Material3.MaterialCalendar.Year.Selected 0x7f0f03b6 +int style Widget.Material3.MaterialCalendar.Year.Today 0x7f0f03b7 +int style Widget.Material3.MaterialCalendar.YearNavigationButton 0x7f0f03b8 +int style Widget.Material3.MaterialDivider 0x7f0f03b9 +int style Widget.Material3.MaterialDivider.Heavy 0x7f0f03ba +int style Widget.Material3.MaterialTimePicker 0x7f0f03bb +int style Widget.Material3.MaterialTimePicker.Button 0x7f0f03bc +int style Widget.Material3.MaterialTimePicker.Clock 0x7f0f03bd +int style Widget.Material3.MaterialTimePicker.Display 0x7f0f03be +int style Widget.Material3.MaterialTimePicker.Display.Divider 0x7f0f03bf +int style Widget.Material3.MaterialTimePicker.Display.HelperText 0x7f0f03c0 +int style Widget.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f03c1 +int style Widget.Material3.MaterialTimePicker.Display.TextInputLayout 0x7f0f03c2 +int style Widget.Material3.MaterialTimePicker.ImageButton 0x7f0f03c3 +int style Widget.Material3.NavigationRailView 0x7f0f03c4 +int style Widget.Material3.NavigationRailView.ActiveIndicator 0x7f0f03c5 +int style Widget.Material3.NavigationRailView.Badge 0x7f0f03c6 +int style Widget.Material3.NavigationView 0x7f0f03c7 +int style Widget.Material3.PopupMenu 0x7f0f03c8 +int style Widget.Material3.PopupMenu.ContextMenu 0x7f0f03c9 +int style Widget.Material3.PopupMenu.ListPopupWindow 0x7f0f03ca +int style Widget.Material3.PopupMenu.Overflow 0x7f0f03cb +int style Widget.Material3.Search.ActionButton.Overflow 0x7f0f03cc +int style Widget.Material3.Search.Toolbar.Button.Navigation 0x7f0f03cd +int style Widget.Material3.SearchBar 0x7f0f03ce +int style Widget.Material3.SearchBar.Outlined 0x7f0f03cf +int style Widget.Material3.SearchView 0x7f0f03d0 +int style Widget.Material3.SearchView.Prefix 0x7f0f03d1 +int style Widget.Material3.SearchView.Toolbar 0x7f0f03d2 +int style Widget.Material3.SideSheet 0x7f0f03d3 +int style Widget.Material3.SideSheet.Detached 0x7f0f03d4 +int style Widget.Material3.SideSheet.Modal 0x7f0f03d5 +int style Widget.Material3.SideSheet.Modal.Detached 0x7f0f03d6 +int style Widget.Material3.Slider 0x7f0f03d7 +int style Widget.Material3.Slider.Label 0x7f0f03d8 +int style Widget.Material3.Snackbar 0x7f0f03d9 +int style Widget.Material3.Snackbar.FullWidth 0x7f0f03da +int style Widget.Material3.Snackbar.TextView 0x7f0f03db +int style Widget.Material3.TabLayout 0x7f0f03dc +int style Widget.Material3.TabLayout.OnSurface 0x7f0f03dd +int style Widget.Material3.TabLayout.Secondary 0x7f0f03de +int style Widget.Material3.TextInputEditText.FilledBox 0x7f0f03df +int style Widget.Material3.TextInputEditText.FilledBox.Dense 0x7f0f03e0 +int style Widget.Material3.TextInputEditText.OutlinedBox 0x7f0f03e1 +int style Widget.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f03e2 +int style Widget.Material3.TextInputLayout.FilledBox 0x7f0f03e3 +int style Widget.Material3.TextInputLayout.FilledBox.Dense 0x7f0f03e4 +int style Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f03e5 +int style Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f03e6 +int style Widget.Material3.TextInputLayout.OutlinedBox 0x7f0f03e7 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense 0x7f0f03e8 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f03e9 +int style Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f03ea +int style Widget.Material3.Toolbar 0x7f0f03eb +int style Widget.Material3.Toolbar.OnSurface 0x7f0f03ec +int style Widget.Material3.Toolbar.Surface 0x7f0f03ed +int style Widget.Material3.Tooltip 0x7f0f03ee +int style Widget.MaterialComponents.ActionBar.Primary 0x7f0f03ef +int style Widget.MaterialComponents.ActionBar.PrimarySurface 0x7f0f03f0 +int style Widget.MaterialComponents.ActionBar.Solid 0x7f0f03f1 +int style Widget.MaterialComponents.ActionBar.Surface 0x7f0f03f2 +int style Widget.MaterialComponents.ActionMode 0x7f0f03f3 +int style Widget.MaterialComponents.AppBarLayout.Primary 0x7f0f03f4 +int style Widget.MaterialComponents.AppBarLayout.PrimarySurface 0x7f0f03f5 +int style Widget.MaterialComponents.AppBarLayout.Surface 0x7f0f03f6 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f03f7 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f03f8 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f03f9 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f03fa +int style Widget.MaterialComponents.Badge 0x7f0f03fb +int style Widget.MaterialComponents.BottomAppBar 0x7f0f03fc +int style Widget.MaterialComponents.BottomAppBar.Colored 0x7f0f03fd +int style Widget.MaterialComponents.BottomAppBar.PrimarySurface 0x7f0f03fe +int style Widget.MaterialComponents.BottomNavigationView 0x7f0f03ff +int style Widget.MaterialComponents.BottomNavigationView.Colored 0x7f0f0400 +int style Widget.MaterialComponents.BottomNavigationView.PrimarySurface 0x7f0f0401 +int style Widget.MaterialComponents.BottomSheet 0x7f0f0402 +int style Widget.MaterialComponents.BottomSheet.Modal 0x7f0f0403 +int style Widget.MaterialComponents.Button 0x7f0f0404 +int style Widget.MaterialComponents.Button.Icon 0x7f0f0405 +int style Widget.MaterialComponents.Button.OutlinedButton 0x7f0f0406 +int style Widget.MaterialComponents.Button.OutlinedButton.Icon 0x7f0f0407 +int style Widget.MaterialComponents.Button.TextButton 0x7f0f0408 +int style Widget.MaterialComponents.Button.TextButton.Dialog 0x7f0f0409 +int style Widget.MaterialComponents.Button.TextButton.Dialog.Flush 0x7f0f040a +int style Widget.MaterialComponents.Button.TextButton.Dialog.Icon 0x7f0f040b +int style Widget.MaterialComponents.Button.TextButton.Icon 0x7f0f040c +int style Widget.MaterialComponents.Button.TextButton.Snackbar 0x7f0f040d +int style Widget.MaterialComponents.Button.UnelevatedButton 0x7f0f040e +int style Widget.MaterialComponents.Button.UnelevatedButton.Icon 0x7f0f040f +int style Widget.MaterialComponents.CardView 0x7f0f0410 +int style Widget.MaterialComponents.CheckedTextView 0x7f0f0411 +int style Widget.MaterialComponents.Chip.Action 0x7f0f0412 +int style Widget.MaterialComponents.Chip.Choice 0x7f0f0413 +int style Widget.MaterialComponents.Chip.Entry 0x7f0f0414 +int style Widget.MaterialComponents.Chip.Filter 0x7f0f0415 +int style Widget.MaterialComponents.ChipGroup 0x7f0f0416 +int style Widget.MaterialComponents.CircularProgressIndicator 0x7f0f0417 +int style Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall 0x7f0f0418 +int style Widget.MaterialComponents.CircularProgressIndicator.Medium 0x7f0f0419 +int style Widget.MaterialComponents.CircularProgressIndicator.Small 0x7f0f041a +int style Widget.MaterialComponents.CollapsingToolbar 0x7f0f041b +int style Widget.MaterialComponents.CompoundButton.CheckBox 0x7f0f041c +int style Widget.MaterialComponents.CompoundButton.RadioButton 0x7f0f041d +int style Widget.MaterialComponents.CompoundButton.Switch 0x7f0f041e +int style Widget.MaterialComponents.ExtendedFloatingActionButton 0x7f0f041f +int style Widget.MaterialComponents.ExtendedFloatingActionButton.Icon 0x7f0f0420 +int style Widget.MaterialComponents.FloatingActionButton 0x7f0f0421 +int style Widget.MaterialComponents.Light.ActionBar.Solid 0x7f0f0422 +int style Widget.MaterialComponents.LinearProgressIndicator 0x7f0f0423 +int style Widget.MaterialComponents.MaterialButtonToggleGroup 0x7f0f0424 +int style Widget.MaterialComponents.MaterialCalendar 0x7f0f0425 +int style Widget.MaterialComponents.MaterialCalendar.Day 0x7f0f0426 +int style Widget.MaterialComponents.MaterialCalendar.Day.Invalid 0x7f0f0427 +int style Widget.MaterialComponents.MaterialCalendar.Day.Selected 0x7f0f0428 +int style Widget.MaterialComponents.MaterialCalendar.Day.Today 0x7f0f0429 +int style Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel 0x7f0f042a +int style Widget.MaterialComponents.MaterialCalendar.DayTextView 0x7f0f042b +int style Widget.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f042c +int style Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton 0x7f0f042d +int style Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton 0x7f0f042e +int style Widget.MaterialComponents.MaterialCalendar.HeaderDivider 0x7f0f042f +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout 0x7f0f0430 +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f0431 +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection 0x7f0f0432 +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f0433 +int style Widget.MaterialComponents.MaterialCalendar.HeaderTitle 0x7f0f0434 +int style Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0435 +int style Widget.MaterialComponents.MaterialCalendar.Item 0x7f0f0436 +int style Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton 0x7f0f0437 +int style Widget.MaterialComponents.MaterialCalendar.MonthTextView 0x7f0f0438 +int style Widget.MaterialComponents.MaterialCalendar.Year 0x7f0f0439 +int style Widget.MaterialComponents.MaterialCalendar.Year.Selected 0x7f0f043a +int style Widget.MaterialComponents.MaterialCalendar.Year.Today 0x7f0f043b +int style Widget.MaterialComponents.MaterialCalendar.YearNavigationButton 0x7f0f043c +int style Widget.MaterialComponents.MaterialDivider 0x7f0f043d +int style Widget.MaterialComponents.NavigationRailView 0x7f0f043e +int style Widget.MaterialComponents.NavigationRailView.Colored 0x7f0f043f +int style Widget.MaterialComponents.NavigationRailView.Colored.Compact 0x7f0f0440 +int style Widget.MaterialComponents.NavigationRailView.Compact 0x7f0f0441 +int style Widget.MaterialComponents.NavigationRailView.PrimarySurface 0x7f0f0442 +int style Widget.MaterialComponents.NavigationView 0x7f0f0443 +int style Widget.MaterialComponents.PopupMenu 0x7f0f0444 +int style Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f0445 +int style Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f0446 +int style Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f0447 +int style Widget.MaterialComponents.ProgressIndicator 0x7f0f0448 +int style Widget.MaterialComponents.ShapeableImageView 0x7f0f0449 +int style Widget.MaterialComponents.Slider 0x7f0f044a +int style Widget.MaterialComponents.Snackbar 0x7f0f044b +int style Widget.MaterialComponents.Snackbar.FullWidth 0x7f0f044c +int style Widget.MaterialComponents.Snackbar.TextView 0x7f0f044d +int style Widget.MaterialComponents.TabLayout 0x7f0f044e +int style Widget.MaterialComponents.TabLayout.Colored 0x7f0f044f +int style Widget.MaterialComponents.TabLayout.PrimarySurface 0x7f0f0450 +int style Widget.MaterialComponents.TextInputEditText.FilledBox 0x7f0f0451 +int style Widget.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f0452 +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f0453 +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f0454 +int style Widget.MaterialComponents.TextInputLayout.FilledBox 0x7f0f0455 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense 0x7f0f0456 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f0457 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f0458 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox 0x7f0f0459 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense 0x7f0f045a +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f045b +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f045c +int style Widget.MaterialComponents.TextView 0x7f0f045d +int style Widget.MaterialComponents.TimePicker 0x7f0f045e +int style Widget.MaterialComponents.TimePicker.Button 0x7f0f045f +int style Widget.MaterialComponents.TimePicker.Clock 0x7f0f0460 +int style Widget.MaterialComponents.TimePicker.Display 0x7f0f0461 +int style Widget.MaterialComponents.TimePicker.Display.Divider 0x7f0f0462 +int style Widget.MaterialComponents.TimePicker.Display.HelperText 0x7f0f0463 +int style Widget.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f0464 +int style Widget.MaterialComponents.TimePicker.Display.TextInputLayout 0x7f0f0465 +int style Widget.MaterialComponents.TimePicker.ImageButton 0x7f0f0466 +int style Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance 0x7f0f0467 +int style Widget.MaterialComponents.Toolbar 0x7f0f0468 +int style Widget.MaterialComponents.Toolbar.Primary 0x7f0f0469 +int style Widget.MaterialComponents.Toolbar.PrimarySurface 0x7f0f046a +int style Widget.MaterialComponents.Toolbar.Surface 0x7f0f046b +int style Widget.MaterialComponents.Tooltip 0x7f0f046c +int style Widget.Support.CoordinatorLayout 0x7f0f046d +int style collectionViewTheme 0x7f0f046e +int style scrollViewScrollBars 0x7f0f046f +int style scrollViewTheme 0x7f0f0470 +int[] styleable ActionBar { 0x7f030049, 0x7f030050, 0x7f030051, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f03016c, 0x7f030183, 0x7f030184, 0x7f0301a4, 0x7f030220, 0x7f030228, 0x7f03022e, 0x7f03022f, 0x7f030233, 0x7f030244, 0x7f03025a, 0x7f0302d8, 0x7f03035c, 0x7f030395, 0x7f03039d, 0x7f03039e, 0x7f030421, 0x7f030425, 0x7f0304ad, 0x7f0304bb } +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +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 ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f030049, 0x7f030050, 0x7f0300e9, 0x7f030220, 0x7f030425, 0x7f0304bb } +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 { 0x7f0301c1, 0x7f03024a } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable ActivityFilter { 0x7f030028, 0x7f03002a } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityNavigator { 0x7f030002, 0x01010003, 0x7f030170, 0x7f030171, 0x7f03044e } +int styleable ActivityNavigator_action 0 +int styleable ActivityNavigator_android_name 1 +int styleable ActivityNavigator_data 2 +int styleable ActivityNavigator_dataPattern 3 +int styleable ActivityNavigator_targetPackage 4 +int[] styleable ActivityRule { 0x7f030034, 0x7f03044c } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030095, 0x7f030098, 0x7f0302cd, 0x7f0302ce, 0x7f030357, 0x7f0303e0, 0x7f0303e8 } +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 { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +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 { 0x01010199, 0x010100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x0101044a, 0x0101044b, 0x01010449 } +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 AppBarLayout { 0x010100d4, 0x01010540, 0x0101048f, 0x7f0301a4, 0x7f0301c2, 0x7f0302c2, 0x7f0302c3, 0x7f0302c4, 0x7f030416 } +int[] styleable AppBarLayoutStates { 0x7f03040d, 0x7f03040e, 0x7f030412, 0x7f030413 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f0302be, 0x7f0302bf, 0x7f0302c0 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x01010119, 0x7f030401, 0x7f0304aa, 0x7f0304ab } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0304a4, 0x7f0304a5, 0x7f0304a6 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 } +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 { 0x01010034, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f0301a8, 0x7f0301e5, 0x7f030209, 0x7f030212, 0x7f030276, 0x7f0302c6, 0x7f030452, 0x7f030489 } +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 { 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x010100ae, 0x01010057, 0x7f030042, 0x7f030079, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030099, 0x7f03009a, 0x7f0300b4, 0x7f0300bf, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fb, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030117, 0x7f030119, 0x7f03012e, 0x7f03014d, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030186, 0x7f03018b, 0x7f03019e, 0x7f03019d, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f03022e, 0x7f03023e, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302cc, 0x7f0302cf, 0x7f0302d0, 0x7f0302d1, 0x7f0302d2, 0x7f0302d3, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f0302d7, 0x7f030378, 0x7f030379, 0x7f03037a, 0x7f030394, 0x7f030396, 0x7f0303a5, 0x7f0303a7, 0x7f0303a8, 0x7f0303a9, 0x7f0303c3, 0x7f0303c6, 0x7f0303c7, 0x7f0303c8, 0x7f0303f2, 0x7f0303f3, 0x7f03042d, 0x7f030469, 0x7f03046b, 0x7f03046c, 0x7f03046d, 0x7f03046f, 0x7f030470, 0x7f030471, 0x7f030472, 0x7f03047d, 0x7f03047e, 0x7f0304be, 0x7f0304bf, 0x7f0304c1, 0x7f0304c2, 0x7f0304e6, 0x7f0304f4, 0x7f0304f5, 0x7f0304f6, 0x7f0304f7, 0x7f0304f8, 0x7f0304f9, 0x7f0304fa, 0x7f0304fb, 0x7f0304fc, 0x7f0304fd } +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 67 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 66 +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 Badge { 0x7f030040, 0x7f03004a, 0x7f030054, 0x7f030055, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030230, 0x7f030231, 0x7f030275, 0x7f030311, 0x7f030315, 0x7f030363, 0x7f030365, 0x7f0304e4, 0x7f0304e5 } +int styleable Badge_autoAdjustToWithinGrandparentBounds 0 +int styleable Badge_backgroundColor 1 +int styleable Badge_badgeGravity 2 +int styleable Badge_badgeHeight 3 +int styleable Badge_badgeRadius 4 +int styleable Badge_badgeShapeAppearance 5 +int styleable Badge_badgeShapeAppearanceOverlay 6 +int styleable Badge_badgeText 7 +int styleable Badge_badgeTextAppearance 8 +int styleable Badge_badgeTextColor 9 +int styleable Badge_badgeVerticalPadding 10 +int styleable Badge_badgeWidePadding 11 +int styleable Badge_badgeWidth 12 +int styleable Badge_badgeWithTextHeight 13 +int styleable Badge_badgeWithTextRadius 14 +int styleable Badge_badgeWithTextShapeAppearance 15 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 16 +int styleable Badge_badgeWithTextWidth 17 +int styleable Badge_horizontalOffset 18 +int styleable Badge_horizontalOffsetWithText 19 +int styleable Badge_largeFontVerticalOffsetAdjustment 20 +int styleable Badge_maxCharacterCount 21 +int styleable Badge_maxNumber 22 +int styleable Badge_number 23 +int styleable Badge_offsetAlignmentMode 24 +int styleable Badge_verticalOffset 25 +int styleable Badge_verticalOffsetWithText 26 +int[] styleable BaseProgressIndicator { 0x01010139, 0x7f030225, 0x7f030245, 0x7f03031f, 0x7f0303d9, 0x7f0303db, 0x7f0304ca, 0x7f0304cd, 0x7f0304d2 } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f03002b, 0x7f030052, 0x7f0301a4, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f030229, 0x7f03031a, 0x7f03035b, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f0303b3 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x01010140, 0x7f030134, 0x7f030254, 0x7f0303cc, 0x7f0303d4 } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int styleable BottomNavigationView_shapeAppearance 3 +int styleable BottomNavigationView_shapeAppearanceOverlay 4 +int[] styleable BottomSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030052, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030219, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f030377, 0x7f0303cc, 0x7f0303d4, 0x7f0303d8 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_maxWidth 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x7f030030 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x7f0303a4, 0x7f0303d7 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x01010140, 0x0101013f, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f030144, 0x7f030145, 0x7f030147, 0x7f030148, 0x7f03014a } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable CheckedTextView { 0x01010108, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x010101e5, 0x010100ab, 0x0101011f, 0x0101014f, 0x01010034, 0x01010098, 0x01010095, 0x7f0300b7, 0x7f0300b8, 0x7f0300bc, 0x7f0300bd, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f0300ca, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d3, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f0301b4, 0x7f030226, 0x7f030234, 0x7f030238, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f0303dd, 0x7f03047f, 0x7f03048e } +int[] styleable ChipGroup { 0x7f0300b6, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0303c9, 0x7f0303e9, 0x7f0303ea } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable CircularProgressIndicator { 0x7f030246, 0x7f030248, 0x7f030249 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0300de, 0x7f0300e1 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0300df, 0x7f0302fc, 0x7f0303ca } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f03014b, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301d3, 0x7f030214, 0x7f030314, 0x7f0303bd, 0x7f0303bf, 0x7f030417, 0x7f0304ad, 0x7f0304af, 0x7f0304b0, 0x7f0304b7, 0x7f0304ba, 0x7f0304bd } +int[] styleable CollapsingToolbarLayout_Layout { 0x7f030280, 0x7f030281 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable ColorStateListItem { 0x7f030031, 0x0101031f, 0x010101a5, 0x01010647, 0x7f030271 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x01010107, 0x7f030092, 0x7f03009b, 0x7f03009c } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03013a, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9, 0x7f0304eb } +int[] styleable ConstraintLayout_Layout { 0x01010440, 0x010100f5, 0x010100f6, 0x010100fa, 0x010103b6, 0x0101053b, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x0101053c, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010100d5, 0x010100d9, 0x010103b4, 0x010100d6, 0x010100d8, 0x010103b3, 0x010100d7, 0x010100dc, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f030136, 0x7f030139, 0x7f03013a, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f03027a, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302bd, 0x7f0302c1 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_guidelineUseRtl 55 +int styleable ConstraintLayout_Layout_layoutDescription 56 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 57 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 64 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 65 +int styleable ConstraintLayout_Layout_layout_constraintCircle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 67 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 68 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 70 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 73 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 78 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 81 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 84 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 87 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 89 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 90 +int styleable ConstraintLayout_Layout_layout_constraintTag 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 93 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 96 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 101 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 103 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 105 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 106 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 107 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 108 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 109 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 110 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 111 +int styleable ConstraintLayout_Layout_layout_marginBaseline 112 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 113 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 114 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f0303aa, 0x7f0303ab, 0x7f0303ac, 0x7f0303ad } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f03013c, 0x7f03038c } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030288, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029f, 0x7f0302a4, 0x7f0302a5, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030353, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9, 0x7f0304eb } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_guidelineUseRtl 53 +int styleable ConstraintOverride_layout_constrainedHeight 54 +int styleable ConstraintOverride_layout_constrainedWidth 55 +int styleable ConstraintOverride_layout_constraintBaseline_creator 56 +int styleable ConstraintOverride_layout_constraintBottom_creator 57 +int styleable ConstraintOverride_layout_constraintCircleAngle 58 +int styleable ConstraintOverride_layout_constraintCircleRadius 59 +int styleable ConstraintOverride_layout_constraintDimensionRatio 60 +int styleable ConstraintOverride_layout_constraintGuide_begin 61 +int styleable ConstraintOverride_layout_constraintGuide_end 62 +int styleable ConstraintOverride_layout_constraintGuide_percent 63 +int styleable ConstraintOverride_layout_constraintHeight 64 +int styleable ConstraintOverride_layout_constraintHeight_default 65 +int styleable ConstraintOverride_layout_constraintHeight_max 66 +int styleable ConstraintOverride_layout_constraintHeight_min 67 +int styleable ConstraintOverride_layout_constraintHeight_percent 68 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 69 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 70 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 71 +int styleable ConstraintOverride_layout_constraintLeft_creator 72 +int styleable ConstraintOverride_layout_constraintRight_creator 73 +int styleable ConstraintOverride_layout_constraintTag 74 +int styleable ConstraintOverride_layout_constraintTop_creator 75 +int styleable ConstraintOverride_layout_constraintVertical_bias 76 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 77 +int styleable ConstraintOverride_layout_constraintVertical_weight 78 +int styleable ConstraintOverride_layout_constraintWidth 79 +int styleable ConstraintOverride_layout_constraintWidth_default 80 +int styleable ConstraintOverride_layout_constraintWidth_max 81 +int styleable ConstraintOverride_layout_constraintWidth_min 82 +int styleable ConstraintOverride_layout_constraintWidth_percent 83 +int styleable ConstraintOverride_layout_editor_absoluteX 84 +int styleable ConstraintOverride_layout_editor_absoluteY 85 +int styleable ConstraintOverride_layout_goneMarginBaseline 86 +int styleable ConstraintOverride_layout_goneMarginBottom 87 +int styleable ConstraintOverride_layout_goneMarginEnd 88 +int styleable ConstraintOverride_layout_goneMarginLeft 89 +int styleable ConstraintOverride_layout_goneMarginRight 90 +int styleable ConstraintOverride_layout_goneMarginStart 91 +int styleable ConstraintOverride_layout_goneMarginTop 92 +int styleable ConstraintOverride_layout_marginBaseline 93 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 94 +int styleable ConstraintOverride_motionProgress 95 +int styleable ConstraintOverride_motionStagger 96 +int styleable ConstraintOverride_motionTarget 97 +int styleable ConstraintOverride_pathMotionArc 98 +int styleable ConstraintOverride_pivotAnchor 99 +int styleable ConstraintOverride_polarRelativeTo 100 +int styleable ConstraintOverride_quantizeMotionInterpolator 101 +int styleable ConstraintOverride_quantizeMotionPhase 102 +int styleable ConstraintOverride_quantizeMotionSteps 103 +int styleable ConstraintOverride_transformPivotTarget 104 +int styleable ConstraintOverride_transitionEasing 105 +int styleable ConstraintOverride_transitionPathRotate 106 +int styleable ConstraintOverride_visibilityMode 107 +int[] styleable ConstraintSet { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010101b5, 0x010101b6, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030135, 0x7f030139, 0x7f03013a, 0x7f03017e, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f0303a1, 0x7f0304d7, 0x7f0304d9 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animateCircleAngleTo 29 +int styleable ConstraintSet_animateRelativeTo 30 +int styleable ConstraintSet_barrierAllowsGoneWidgets 31 +int styleable ConstraintSet_barrierDirection 32 +int styleable ConstraintSet_barrierMargin 33 +int styleable ConstraintSet_chainUseRtl 34 +int styleable ConstraintSet_constraintRotate 35 +int styleable ConstraintSet_constraint_referenced_ids 36 +int styleable ConstraintSet_constraint_referenced_tags 37 +int styleable ConstraintSet_deriveConstraintsFrom 38 +int styleable ConstraintSet_drawPath 39 +int styleable ConstraintSet_flow_firstHorizontalBias 40 +int styleable ConstraintSet_flow_firstHorizontalStyle 41 +int styleable ConstraintSet_flow_firstVerticalBias 42 +int styleable ConstraintSet_flow_firstVerticalStyle 43 +int styleable ConstraintSet_flow_horizontalAlign 44 +int styleable ConstraintSet_flow_horizontalBias 45 +int styleable ConstraintSet_flow_horizontalGap 46 +int styleable ConstraintSet_flow_horizontalStyle 47 +int styleable ConstraintSet_flow_lastHorizontalBias 48 +int styleable ConstraintSet_flow_lastHorizontalStyle 49 +int styleable ConstraintSet_flow_lastVerticalBias 50 +int styleable ConstraintSet_flow_lastVerticalStyle 51 +int styleable ConstraintSet_flow_maxElementsWrap 52 +int styleable ConstraintSet_flow_verticalAlign 53 +int styleable ConstraintSet_flow_verticalBias 54 +int styleable ConstraintSet_flow_verticalGap 55 +int styleable ConstraintSet_flow_verticalStyle 56 +int styleable ConstraintSet_flow_wrapMode 57 +int styleable ConstraintSet_guidelineUseRtl 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_barrierAllowsGoneWidgets 29 +int styleable Constraint_barrierDirection 30 +int styleable Constraint_barrierMargin 31 +int styleable Constraint_chainUseRtl 32 +int styleable Constraint_constraint_referenced_ids 33 +int styleable Constraint_constraint_referenced_tags 34 +int styleable Constraint_drawPath 35 +int styleable Constraint_flow_firstHorizontalBias 36 +int styleable Constraint_flow_firstHorizontalStyle 37 +int styleable Constraint_flow_firstVerticalBias 38 +int styleable Constraint_flow_firstVerticalStyle 39 +int styleable Constraint_flow_horizontalAlign 40 +int styleable Constraint_flow_horizontalBias 41 +int styleable Constraint_flow_horizontalGap 42 +int styleable Constraint_flow_horizontalStyle 43 +int styleable Constraint_flow_lastHorizontalBias 44 +int styleable Constraint_flow_lastHorizontalStyle 45 +int styleable Constraint_flow_lastVerticalBias 46 +int styleable Constraint_flow_lastVerticalStyle 47 +int styleable Constraint_flow_maxElementsWrap 48 +int styleable Constraint_flow_verticalAlign 49 +int styleable Constraint_flow_verticalBias 50 +int styleable Constraint_flow_verticalGap 51 +int styleable Constraint_flow_verticalStyle 52 +int styleable Constraint_flow_wrapMode 53 +int styleable Constraint_guidelineUseRtl 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable CoordinatorLayout { 0x7f030270, 0x7f030415 } +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f0302b0, 0x7f0302ba, 0x7f0302bb } +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 CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CustomAttribute { 0x7f03003f, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f03031c } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable DialogFragmentNavigator { 0x01010003 } +int styleable DialogFragmentNavigator_android_name 0 +int[] styleable DrawerArrowToggle { 0x7f03003d, 0x7f03003e, 0x7f030065, 0x7f0300f6, 0x7f030194, 0x7f030218, 0x7f0303f1, 0x7f030494 } +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 DrawerLayout { 0x7f0301a4 } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x7f0300ec, 0x7f0301a4, 0x7f0301cc, 0x7f0301cd, 0x7f030226, 0x7f0303dd, 0x7f0303e1 } +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f030069, 0x7f03006a } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable FloatingActionButton { 0x0101000e, 0x7f030052, 0x7f030053, 0x7f030078, 0x7f0301a4, 0x7f0301b4, 0x7f0301db, 0x7f0301dc, 0x7f030226, 0x7f030232, 0x7f030313, 0x7f03039b, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f0303dd, 0x7f0304e1 } +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030069 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FlowLayout { 0x7f030265, 0x7f0302c7 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03020d, 0x7f03020e, 0x7f03020f, 0x7f030210 } +int[] styleable FontFamilyFont { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f030208, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f0304de } +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 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 FontFamily_fontProviderSystemFontFamily 6 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f030216 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x010100d0, 0x01010003, 0x010100d1 } +int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable FragmentNavigator { 0x01010003 } +int styleable FragmentNavigator_android_name 0 +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable GradientColor { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 } +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +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 ImageFilterView { 0x7f030033, 0x7f030075, 0x7f03008c, 0x7f03014c, 0x7f030161, 0x7f03023f, 0x7f030240, 0x7f030241, 0x7f030242, 0x7f03036e, 0x7f0303b8, 0x7f0303b9, 0x7f0303bb, 0x7f0304ed } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f030375, 0x7f030377 } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingStartSystemWindowInsets 6 +int styleable Insets_paddingTopSystemWindowInsets 7 +int[] styleable ItemsViewRendererTheme { 0x7f0300f5 } +int styleable ItemsViewRendererTheme_collectionViewStyle 0 +int[] styleable KeyAttribute { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d7, 0x7f0304d9, 0x7f0304ef, 0x7f0304f0, 0x7f0304f1, 0x7f0304f2, 0x7f0304f3 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f030165, 0x7f03018f, 0x7f030217, 0x7f03026e, 0x7f030353, 0x7f030380, 0x7f030382, 0x7f030383, 0x7f030384, 0x7f030385, 0x7f0303eb, 0x7f0304d7 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d7, 0x7f0304d9, 0x7f0304ee, 0x7f0304ef, 0x7f0304f0, 0x7f0304f1, 0x7f0304f2 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f030217, 0x7f030353, 0x7f030354, 0x7f030355, 0x7f030366, 0x7f030368, 0x7f030369, 0x7f0304db, 0x7f0304dc, 0x7f0304dd, 0x7f0304e8, 0x7f0304e9, 0x7f0304ea } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x010100c4, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03013a, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030312, 0x7f030317, 0x7f03031e, 0x7f030322 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_guidelineUseRtl 15 +int styleable Layout_layout_constrainedHeight 16 +int styleable Layout_layout_constrainedWidth 17 +int styleable Layout_layout_constraintBaseline_creator 18 +int styleable Layout_layout_constraintBaseline_toBaselineOf 19 +int styleable Layout_layout_constraintBaseline_toBottomOf 20 +int styleable Layout_layout_constraintBaseline_toTopOf 21 +int styleable Layout_layout_constraintBottom_creator 22 +int styleable Layout_layout_constraintBottom_toBottomOf 23 +int styleable Layout_layout_constraintBottom_toTopOf 24 +int styleable Layout_layout_constraintCircle 25 +int styleable Layout_layout_constraintCircleAngle 26 +int styleable Layout_layout_constraintCircleRadius 27 +int styleable Layout_layout_constraintDimensionRatio 28 +int styleable Layout_layout_constraintEnd_toEndOf 29 +int styleable Layout_layout_constraintEnd_toStartOf 30 +int styleable Layout_layout_constraintGuide_begin 31 +int styleable Layout_layout_constraintGuide_end 32 +int styleable Layout_layout_constraintGuide_percent 33 +int styleable Layout_layout_constraintHeight 34 +int styleable Layout_layout_constraintHeight_default 35 +int styleable Layout_layout_constraintHeight_max 36 +int styleable Layout_layout_constraintHeight_min 37 +int styleable Layout_layout_constraintHeight_percent 38 +int styleable Layout_layout_constraintHorizontal_bias 39 +int styleable Layout_layout_constraintHorizontal_chainStyle 40 +int styleable Layout_layout_constraintHorizontal_weight 41 +int styleable Layout_layout_constraintLeft_creator 42 +int styleable Layout_layout_constraintLeft_toLeftOf 43 +int styleable Layout_layout_constraintLeft_toRightOf 44 +int styleable Layout_layout_constraintRight_creator 45 +int styleable Layout_layout_constraintRight_toLeftOf 46 +int styleable Layout_layout_constraintRight_toRightOf 47 +int styleable Layout_layout_constraintStart_toEndOf 48 +int styleable Layout_layout_constraintStart_toStartOf 49 +int styleable Layout_layout_constraintTop_creator 50 +int styleable Layout_layout_constraintTop_toBottomOf 51 +int styleable Layout_layout_constraintTop_toTopOf 52 +int styleable Layout_layout_constraintVertical_bias 53 +int styleable Layout_layout_constraintVertical_chainStyle 54 +int styleable Layout_layout_constraintVertical_weight 55 +int styleable Layout_layout_constraintWidth 56 +int styleable Layout_layout_constraintWidth_default 57 +int styleable Layout_layout_constraintWidth_max 58 +int styleable Layout_layout_constraintWidth_min 59 +int styleable Layout_layout_constraintWidth_percent 60 +int styleable Layout_layout_editor_absoluteX 61 +int styleable Layout_layout_editor_absoluteY 62 +int styleable Layout_layout_goneMarginBaseline 63 +int styleable Layout_layout_goneMarginBottom 64 +int styleable Layout_layout_goneMarginEnd 65 +int styleable Layout_layout_goneMarginLeft 66 +int styleable Layout_layout_goneMarginRight 67 +int styleable Layout_layout_goneMarginStart 68 +int styleable Layout_layout_goneMarginTop 69 +int styleable Layout_layout_marginBaseline 70 +int styleable Layout_layout_wrapBehaviorInParent 71 +int styleable Layout_maxHeight 72 +int styleable Layout_maxWidth 73 +int styleable Layout_minHeight 74 +int styleable Layout_minWidth 75 +int[] styleable LinearLayoutCompat { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f030184, 0x7f030189, 0x7f030318, 0x7f0303dc } +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 } +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 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 LinearProgressIndicator { 0x7f030243, 0x7f030247 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f030052 } +int[] styleable MaterialAlertDialogTheme { 0x7f0302e0, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int styleable MaterialAlertDialog_backgroundTint 4 +int[] styleable MaterialAutoCompleteTextView { 0x01010220, 0x0101048c, 0x7f03019c, 0x7f0303e4, 0x7f0303e7, 0x7f0303e5, 0x7f0303e6 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_dropDownBackgroundTint 2 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 3 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 5 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 6 +int styleable MaterialAutoCompleteTextView_simpleItems 4 +int[] styleable MaterialButton { 0x010100d4, 0x010101e5, 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f030052, 0x7f030053, 0x7f030155, 0x7f0301a4, 0x7f030233, 0x7f030235, 0x7f030236, 0x7f030237, 0x7f030239, 0x7f03023a, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f030419, 0x7f03041a, 0x7f0304bc } +int[] styleable MaterialButtonToggleGroup { 0x0101000e, 0x7f0300b5, 0x7f0303c9, 0x7f0303ea } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialCalendar { 0x0101020d, 0x7f030052, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f030361, 0x7f0303a6, 0x7f0304fe, 0x7f0304ff, 0x7f030500 } +int[] styleable MaterialCalendarItem { 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f030252, 0x7f03025e, 0x7f03025f, 0x7f030266, 0x7f030267, 0x7f03026c } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_backgroundTint 1 +int styleable MaterialCalendar_dayInvalidStyle 2 +int styleable MaterialCalendar_daySelectedStyle 3 +int styleable MaterialCalendar_dayStyle 4 +int styleable MaterialCalendar_dayTodayStyle 5 +int styleable MaterialCalendar_nestedScrollable 6 +int styleable MaterialCalendar_rangeFillColor 7 +int styleable MaterialCalendar_yearSelectedStyle 8 +int styleable MaterialCalendar_yearStyle 9 +int styleable MaterialCalendar_yearTodayStyle 10 +int[] styleable MaterialCardView { 0x010101e5, 0x7f0300a0, 0x7f0300b7, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f03040f, 0x7f030419, 0x7f03041a } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x01010107, 0x7f030092, 0x7f030094, 0x7f030096, 0x7f030097, 0x7f03009b, 0x7f0300af, 0x7f0300be, 0x7f0301b6, 0x7f0301bd, 0x7f0304e2 } +int[] styleable MaterialCheckBoxStates { 0x7f030410, 0x7f030411 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialDivider { 0x7f030185, 0x7f030187, 0x7f030188, 0x7f03018a, 0x7f030277 } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x7f03009b, 0x7f0304e2 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0303cc, 0x7f0303d4 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x7f030497, 0x7f030498, 0x7f030499, 0x7f03049a, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0 } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconSize 1 +int styleable MaterialSwitch_thumbIconTint 2 +int styleable MaterialSwitch_thumbIconTintMode 3 +int styleable MaterialSwitch_trackDecoration 4 +int styleable MaterialSwitch_trackDecorationTint 5 +int styleable MaterialSwitch_trackDecorationTintMode 6 +int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f0302c6 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x0101057f, 0x01010034, 0x7f0302c6 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f030052, 0x7f0300e0, 0x7f03026f } +int styleable MaterialTimePicker_backgroundTint 0 +int styleable MaterialTimePicker_clockIcon 1 +int styleable MaterialTimePicker_keyboardIcon 2 +int[] styleable MaterialToolbar { 0x7f0302d9, 0x7f0302db, 0x7f03035b, 0x7f030422, 0x7f0304ae } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 } +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 { 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f03013d, 0x7f030239, 0x7f03023a, 0x7f030364, 0x7f0303da, 0x7f0304c4 } +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 { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f03039a, 0x7f03041b } +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 MockView { 0x7f030323, 0x7f030324, 0x7f030325, 0x7f030326, 0x7f030327, 0x7f030328 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x7f030035, 0x7f030036, 0x7f03018f, 0x7f030350, 0x7f030352, 0x7f030380, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d7 } +int[] styleable MotionEffect { 0x7f030346, 0x7f030347, 0x7f030348, 0x7f030349, 0x7f03034a, 0x7f03034b, 0x7f03034c, 0x7f03034d } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f030367, 0x7f03036a } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x01010535, 0x010103ac, 0x010100af, 0x01010164, 0x0101014f, 0x01010098, 0x01010095, 0x01010097, 0x01010096, 0x7f030076, 0x7f030077, 0x7f0303bc, 0x7f030478, 0x7f030479, 0x7f03047a, 0x7f03047b, 0x7f03047c, 0x7f03048a, 0x7f03048b, 0x7f03048c, 0x7f03048d, 0x7f03048f, 0x7f030490, 0x7f030491, 0x7f030492 } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f03003a, 0x7f030162, 0x7f03027a, 0x7f030329, 0x7f030351, 0x7f0303de } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f030176, 0x7f03027b } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f03044f, 0x7f030450, 0x7f030451 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_drawPath 2 +int styleable Motion_motionPathRotate 3 +int styleable Motion_motionStagger 4 +int styleable Motion_pathMotionArc 5 +int styleable Motion_quantizeMotionInterpolator 6 +int styleable Motion_quantizeMotionPhase 7 +int styleable Motion_quantizeMotionSteps 8 +int styleable Motion_transitionEasing 9 +int[] styleable NavAction { 0x010100d0, 0x7f03017f, 0x7f0301b5, 0x7f0301c0, 0x7f030278, 0x7f03038e, 0x7f03038f, 0x7f030390, 0x7f030391, 0x7f030392, 0x7f0303b4 } +int styleable NavAction_android_id 0 +int styleable NavAction_destination 1 +int styleable NavAction_enterAnim 2 +int styleable NavAction_exitAnim 3 +int styleable NavAction_launchSingleTop 4 +int styleable NavAction_popEnterAnim 5 +int styleable NavAction_popExitAnim 6 +int styleable NavAction_popUpTo 7 +int styleable NavAction_popUpToInclusive 8 +int styleable NavAction_popUpToSaveState 9 +int styleable NavAction_restoreState 10 +int[] styleable NavArgument { 0x010101ed, 0x01010003, 0x7f03003c, 0x7f030362 } +int styleable NavArgument_android_defaultValue 0 +int styleable NavArgument_android_name 1 +int styleable NavArgument_argType 2 +int styleable NavArgument_nullable 3 +int[] styleable NavDeepLink { 0x7f030002, 0x010104ee, 0x7f03031d, 0x7f0304e0 } +int styleable NavDeepLink_action 0 +int styleable NavDeepLink_android_autoVerify 1 +int styleable NavDeepLink_mimeType 2 +int styleable NavDeepLink_uri 3 +int[] styleable NavGraphNavigator { 0x7f030404 } +int styleable NavGraphNavigator_startDestination 0 +int[] styleable NavHost { 0x7f030358 } +int[] styleable NavHostFragment { 0x7f030178 } +int styleable NavHostFragment_defaultNavHost 0 +int styleable NavHost_navGraph 0 +int[] styleable NavInclude { 0x7f03021b } +int styleable NavInclude_graph 0 +int[] styleable NavigationBarActiveIndicator { 0x010101a5, 0x01010155, 0x01010159, 0x7f0302dc, 0x7f0303cc } +int styleable NavigationBarActiveIndicator_android_color 0 +int styleable NavigationBarActiveIndicator_android_height 1 +int styleable NavigationBarActiveIndicator_android_width 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x7f030027, 0x7f030052, 0x7f0301a4, 0x7f030250, 0x7f030251, 0x7f030256, 0x7f030257, 0x7f03025b, 0x7f03025c, 0x7f03025d, 0x7f030269, 0x7f03026a, 0x7f03026b, 0x7f03026c, 0x7f030274, 0x7f030319 } +int styleable NavigationBarView_activeIndicatorLabelPadding 0 +int styleable NavigationBarView_backgroundTint 1 +int styleable NavigationBarView_elevation 2 +int styleable NavigationBarView_itemActiveIndicatorStyle 3 +int styleable NavigationBarView_itemBackground 4 +int styleable NavigationBarView_itemIconSize 5 +int styleable NavigationBarView_itemIconTint 6 +int styleable NavigationBarView_itemPaddingBottom 7 +int styleable NavigationBarView_itemPaddingTop 8 +int styleable NavigationBarView_itemRippleColor 9 +int styleable NavigationBarView_itemTextAppearanceActive 10 +int styleable NavigationBarView_itemTextAppearanceActiveBoldEnabled 11 +int styleable NavigationBarView_itemTextAppearanceInactive 12 +int styleable NavigationBarView_itemTextColor 13 +int styleable NavigationBarView_labelVisibilityMode 14 +int styleable NavigationBarView_menu 15 +int[] styleable NavigationRailView { 0x7f03021f, 0x7f030259, 0x7f03031b, 0x7f030370, 0x7f030375, 0x7f030377, 0x7f0303cc, 0x7f0303d4 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingStartSystemWindowInsets 4 +int styleable NavigationRailView_paddingTopSystemWindowInsets 5 +int styleable NavigationRailView_shapeAppearance 6 +int styleable NavigationRailView_shapeAppearanceOverlay 7 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x010100b3, 0x0101011f, 0x7f03007b, 0x7f030187, 0x7f030188, 0x7f03019a, 0x7f0301a4, 0x7f03021f, 0x7f030251, 0x7f030253, 0x7f030255, 0x7f030256, 0x7f030257, 0x7f030258, 0x7f03025d, 0x7f03025e, 0x7f03025f, 0x7f030260, 0x7f030261, 0x7f030262, 0x7f030263, 0x7f030264, 0x7f030268, 0x7f03026a, 0x7f03026c, 0x7f03026d, 0x7f030319, 0x7f0303cc, 0x7f0303d4, 0x7f03041c, 0x7f03041d, 0x7f03041e, 0x7f03041f, 0x7f0304c5 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_layout_gravity 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextAppearanceActiveBoldEnabled 25 +int styleable NavigationView_itemTextColor 26 +int styleable NavigationView_itemVerticalPadding 27 +int styleable NavigationView_menu 28 +int styleable NavigationView_shapeAppearance 29 +int styleable NavigationView_shapeAppearanceOverlay 30 +int styleable NavigationView_subheaderColor 31 +int styleable NavigationView_subheaderInsetEnd 32 +int styleable NavigationView_subheaderInsetStart 33 +int styleable NavigationView_subheaderTextAppearance 34 +int styleable NavigationView_topInsetScrimEnabled 35 +int[] styleable Navigator { 0x010100d0, 0x01010001, 0x7f0303ba } +int styleable Navigator_android_id 0 +int styleable Navigator_android_label 1 +int styleable Navigator_route 2 +int[] styleable OnClick { 0x7f0300dd, 0x7f03044d } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f030041, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f0302c5, 0x7f03030e, 0x7f030316, 0x7f030356, 0x7f03035f, 0x7f03036c, 0x7f0303b7, 0x7f0303fc, 0x7f0303fd, 0x7f0303fe, 0x7f0303ff, 0x7f030400, 0x7f0304c6, 0x7f0304c7, 0x7f0304c8 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PopupWindow { 0x010102c9, 0x01010176, 0x7f03036d } +int[] styleable PopupWindowBackgroundState { 0x7f03040c } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PropertySet { 0x0101031f, 0x010100dc, 0x7f0302a4, 0x7f030351, 0x7f0304eb } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f0302fc } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f030320, 0x7f0304e3 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f03036f, 0x7f030376 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100eb, 0x010100f1, 0x010100c4, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f03027c, 0x7f0303b5, 0x7f0303f0, 0x7f030402 } +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 ScrimInsetsFrameLayout { 0x7f03024b } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollViewRendererTheme { 0x7f0303c0 } +int styleable ScrollViewRendererTheme_scrollViewStyle 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f030070 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x01010150, 0x0101014f, 0x01010034, 0x7f030052, 0x7f030177, 0x7f03017a, 0x7f0301a4, 0x7f030215, 0x7f030227, 0x7f03035b, 0x7f030419, 0x7f03041a, 0x7f0304ac } +int styleable SearchBar_android_hint 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_textAppearance 2 +int styleable SearchBar_backgroundTint 3 +int styleable SearchBar_defaultMarginsEnabled 4 +int styleable SearchBar_defaultScrollFlagsEnabled 5 +int styleable SearchBar_elevation 6 +int styleable SearchBar_forceDefaultNavigationOnClickListener 7 +int styleable SearchBar_hideNavigationIcon 8 +int styleable SearchBar_navigationIconTint 9 +int styleable SearchBar_strokeColor 10 +int styleable SearchBar_strokeWidth 11 +int styleable SearchBar_tintNavigationIcon 12 +int[] styleable SearchView { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f0300e2, 0x7f030133, 0x7f030179, 0x7f03021a, 0x7f03023b, 0x7f030279, 0x7f0303a2, 0x7f0303a3, 0x7f0303c1, 0x7f0303c2, 0x7f030420, 0x7f030429, 0x7f0304ec } +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 ShapeAppearance { 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f0303cc, 0x7f0303d4, 0x7f030419, 0x7f03041a } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030052, 0x7f03006b, 0x7f03014f, 0x7f0303cc, 0x7f0303d4 } +int styleable SideSheetBehavior_Layout_android_elevation 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_maxWidth 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x0101000e, 0x01010146, 0x01010024, 0x010102de, 0x010102df, 0x7f03021d, 0x7f03021e, 0x7f030272, 0x7f030273, 0x7f030321, 0x7f030495, 0x7f030496, 0x7f03049b, 0x7f03049c, 0x7f03049d, 0x7f0304a1, 0x7f0304a2, 0x7f0304a3, 0x7f0304a7, 0x7f0304a8, 0x7f0304a9, 0x7f0304ca, 0x7f0304cb, 0x7f0304cc, 0x7f0304d1 } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbRadius 12 +int styleable Slider_thumbStrokeColor 13 +int styleable Slider_thumbStrokeWidth 14 +int styleable Slider_tickColor 15 +int styleable Slider_tickColorActive 16 +int styleable Slider_tickColorInactive 17 +int styleable Slider_tickRadiusActive 18 +int styleable Slider_tickRadiusInactive 19 +int styleable Slider_tickVisible 20 +int styleable Slider_trackColor 21 +int styleable Slider_trackColorActive 22 +int styleable Slider_trackColorInactive 23 +int styleable Slider_trackHeight 24 +int[] styleable Snackbar { 0x7f0303ed, 0x7f0303ee, 0x7f0303ef } +int[] styleable SnackbarLayout { 0x7f030025, 0x0101011f, 0x7f030038, 0x7f03004f, 0x7f030052, 0x7f030053, 0x7f0301a4, 0x7f03030f, 0x7f0303cc, 0x7f0303d4 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable Spinner { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f030395 } +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 SplitPairFilter { 0x7f03039c, 0x7f0303c4, 0x7f0303c5 } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x7f030037, 0x7f0300db, 0x7f0301e3, 0x7f0301e4, 0x7f0303f4, 0x7f0303f5, 0x7f0303f6, 0x7f0303f7, 0x7f0303f8, 0x7f0303f9, 0x7f0303fa, 0x7f03044c } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x7f030037, 0x7f0301e2, 0x7f030388, 0x7f0303f4, 0x7f0303f5, 0x7f0303f6, 0x7f0303f7, 0x7f0303f8, 0x7f0303f9, 0x7f0303fa, 0x7f030418, 0x7f03044c } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 +int[] styleable State { 0x010100d0, 0x7f03013b } +int[] styleable StateListDrawable { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +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 StateSet { 0x7f03017b } +int styleable StateSet_defaultState 0 +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable SwipeRefreshLayout { 0x7f03042a } +int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 +int[] styleable SwitchCompat { 0x01010125, 0x01010124, 0x01010142, 0x7f0303df, 0x7f0303fb, 0x7f03042b, 0x7f03042c, 0x7f03042e, 0x7f03049e, 0x7f03049f, 0x7f0304a0, 0x7f0304c9, 0x7f0304d3, 0x7f0304d4 } +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 SwitchMaterial { 0x7f0304e2 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f03042f, 0x7f030430, 0x7f030431, 0x7f030432, 0x7f030433, 0x7f030434, 0x7f030435, 0x7f030436, 0x7f030437, 0x7f030438, 0x7f030439, 0x7f03043a, 0x7f03043b, 0x7f03043c, 0x7f03043d, 0x7f03043e, 0x7f03043f, 0x7f030440, 0x7f030441, 0x7f030442, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f030447, 0x7f030449, 0x7f03044a, 0x7f03044b } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x0101009b, 0x01010585, 0x01010095, 0x01010097, 0x01010096, 0x7f030209, 0x7f030212, 0x7f030452, 0x7f030489 } +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 TextEffects { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x0101014f, 0x01010095, 0x01010097, 0x01010096, 0x7f030076, 0x7f030077, 0x7f030480, 0x7f03048a, 0x7f03048b } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f030484 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x0101000e, 0x01010150, 0x01010157, 0x0101011f, 0x0101015a, 0x0101013f, 0x0101009a, 0x7f030081, 0x7f030082, 0x7f030083, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030163, 0x7f030164, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301be, 0x7f0301bf, 0x7f0301c3, 0x7f030221, 0x7f030222, 0x7f030223, 0x7f030224, 0x7f03022a, 0x7f03022b, 0x7f03022c, 0x7f03022d, 0x7f03037b, 0x7f03037c, 0x7f03037d, 0x7f03037e, 0x7f03037f, 0x7f030389, 0x7f03038a, 0x7f03038b, 0x7f030397, 0x7f030398, 0x7f030399, 0x7f0303cc, 0x7f0303d4, 0x7f030405, 0x7f030406, 0x7f030407, 0x7f030408, 0x7f030409, 0x7f03040a, 0x7f03040b, 0x7f030426, 0x7f030427, 0x7f030428 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxEms 2 +int styleable TextInputLayout_android_maxWidth 3 +int styleable TextInputLayout_android_minEms 4 +int styleable TextInputLayout_android_minWidth 5 +int styleable TextInputLayout_android_textColorHint 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_cursorColor 24 +int styleable TextInputLayout_cursorErrorColor 25 +int styleable TextInputLayout_endIconCheckable 26 +int styleable TextInputLayout_endIconContentDescription 27 +int styleable TextInputLayout_endIconDrawable 28 +int styleable TextInputLayout_endIconMinSize 29 +int styleable TextInputLayout_endIconMode 30 +int styleable TextInputLayout_endIconScaleType 31 +int styleable TextInputLayout_endIconTint 32 +int styleable TextInputLayout_endIconTintMode 33 +int styleable TextInputLayout_errorAccessibilityLiveRegion 34 +int styleable TextInputLayout_errorContentDescription 35 +int styleable TextInputLayout_errorEnabled 36 +int styleable TextInputLayout_errorIconDrawable 37 +int styleable TextInputLayout_errorIconTint 38 +int styleable TextInputLayout_errorIconTintMode 39 +int styleable TextInputLayout_errorTextAppearance 40 +int styleable TextInputLayout_errorTextColor 41 +int styleable TextInputLayout_expandedHintEnabled 42 +int styleable TextInputLayout_helperText 43 +int styleable TextInputLayout_helperTextEnabled 44 +int styleable TextInputLayout_helperTextTextAppearance 45 +int styleable TextInputLayout_helperTextTextColor 46 +int styleable TextInputLayout_hintAnimationEnabled 47 +int styleable TextInputLayout_hintEnabled 48 +int styleable TextInputLayout_hintTextAppearance 49 +int styleable TextInputLayout_hintTextColor 50 +int styleable TextInputLayout_passwordToggleContentDescription 51 +int styleable TextInputLayout_passwordToggleDrawable 52 +int styleable TextInputLayout_passwordToggleEnabled 53 +int styleable TextInputLayout_passwordToggleTint 54 +int styleable TextInputLayout_passwordToggleTintMode 55 +int styleable TextInputLayout_placeholderText 56 +int styleable TextInputLayout_placeholderTextAppearance 57 +int styleable TextInputLayout_placeholderTextColor 58 +int styleable TextInputLayout_prefixText 59 +int styleable TextInputLayout_prefixTextAppearance 60 +int styleable TextInputLayout_prefixTextColor 61 +int styleable TextInputLayout_shapeAppearance 62 +int styleable TextInputLayout_shapeAppearanceOverlay 63 +int styleable TextInputLayout_startIconCheckable 64 +int styleable TextInputLayout_startIconContentDescription 65 +int styleable TextInputLayout_startIconDrawable 66 +int styleable TextInputLayout_startIconMinSize 67 +int styleable TextInputLayout_startIconScaleType 68 +int styleable TextInputLayout_startIconTint 69 +int styleable TextInputLayout_startIconTintMode 70 +int styleable TextInputLayout_suffixText 71 +int styleable TextInputLayout_suffixTextAppearance 72 +int styleable TextInputLayout_suffixTextColor 73 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0301b2, 0x7f0301b3 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030093, 0x7f0300ea, 0x7f0300eb, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f0302d8, 0x7f0302da, 0x7f030310, 0x7f030319, 0x7f030359, 0x7f03035a, 0x7f030395, 0x7f030421, 0x7f030423, 0x7f030424, 0x7f0304ad, 0x7f0304b1, 0x7f0304b2, 0x7f0304b3, 0x7f0304b6, 0x7f0304b4, 0x7f0304b5, 0x7f0304b8, 0x7f0304b9 } +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 26 +int styleable Toolbar_titleMarginTop 27 +int styleable Toolbar_titleMargins 25 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x010100f6, 0x01010140, 0x0101013f, 0x010100d5, 0x0101014f, 0x01010034, 0x01010098, 0x7f030052 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_android_textColor 6 +int styleable Tooltip_backgroundTint 7 +int[] styleable Transform { 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f0304d5 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x010100d0, 0x7f030048, 0x7f030137, 0x7f030138, 0x7f03019f, 0x7f03027b, 0x7f03034e, 0x7f030380, 0x7f030403, 0x7f0304d6, 0x7f0304d8 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f03013b, 0x7f0303af, 0x7f0303b0, 0x7f0303b1, 0x7f0303b2 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x010100da, 0x01010000, 0x7f030371, 0x7f030374, 0x7f030493 } +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030052, 0x7f030053 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x010100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f3, 0x010100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x010100d0, 0x7f0300dc, 0x7f03019f, 0x7f03023c, 0x7f03023d, 0x7f03034e, 0x7f030353, 0x7f03036b, 0x7f030380, 0x7f0303cb, 0x7f030000, 0x7f030001, 0x7f0304d6, 0x7f0304df, 0x7f0304e7 } +int styleable ViewTransition_SharedValue 10 +int styleable ViewTransition_SharedValueId 11 +int styleable ViewTransition_android_id 0 +int styleable ViewTransition_clearsTag 1 +int styleable ViewTransition_duration 2 +int styleable ViewTransition_ifTagNotSet 3 +int styleable ViewTransition_ifTagSet 4 +int styleable ViewTransition_motionInterpolator 5 +int styleable ViewTransition_motionTarget 6 +int styleable ViewTransition_onStateTransition 7 +int styleable ViewTransition_pathMotionArc 8 +int styleable ViewTransition_setsTag 9 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +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 include { 0x7f030136 } +int styleable include_constraintSet 0 +int xml image_share_filepaths 0x7f110000 +int xml microsoft_maui_essentials_fileprovider_file_paths 0x7f110001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000000000000000000000000000000000000..4f5b23f83b139481e5f1c1b696c162eab5ea2289 GIT binary patch literal 701952 zcmeF)1(a3S+Ain{?(SN+yTx%Q2?;6Hu) zjvk}?j;?V|o_AMmnQO|oq&BtJn|gd%#j>)pO2z;G{kN>_w!-u^EdKl7|7S_@<2r5c zs8e=R^{3n2w%Vkp+ikqVoSn-TEnc|&;_36tXHH+RVBs$1GiH}B-gQCwoCW2hHkeXA zf8ngzy=&L5(J?>u~6(FruAMtd)~sCW!g}*CHmv0!ji9H zWo08uZvIcj<5RyDU#V>s$|{$YEnTf_TL0>0tHpPh|7XcLtCcNTesh(nO@*$-Lu+(z zQC?QI+WrNrp#mzR5-Ot#s-hZ-CZvbgKuy#_ZPYCfiG(&T=Kufej zYqUXIl%pNmqXRmk6FQ>{x}qDpqX&AT7kZ-)`l28DV*mzX5Q>r1^Fal-Dxwl9qYA2` z8mglPYN8fuqYmn#9_ph38ln*zqY0X#8JeR7TA~$NqYc`k9PQ8^9ncY-P*zq^PXra* zs)$Ocj4G&#YN(DHsEJyrjXJ1{dZ>>EXoyB=j3#J`W@wHUXo*&6jW%eDaR1D7VlAwVb+9gmVi<;F1V&;MMq>=d zVjRX}0w!V-*2DVP0F$vHHo_Eaj7_j9HpAxF0#mUiw!+rf2HRp9reg+XVism&J8X{~ zFb6wgF6LoA7GNP3VJ9rc&e#RJVmIuLJ+LSC!rs^i`(i)rk0m$&2jUa4Js2={N&t;w+qvbFdWW;yj#>3veMW!o|1*m*O&9 zjw^5_uEN#02G`;`T#p-YBW}XYxCOW3Hr$Roa3}7<-M9z$;y&Du2k;;s!ozq3kK!>r zjwkRWp2E|32G8O-JdYRfB3{DFcm=QGHN1{D@Fw2E+js}>;yt{N5AY#A!pHaopW-uo zjxX>fzQWh|2H)a4e2*XSBYwiq_yxb>H~fx2@F)Jl-}ndrqHHz$KU6?PR6=D`K~+>k zb<{vj)Ix34L0!~CeKbHrG(uxEK~pqCbF@H9v_fmNL0gog9onMy5tFbU z*2e~zj1937reI@if=#g*Hpdp2iY>7fw#GKt7Sk{tGcXggFdN%pd+dNY*b#Fv5A(4A z3$X}0VKH{bF4z^jVR!6-J+T+|#y;2=`(b}9!2viB2jO5Gf6(G1Pe0xi)BtT~}9w*>LoP?8c z3QomoI2~u;Oq_+YaSoQ^T%3pVaRDyGMYtH3;8I+M%W(y+#8tQ&*Wg-QhwE_zZp2Nv z8Mok8+=kn62kyjOxEuH2UfhTK@cNB9_@;8T2t&+!Gm#8>zl-{4z(hwt$Ne#B4s z8Nc9H{D$B02mZug_#6M=UzAm}|3d{-L?u*46;wqvR7VZeL@m@t9n?iV)JFp}L?bjt z6EsCLG)D`xL@TsL8?;3^+MzubgB>v!^DrL^un>!|6Bc7^NPR1!X6{q2JoPjfO z7S6^wSc-FT9?r)FxDXfNVqAhtaTzYh6}S>t;c8riYjGW}#|^j-exUdJ1F z6K~;dyn}b~9^S_X_z)lAV|;>7@fkkH7x)ri;cI+@Z}A}Sk6;KhCP#INF71dB3HBb|^P#bkn7xhpd4bTvc&=^h76wS~aEzlCJ z&>C&f7UgJ%_UM3)=!DMbg0AR>?&yJ@=!M?sgTCm8{uqFP7=*zXg4MAG*2G#^8|z?Q z48<@E#|VtXD2&D!jKw&N#{^8oB&>(^u>mGyLu`a8*ch8&Q*4IKu?41LOKgR$u?@Dx zG)%_~%)~6r#&*~qJ75lW#9Yk7d@R61EW%D$jGeIycExVk9eZF;?1jCt5B9}=*dI%9 z01m`KI2ecEP#lKCaRiRUQ8*gM;8+}o<8cB`#7Q_Ar{GkahSPBd&csLkg}ZSN?!|q$ z9}nO`JcNhw2p+{_cpOjQNj!z8@eH2Db9f#v;6=QIm+=Z-#cOySZ{SV5g}3nz-o<-( zA0OaDe1wnj2|mSV_#9v0OMHc|@eRJkclaJZ;79y~pYaQR#c%i>f8bC2g}?C+{zX~k z*#8x8kMlN|pn_XvWtDw1DBk;(ZdF7jR7Mq4MKx4M4b(&})J7fDMLpC<12jY1WMLF7`JvyKxI-xVVpewqeJ9?ledZ9P^pfCENKL%hR24OIUV0Em4 zHL(`f#yVIRLop1)F#;no3ZpRwV=)fnF#!`X3F~2fY=Ftw5F23%HpV8{6q{jlY=NoR z5?f(wY=dnv4bw3LGcgOZu^qO@4w!=-F&FbN9}BP$i?9#~#=ddtqxDhwuX54~XaT{*O9k>&B z;cnc6dvPD`#{+l}58+`vf=BTf9>)`S5>Mf2JcDQP9G=Guco8q*WxRq{@fu#o8+a3M z;cdKwckv$H#|QWjAK_zsf=}@oKF1gM5?|qKe1mWC9lpm8_z^$hXZ(U+@f&`}ANUi0 z;cxtde^IuY{U0izA}XOWs-P;Wp*m`yCTgKJ>Yy&_p*|X*AsV4EnxH9~p*dQhC0e01 z+Mq4U(GKm=0Ugl^ozVqd(GA_v13l3Tz0n7K(GUGG00S`ygE0iFV-2i{wXinU!MYfV zVHl1P7>Q9BjWHODaTt#Yn21SO59?zCOvZ-T2ve{zHo>OY44Y#MOvRSi3R`0vY>R1_ zjv1JVS(uIOuswFb9PEg>n1}gTfQ49uov;`?V;Ag--LO0Mz@FF(dt)E$i~X=amf!#! zh=Xu24#A-~42R*ZsI1b0-1e}PIa57H8sW=U%;|!dMvv4-f!BU)y^Kd>c zz=gO77vmCKipy|0uE3SJ3RmMAT#M^)J#N5_xCuAo7Tk*4a69h6owy5k;~w0L`*1%V zz=L=Q591L$ipTIcp1_lM3Qyx1Jd5Y>JYK+ycnL4#6}*bq@H*bWn|KRv;~l(<_wYVG zz=!wLL@)G4AM`~(^v3`U#2^gD5Uh?huqM{R+E@qcVkm}TI7VP3MqxC@ zU@XRAJSJcwCSg6Sj}0&x8)73&!N%AGn_@F;jx8`1TVgA0jcu?kreQi}U?yf^Hnzj| z*a35}Bj#cr=3@aCVi9)2V(g4vuq$@M?$`r+VlV8CeXuX~!~R%;18^V?!ofHMhvG0C zjw5g+j>6G62FKz!9FG%lB2L1|I0dKTG@Onza3;>e**FJFaW2lo`M3ZV;v!s(OK>SJ z!{xXFSK=yMjcaf%uEX`X0XO0%+>BdrD{jN>xC3|MF5HcKa4+t|{dfQm;vqbYNAM^f z!{c}YPvR*&jc4#Ip2PEa0Wabuyo^`yDqh3ucmr?ZExe6)@GjoN`}hDK;v;;FPw*)| z!{_({U*ao#jc@QRzQgzU0YBm={ET1lD}KZ8_yd39FZ_*v@Gr_L+W(;fDxwl9qYA2` z8mglPYND*HifgJt1-B}q5-Ot#s-haIqXufC7HXpo>Y^U%qX8PC5gMZjnxYw+qXk-` z6kJo5uMN(UCcO{6TQ$Ieb5*E&>sUZ5Q8unL$Es5z?xVKYhxX( zi=h~X;TVCD7=_UogRvNg@tA;#n1uDPJ~qH)Y>1681sh`%Y>LgWIkv!5Y>BO~HMYUF zn1<rgh>LJBF2SX^442~yT#2i2HLk(6xDMCj2Hc37a5HYft+)-h;||=3yKpz|!M(T- z_u~OPh==en9>Jq{43FapJc+09G@ik;cn;6w1-yut@G@S(t9T8s;|;utx9~RJ!Mk`5 z@8bh}h>!3wKEbE>44>l*e2K5{HNL^O_zvIW2mFYi@H2kFulNnW;}86azwkHy!M`Y5 z&HfJ+P!W|-8C6gf)leNZP!qLK8+A|@^-v!T&=8H#7){U=&Cnbz&=RfC8g0-PtJ0B#V`!V2#mxi zjK&y@#W;+|1Wd#vtcUfn0VZQZY=kM;7@J^IY=+IT1*T$4Y=y0{4YtKJOvenOCl zcGw;}U=DV~T+G9KEWko6!cJI>ov{mc#ctRgdtguOg}t#4_QihKA4_lm4#Yt?7>D3c z9EQVj1dhZ}I2y;`SR9AraRN@nNjMp&;8dK3({TpQ#925S=U^$$#d$a%7vMr%go|+r zF2!ZI99Q5rsL98cg$JcXz644%bvcpfj{MZAQU@d{qWYj_=R;7z=RxA6|%#d~-kAK*iLgpctF zKE-GF9ADr|e1)&^4Zg*9_#QvtNBo4J@e6*%Z}=U5;7|O8zwrkb<{vj)Ix34L0!~CeKbHrG(uxEK~pqCbF@H9v_fmNL0gog9onMy z5tFbU*2e~zj1937reI@if=#g*Hpdp2iY>7fw#GKt7Sk{tGcXggFdN%pd+dNY*b#Fv z5A(4A3$X}0VKH{bF4z^jVR!6-J+T+|#y;2=`(b}9!2viB2jO5Gf6(G1Pe0xi)BtSt$60Oi0ZO|6wXovRbfR5;d&gg=!=!Wj-fu87v-spqA z=!gCofPolxOvEIthxM@mCSyZv zgelkAs*d9Az4tB&`%)@*vz(Op-PFRec zu?u#^ZrB}rU{CCYy|EAW#eUcyOK<=V#6dV1hu}~ghQo0Lj>J(o8pq&R9Eam^0#3w9 zI2otlRGfy>aR$!BSvVW#U@6YUc{m>z;6hx4i*X4q#bvl0SKvxqg{yH5uElk@9yj1d z+=QEP3vR`2xE*)kPTYmNaSw{Wf~#-_72K+bN~nw~sETT+jvA^g&ZzFARfZQcm$8)F+7eZ@FbqX(|88Y;yFBz7w{rp!pnFCui`bl zjyLco-oo2>2k+uNypIp?AwI&#_ynKgGklIO@Fl*&*Z2nC;yZkgAMhi7!q4~xzv4Ii zjz91x{=(n*2mhjMHTyqQKt)tSWmG{`R6}*tK=DWM)6TROYNHP7q8{p_0UDwa8lwrC zq8XZ_1zMsNTB8lxq8#ne9v#pTozNLw&=uX#9X-$!z0ezd&=>vC9|JHDgD@CFusYVj znpg{KV;!uEp%{kY7=e)(h0z#;u^5N(n1G3xg!QmKHo#b7>8)Fk}ip{V&w!lZ1V~q7fRS37VoAnxh3;q7_=B4cej{?a&?_&=H-`8C}p7-OwF9 z&=bAT8-36h{m>r+Fc5<<7(=i+*1(!r3u|K?tc#%-hT#~2kr;*I!!8VQP{FN=sD#R> zf~u&7>ZpO5sD;|7gSx1P`Y1l`#H$At+^UF5sEjJ8ifX8i8mNg{sEsdvriYbV6rzL05D`cl1C{^g?g+L0|Mke+|jdidthGH0oV+2NG6h>nV#$p`CV*(~(64t}|*Z`BUAvVGkY>Z8?DK^9A z*aB0rCAPxW*aq8T8m40gW?~j*V>@h*9WVzwVlL)kJ{Djh7GWnW#?IIUyJ9!&jy7s)$Ocj4G&#YN(DHsEJyrjXJ1{dZ>>EXoyB= zj3#J`W@wHUXo*&6jW%eDaR1D7VlAwVb+9gmVi<;F1V&;MMq>=dVjRX}0w!V-*2DVP0F$vHHo_Eaj7_j9HpAxF z0#mUiw!+rf2HRp9reg+XVism&J8X{~Fb6wgF6LoA7GNP3VJ9rc&e#RJVmIuLJ+LSC z!rs^i`(i)rk0m$&2jUa4Js2={N&t z;w+qvbFdWW;yj#>3veMW!o|1*m*O&9jw^5_uEN#024!V+6|$g$TNP0Wl~Dy%Q4Q5m z12s_#wNVFkQ4jUe01eRyjnM>6(G1Pe0xi)BtT~} z9w*>LoP?8c3QomoI2~u;Oq_+YaSoQ^T%3pVaRDyGMYtH3;8I+M%W(y+#8tQ&*Wg-Q zhwE_zZp2Nv8Mok8+=kn62kyjOxEuH2UfhTK@cNB9_@;8T2t&+!Gm#8>zl-{4z( zhwt$Ne#B4s8Nc9H{D$B02mZug_#6M=UzDw8|Az{wh)Sr8DyWKTsE!(_iCU6PCTNOgXpRyo<2RmXe=3zb-U?CP^CoIO!*af>{ zH|&l*uqXDy-q;8GVn6JUB{%>F;vgK1LvSb#!{ImrN8%_Pjbm^uj>GXd0Vm=loQzX& zDo(@cI0I+mES!yVuoUOwJe-dUa3LSeNC+@=CxCi&*KHQH7@E{(-!*~Rb;xRmqC-5Ym!qa#L&*C{ej~DPFUc$?G z1+U^YypA{UCf>r^cn9y|J-m+(@F70J$M^)F;xl}XFYqP4!q@l)-{L!bk00@+p*HHEF6yB^8lWK>p)s1E zDVm`Z#Sju9A%Q5cOe7>jWjj|rHFNmvi-V*^aahS&&GurW5lrq~RdV+%~h zme>kgV;gLXX_$@~n2A}KjqR{KcEB9$h`E@D`B;F3ScILh7&~JZ?26s6JNCey*b94O zAMA_$us@dI033*ea4-(Rp*ReO;|Lsyqi{5i!Lc|F$KwQ?h?8(KPQj@-4X5J_oQbn= zHqOCPoQv~tJ}$t8xCj^H5?qSQa5=8PmADF5;~HFx>u^18z>T;GH{%xEira8I?!cY6 z3wPrl+>85gKOVq?cnA;U5j={=@Hn2plXwbG;~6}Q=kPpUz>9bZFXI)wir4Tu-oTr9 z3vc5cyo>knK0d&Q_y`~46MTx#@HxJ~m-q@_;~RX7@9;f-z>oL|KjRntir?@%{=lF3 z3xDGu{EM=R_J62=il~IjsDi4fhU%z+ny7`^sDrwwhx%xMhG>MwXo99_hURF2mS~06 zXoI#WM?17f2XsUybVe6+MK^Ru5A;MY^hO`_ML+b%01U(+48{_xJ%n;wSu!U+^n_!|(V5f8sCvjeqbj$|~9a zp#mzR5-Ot#s-haIqXufC7HXpo>Y^U%qX8PC5gMZjnxYw+qXk-`6kJo z5uMN(UCcO{6TQ$Ieb5*E&>sUZ5Q8unL$Es5z?xVKYhxX(i=h~X;TVCD7=_Uo zgRvNg@tA;#n1uDPJ~qH)Y>1681sh`%Y>LgWIkv!5Y>BO~HMYUFn1<r}k)r>v}ed|Ac)mv$;o zKQ5mvS4eq7xnj!e7N102+^15?L*>dT50i^$D=Qx^S50|@TrK61a`lww$u&|wNUoW3 z`WX4*`D>+|K61UtwNoxHJ^{4IbyDss*G;*%TrcH5a{ZJC$PH2+B{xiYs@y2$^f9Z& zb2d(StKt*ZirggS^qGQ1ZklrXoWLSCOF4a5V3C`r+^+aUnj*JIxs%*7<@7m6#rIpK zoIa6gY4>f)Q-_xJ^NnSzt+q7YZBX3re7X_&s3Q`Xgq>V2~+g*@0 zxgc$ALE6xjY~s+>(k8CB>HijAOS_kqrFl4|cxd{Htt;)HRn5cCOXgvo4>1pO|HnMk z=f_5GmOf|t%==(9UbcLZ z*NXMBlN{|_Kjy=VuRE~hc_zhu;&taPd)+kNrLX&g*NSa9#baZgo-W7hrq3fT+7qvv zK9sn~(LbA+!?8}&$0Ziuk9C?p0x@szD#zv2G^n``TgmadwJOH<<8^Dx@w%tDPrUBQ zF(Fpm_A^SJ^SM|T-$bKJx3}~@6Dlq5=ZSK>?)a3A*Y3;uEiI7J=Xt55--cCQ{yfK( zJWsAU(f$XFU9>-aSah-N(QoM!qnGtt`q=0qM}2D&W4B`aYp3t$eybx#zcrAf{SD)> z_r&rqZFBkn>t&BkpJH9)cx?J8>!saSe68js{kdAnYo!lmD;^uKl|GqmWseesVhhS)R&`w8pzQ<4dv*cMsoB|V>$Y#i5&gYRF3{>CP)7?mt&va zLXLfUOF8!Gt>oCJx0Yj{-bRjndRsa6>E&`dbSiHrw@JCZ+&1M7a(T+#73QvOXInDX!Ppp^fV2dDg(JS646<<(REM_wc4 zrq;!pDL0qbO1ZbZcFOC?>!iFyUN_|fjq=yh+Nh%A2OVhkgBKDeoz7p7LJu7AdEX)Gq4G)RfZ) zY8QFSl+$Nk7kR6c(tTI_Ux2$`V`S3FHZS>dFPbV2Zi<>|vPi@Zn5=@T)Fyl2YkV=;@oSIX(LF^jx+%IO0#i@ZD5(Q~B6r_bvkk&v!n*If8<`<+%Uy$Z|L7M6XX_gnH30{!qc0rof z1!+bXq{&>6=5axq!Ubve7Nm(=kmhWfPwD(>gVl;qe8nkc>9NZ&`-b%6VsK)vS4eqd zxnjzj$dyvwRIZ%zW^$F3H5nzQr=Z=oN|42ut~~|<)$gml$)hITW+3m`gq@> z7PLq?ea7#9Iu}~Qadz}=C$AfQJ6evuZR`1?Z(oGFQjS(dXmj=<^9Fn|lW>YjYZ;(l%f0`C}U|kz<}* zDo2|ylcUX-%hBd5Iof=+9P{Lwlvi>+qFPD6UGM(Uh8yH)!;SISIM1(` zepr0P!A9w}d|dK8S2`D3Va{*hKCvzNxFyufa*7<=a;rAPw%jJiw%jGhoWEO+ z{=ZL-{=Z+2IsbqhbN(SY=KRBQ%=t&;nDdXyG3OtXW6nP=$DDscjyeCV9CQ9TIrat5 z%dszbQI37V2XgESK9pOgKK)2;mGZ}O>y$r{(=lWDr*b-QEdNX{Px&TuuU*QWt>5-3 z50pEkyt>>mPw)=EVd4KzkZYdud`;Is^NC!aaD|RrY^Whe4 zi@E)z9P{BRIp)>Va?FRvy;jVJ&*hj8U!>gqo)xaUjj=89{Nv;Y=KtMt%>R4knEy?Ub(<(U81$}#`1 zlVkqhD#!f4Lyq}>cgianizV6zQ)$KP`29-ywr$Dv%8S*L=-aVX;(BrP z?N0HWD_(o8T2iAV;$GWJGqAYvpN>- z`9qGezD4_EtbZ-3b-&9o);GIPjP-B6A7lNK9AjN>TVky9aYc;vFyD`{&ila_>xVox z#=5iTkFo9|$5?ljW2`&MG1i^r80&I5#=4yxW8GekTGv62TK9(>weBr#h*~#DpGU15 zEJv-|PL5i)y&Sb}2e~|r$8~bMl-DrN+o!yy9JTH^xnuhN&vK`ff03is{VGST`%R8o z_q!am?hmi1gHvuL4@vnzdG(YJlGjN2V0q1y50TeO`A~W7ln;~FN%?Sj-IR}zho*d_ zJS^p-<@4pu zQocamJmm}JEmFQno|^K-@|G!IB5#%QrSjG(UnXyp^5t^c$Ch6qPfPhqd3wrM$um;E zTArEmHS(;Kua#$~e7(F~$~VZ{r+lNlL&`VFb5g!p-ZAA{BU-kW{^SPc!ozHbU>U^%-QRj2rjyj*~cGUS-O6vTpC3XI_k~;r- zNu7T~jygYBU5z@Q>wnbwT>m?z?aDPj>U^&GQRj2bk2;@ge$@F~^P|q^njdvO*ZipS zx#mZm&ow{le6IOX=X1@EI-hHP)cIWVqt54=KOnU;*ZipSx#mZm&ow{le6IOX=X1@E zI=`1S6?Hz>|ETl1{zsk9^*`!-uK!WzbN!DxpX-0r`CR{prMBhzA9X(0|ETl1{zsk9 z^*`!-uK%OcV{`qFI-l!*)cIWhqt560A9X(0|ETl1{zsk9^*`!-uK!WzbN!DxpX-0r z`CR{_&gc3cbw1bssPno0Pf6{}^*`!-uK!WzbN!DxpX-0r`CR{_&gc3cbw1bssPno0 zN1f00Kk9t0|54|2{f|1I>wnbwT>qz~w&nUCbw1bssPno0N1f00Kk9t0|FhF$bN!Dx zpX-0r`CR{_&gc3cbw1bssPno0N1f00Kk9t0|54|2{f|1I>wnbwT>qoa=lUOY{%&(M z>U``AR&p)k3N?JS)cz~wsJB!=tw6x*fGW*X^k7 zxo$^o&owz}d#<-p+jG5*+Mere)b?CgqqgU|8nr#w)nREp;jg2~)Yi!iXTw|k7<{BGyGS}Fslexx5oy;{h>SV65Q73bajXIfYY}CnIW1~*y z8XI*o*Vw3&xyDAF%r!RZWUjGMCv%OBI+<&1)X7|9qfX`;8+9_**r=1a#zvhy#PLbg z$$V@)EcJ6fHjX-(>u}V`d~6(bG9Md9oy^C^Q73b)jyjoZb=1jRtD{clW8 zWUk>+Cvy#tI+<&D)X7}8qfX|!9d$C-?WmKvZbzNWbvx>0uG>*3bKQ|JnCdV9*#PBzCMgPnU9B~PG0EyQ73c#k2;y_f7Ho*JRHZs`FMC*>i@i7 zh&q|~3sEQYej)1Q|5uKI^S)ql+OE7W*g56AFW4pJT>p1XIoJQ)QqJ{%_moSob>!N< zXZn8B_LUqPFVg?3rTa8qe%&MWb^2Q2cQ^6xAM$&4_x0Ec>3;jk6;s|{u9Wh1a@vKI z-yv5?`OcJGOFyo-oxb9qL6q)ahB~j0wr!_I#cORZ$7}5%$7{`zRnu$C zm#d|`K(3zhLb*oDt>PSE#otHAzZ1~rw2w?*@#gW;Hm_6C=5^(0^K3cV{EHlIKH2L= zo12yN&-eEG(dLt5TvlvPyw^f|Rykf@m9!_nHzV5fl-G^+JS|6iI+u)B{vBWR;rr1i zEB+gRIVI1(W6Ij|s_t3weIs>TBZ@K2?{kRuOz}L?o;~DfPi}McPyRh-wC7E2j{bQ| zjxo*ck1_3UTVhNb>d%^K%+8W)rJR4)Sv%$YyUsc(=ihbKO*!{Ny_DZy#aKi?tYm%7 z)`r;LM^pX}<5i>N{x#+3pIUPCPi;B+r;Z%`Q&*1ush4v1xQ2O9(eCsW|JtZ@uJ(5= zG1@j%j@Mcw$7>Cc>#5+$Z|v969==p8G_f)R$v^uI6=Pex9H1zmjda*z-i&8l}gYOE)gt zmNaoow`D-d+T2x+Z8^GRtxYOf`_ttZ-=W4Xwq=+c+cI2^Z5biQwk)uwVq0!2S!=hK zthGDkSZiO$e2B4FWi5T%^T+nSBS-t+m18XOdyrx*@_Ue?{rNpe(f(b%ZnQt%kF=71 z-1c+o6aD$^vi@xNKlJCSt_$V!g=kMcUx@bP^Mz(Dr-e#9J~>2=KKW9PK8fu$Z~wO)yKjt3%-cMUF?M+zW9;%c#@NL;>XS=j zHWy=?CQ9ji&SMl~m&YZ>Zex8LW4DPMW4E0gW4D7GV>d^Rwfv@b#@M|j$Jo6s$Jl)) z$Jl)?$9(=GWo>n-_QJFd6nbM3g^lFzkUru*k} z?YQ2O&$Z)vOFq|*>n-_QyKTCEKG!Z!IiG8{OF5rww@*1=FYS zx8!TEYo+^NqaWgWOTGph*IV*6*tp(ugZm6k_s`d0hozja!46M3UxOWya=r#TGUZ!6 zc2vsw8tmwl^EKEpDc|KjV^hxO-Q!YjU@ebNxv4xMxfl-s9lou>2c^cDY@zjU2; zE;&x?BF8$t*11ot)4bMVopyDfSf>Zur^h-yLXLIXOdHgeXv2!{VJkg1FMUtK0iHiz zH`e<~jx9&(lc+6YQ(nn^t|~b;zB*<7koqxwt?+N`Czc$4PAWP6T(9K#bA37bAYgi&o9T=eG+37$5gBQ_s=htoC|+kGEeR(8LwOAc&*#yc&*#zc&&UM9rGlgN5?$b zM4O|Y=kw^O=L7Uf)bl}d)bqh|)bk;7)blmusOM|SQP1o=@ORo>yTry|!dw`?=z3(^r_PAy9ByCLT8mwJ1j-}Tb7MG0U&T{na zE^_qku5$G4bYmKQdx;!<`;TpjzWrB@zAdYq=GcFK-krxc)>Ok)zGGm;=$~yX9!}2QhC~ybe~+wnQJ+kNd>@9J{Q~Q)iXV&qF+C-2X5+ z=D^`{wEsvs=D_YTjw`-y-j;ZtRkbbmf7~bf|3B2g(@M7GbUE5~h8%4>Q;xPhBgcGr zR*t@XF6EV6!?~s8-$3o3u4CkXkMl@u>#`;~T_QrlBZ%gb)-glqak9;7;$^a`aVCIp%h6Ir{1veG+|jX32h` z9+hR$-dp^F@C=$f+idywg{;&t8pyW@EN{JZ0L{(Oxho_})5 z^XK0&#q*b5m&orWh;7X8C5ZWuf5#N_!S#pO-_2dto^+?u`8mdGMSI4|(VlT~v}b%t zdnU-yo{4hw`6M~ovtG(8IY!;yed4utjQhme8IrzHe8nHaDs9^!^(XFsmG`nn+e(ks zXO+x{{O{DFZL9jXX{VVR(O0LItexGg!B{)H%dvLu(&kt@d#Ek3cJ`EG?d&DT+Syx< zwX=^L$6!awv38DC#FWjqRnF%%ZAF*Kt zFKP45aA=2&b?>F+hx z*0<4~8LN0~g_8dNrsSNZwbzZuz88J6;_nbEt>XKe$7`*4|2=5dMs%-b0Kna3sibBgVa{@g^4{>r(xvktG<%d&V$#HdQ zO$JggsL zZqzYvV{SB&V{U9J$K2Rfj=3>Uj=6EG9CPC@Ip)USa?Fi?XasTpo$u)%CO6t}8^!zKSfwkg!{`(qO`g^qee!u9${NAVN!@PftKJ-4! z73=U{sc%Xwokd# zG+*&|Lz7GPQ~7u=#weeA#`flYO^ng*CEL4K$@b=27u(y|HpcdLDcRn9UK!h)uYtt& z=4)j!&#ziOuU=i&<}`^**XA1~V>HXWjW*}&nbGFbx}E>dK#b9Vk~Z%tN1I!ew0W(P zHt#7%n=dFCqYLF|^ZjzH%?IRIo8@U+I>leLE$=4B+WczyHXgKW8`BGvZsTNai+Q-A z9NV~&9NRcWj&a#oj&0mjj(ND59NW0L9OJTu9P@B$%I3*&%i5C$rnEhy+&|hgT8{RN zk)u6hCk?Jn8#!{P2_<#}Ch^ypnzQ*S00*(l>I5>*2Wnf4|QfQqm`H%JJ9_&FyHzM{=~`C(j>!^0OR$ z@{1hv@K-tduUpZ_UGpZCyj(dRwo==0uk^!ZXb`utou z`usdO`uuS@YSfEz)TozIUdi^lw!h*U$=7CMTk_u)kNFeFE%sll{2P6Jyly-e&a`eMsIr?FU9R0Am9R09{9R0AS9R0AC9R0Ai9JP8KIcoK~ za@6Xfa@6W!a@6YKa@6V(a@6XPa@6Wka@6WEa@6Xva@6Yaa-8c;kmFo$V#@#Fxp(fi>mWJC z>tH#?>kv7%>rgqi>o7US>u}k4$*~rWlw&O%CC6IW(mo~D!d7yug{|dS3){%C7PggR zEliVREzFc-EzFW*EnFeTb&o6MxbAV49Ph2VT8`@;*T`|*<65~qjmLFzyOgh&+oyc1 z+#%)LpS=j+%Lcafvl}W6J97&gqBgInrb*UBCJF zHSySC)?+;OBx@n|WnaiqZ@-jd{jTe^V*L)4qb?1TWBm@7WBrbhWBrblWBtBntYiJY zA;-R=E*6%HHtlyjDSid*Rv3_rpWBuNqvi_eNyXg#{&wux3h5paAG5Y^y z`>E*v(%+-yagYAb`@ZP^I8X7qtGqT-nQ? z*U8bg>*Z+M4Jq5+RX%6w^{C=gs{ZRe9y^sh=Po7Bc~Z1<#pB!3-$&&0)@WOtx31(k zIj%{rq_&jy|Bof@iDPEla__SKNsF_ze@Y+wR>|1qF^c|K+j@`wSx1hs%i|SuEWgh@ z#%``{kFm?+7-RRO@5k7cd99dZtI1JY^7uw=dDmD+ZTU3%aK+=F!D%iPf4IA>tp5H5 zt0m&|#448ke29%+{&`|cUTRoYX}|QJ;{L@#AD>>>?O5ECm*0+o*l_vn=!ht$?jM~I z1=a27kSMBdN2f$#bvrsHimThvIZ$?1Q6y@H_Z%1M7v;1}x=Xmp^$HxKIsO3M8B0Y8a?I_f-Q*i$%)?1|kb~_4o z6nnR$XrHtE=TW$qF25bcyImS&_m2YJY5DCa;;}RE^C;wZrk@vMo~QJZm(%d3{}|r* zy zxnpeNcFY~y7Pl*x6?4(Hq=&}xT=GwPx%3||cYh3h+>V!CKc0SIv?gxH)5pc5<-6G>wbR}I59Z!F>dNAK<9;YXK)OMA=Zlt@U zyFt2JT0u%$Lb_X05fKpHv#;yox6k^ncdhr|*R{Nd&%~ZRdt%SbInTN6!R%PK$jCk& z#gPteW;sKflNgprhc>62t;L~rFwBsSX?e>T)AEsVP*2A*b?iZPaP>omI(Wqx8S3CQ zV`Qj)!|l%jOwsL`@6>m2i~_7exN;qvxAWxFCt?) zw8P8D$j}ZiB=fKJ4^D03>_KtxNo0t_`^d-;hj)^ZA&yHB%A>IdFiyc}>;d!z7`8v? z4BP+Wj3qH1Mv{r*Kuu%n*@NnRg%tq|^`bdLy;#mrFE+&4KPfJwiL(dA?L+Ngh}-WB zaX%RcEfM*wxII{$ON1+%-;(XYYzQa)$3+=?vd{-xdvbz87BzW;%Q?F1N_=y}01=*Q^b0ZsxWJ%^eQr0mIzkonh_>&M@~E&M?8Rm}S40A_yhPl6ThPk6T!`#uGVeXjDFn26xm^-#J%pJ!W=8o$ObH{Ur zx#K&-+zFgv?u5?R>LhZ;RwuDDwmM0ivDNw78C#vC&e-ZCbH-LD)EVd2`p5&a_c(QXAzv#8 zy)*8%J~-ok>py4QaeZ{gJy(1z2bhnz>q_Wc(B$LYaBWr~IF~ST8uXA1Fe$Mrbr#aU*p5ffUc$srU;}y=0j8{50HeTi2#Q30dQ{%(V&5VyY zH#a`&+`{-z=a$BQIkz&-jLinx+uFFT^S8$Bo!c09aBged(Yc**XXp0DU7R}@cXjS) z+|9X@@c`$}#si(Z81HlLYP{dMoAJ-i-Hi`8_b`6o+|&5Ab1&n+oqHRO`>*Q^_g~)`?!SRE++C=d64 zAKhoB;a>ftb)P*#15x(22lK9AbYE(y14j3iaz^(hLv=_;_g!{I_g!^H_x%cWkRRQ5 z(iz?N8`Lw)QN2iU1M1m>>ScsA!B7vEnM{XzJR~9=>YazP07JbC&QR~7Gt~Rt8R}hf zhI*HsF}kieV|1m5c~BolS0XeYjM0TJDpFsJE`0f%jM3H2^J8>%cgE=2VjOC!(>#gH zJocb@ilX=p1p%~h;NVH1H<|qoMHWr&ai$bXIQ_pGpyg$8P@OS4C{AyhV^?m!};(VJk*ZJHm9xefEvewf>r(A#Eec1M2e z4tub-vsrV3u6GJrvOSpm18M`Kw|<8-YdED9w(Ry`c8(n|vg6W{>FC_~Fdov;xeJ`p zxeJ}qxr?3Axl5eUxl5hVxg{}HAs?NK?}D;^bS}OFN=E16d!S@=F24Wizs@$eqBYMR zY~C_d2S)RjJEM6koYB0M&S>5$XEblMGn%)?8O>YkjOML#M)TGi2VJ(+F?H=hb@A3X zGSuCK;z)aWM`yHtk25-VuQNLLCuel-&(4^+2b?i;e{sglJ>-m;d)OH> z_lPrQ?onsV++)s|xxYGN=AL%O%su0bnS0h5Uiq9eyz(7qc;&m!IF#RW#-aSaGY;hs zoN*|B=!`@8BWD``e0d%FC%JJNtYqk)6vnxnQyS-UPG!6uYYFnFHs;C&PGiiK3!K*Y zy5~=4JP2+c>FJHXhnu&d!nLT84Oe@F2BHGhL47cW>v3lc*Avbdt|y%_T#uo8l*e#= z?2O@x-@foS-VL5;)!T#BmqzQssJ^T-sxN08wD3-~;`U(i8_))f;n}$BNs7#h;-#7{#AEqxcJF*s227S>%VUesPWv60rRtXV?nw z%VT|*+DAMcQ~RhhrZ(Q4$NZSuzj`{R_Hk!S?Q_nU+HqiP=!dBt2Ym;|)ZXiislDGB zQ#(F}8uDXmuXD!K-r$U>z0ny{dxtZo_AX~k?Y+i9oj=#Q!yfF8!B8KJ?ihlxVwUAd z-)`CM!R*=5J78qTUp6rvy|)YtH`392cncrX(R*DX-u_APdrZ7NC>}rXL5BD#s1E56 zKi3)J=NbF!_y+%M;_N|j)D8@B_}&Q9Ar7A)ksNcE(r>h4mmGV~rbBFveO@Psdo}o(Jg|Yxo`n>%&;X zcVoyHYxsT)8DkCKks)KO;d?S@5_)e*6^JfGR7LdH$#RS!FOlKa3lEs z3>j_&e+x&38^LcFkl{x1pu5pNxRKV*a3kM3!;Q3YwgJH3#HYOE#`!UKAuok-0q2y) z_^kxyPi6eKr>8c4;|w?Qk2BoJTW7eDf1Tk*-Z|UWhwl$$eHo2EczPz||C}=$e{{}b z{K+}1aR??e+Lz5ZjB|G5aLzf5!#n3Rj^Lcj_zUOU#u1(K7$vhB<&38}mp7j7T)}vTb4BBs&XtU3IafBG?Oerpj&oJxxz5#$ z=Q&q5p6^`4c!6_Gqs0TN`h7{?>Sla~tEW&TWmi zIkz+3?%dvZhjRzxADufI?{w~DyvMn-@z2g(jPWO!-p2Ti80PO|jPFR2`x^g_y$R~?XMEYYzwsZ~tC%X>9UL%s zZjaDFRN$@__c`D&#&p+UxO03RmHFY$>AsN;cTV>Wj$q~SN=D`na_2}7a_8V6cMcA6 z=U}*Vyrz-z;LhpZkq&oG_YQ_Tr+Wv(ozuO8;m+ya!Eonv?_jude6^PK!JXqZj^x9boXGmbGmyl+&SGn z819_z9t?L*cMq;%?W4N~!=2OJgW=BU?!j>9boXGmbGmyl+&SGn819_z9t?L*cMpa; zr@IHkozvZe;m+yq!Eonv_h7hlx_fX_YY*K$819_z9t?L*cMpa;r@IHkozvZeTbVq% zdobKN-8~rYobDbBcTRT?hC8Rb2g9Ay-GkxI>F&XB=XCdAxO2LDFx)xaJs9qs?j8(x zPInK6JKyW`5$+uBKj@A&PrQKpv`1*5wSix4hPMX8eXena`&{b`_qonE=;olHiL(dA z6~gKUhPd&_ZVjdLE^OKD!R$PXgOQ!i9E{p|76+qtI(IOfH=Q{+g0+Uu9314l!9mU& z9OS&gLCzZt=S^n~hVu@^SsNVH>Z7v;!+96=bU1H1Yox<@(^-Szym=M}!+G;84u72oE-gM4j zIBz;z$o6ZOf=S^n> zhV!N~0>gRJ8G+%v>5RZ|-gHJ_IBz;5Fq}7?5g5*!&IkYM0XHhVmH_xK|0#(tStuc3IkI+C=z#ZT! z7#!rzz(MW|9OTZxLGBD3!Q|1MfrH!`ILMuWgWMT7$en?M+!;8?oq>bg892zDfrH!` zILMuW;m+_HRoVmYY&+Z`(&5hN?!a(oba!C5GrBu4+!@^+819Vj4h(ljcL#<$qq_sc zozdNa;m+vpz;I`DcVM_Px;rr38QmQi?u_mZ40lF%2etvg*RZnvaA$OPNQXP)Sr-g< zmK(bzFx(m4A2_wiH*D zbdO-TGrC7G+!@^?819Vj5e#=m_XvhNqk9CyozXpl;m+tD!Ek4Ek6^enx<@eF8Qmio z?u_mc40lHN2!=bOdj!Ls(LI9U&gdS&aA$OnV7Rjp*jt0)&UjV@7q$N4SrrU-Mt2H^ zJL6du40pz}Dj4pJXH{@1lSlUphC8GC1;d@u{et1ncvc0&o$;&+hC8Es2E(1vJ%i!S z=$^rFXLQG4xHGzAFx(m4F&OTQ?idVrMt2N`JEJ=W!=2F`gW=BTj=^weJez{y&UiKj z!=2GxgW=A2HU-0-E%yF`JLB0D>2PODJss|h?jGrIXLR>qxHFzj!Ek3hn}VBKe{nki zhCAbS01S7=?Eo0=jP4%{cSiRQZe{Z5{=sl(bpK$uGrE5;+!@_J819Vj9}IU!_Ya0U zqx%PUu=?o!!5xk1{=uD$>Hfi;jp_cuU5x4e!Cj5%{=wah>Hfjpjp_cuJ&ft@!99)X z?!mo`>F&Y3jp@$8eT?b8!F`S4zJm^{OX3IIwLL-usex}zqx->d*Ku*vY@U_geW_)) z2eac3WXZ@r0L76G?>^8O-hGfWy!%Gy2v+?rXL$GB#{TNt!RxGgd$9T8So&I0vMo`Zms}9`D3uepKJi(@}kUXEOockIVenT;LtKWNa=vdwy&#lHjOss?mBo zO?`V%ef*JZ&|k6cwq$!S`5UwjjMf!)M(bKRqjhhb(Yk5S2IbMZ1TZcbt$T%?B^a%n zhQ4-fe=&9JL3QvQTz}>9;KP<|4<2Y4VnF{Ww!^j;}?y{$j+~{A|2Y+fH*L;?c)q> z**c^{+pTCF7}{QShHbAoW8|>4$d8ee1FZ*Rx^wFzqo~TY)kpYEiksF z{NffE+frH+jBV-d|LN=B%slo8vS!dKao>{d!Q@uZ77XhhF%B9Uk1V@Am_0JGgONRo zGmIV88OHv~8ODz03}Z)khOuK92Yp5Ku~lymR*yINl2JY0=1WHPc%v^F)#I(cWK@qg z`;t+8BvcRis6M7M`Z|^~`Z~5V`uYZJZ&h(w?` zCS#i6#lmDvv&AMa$T(kGbL_$9@LOA8Gzae)4z&qK<0P=`_F(p$STw-M-qRVaAMcFT zSHvQL{AhhMXSBWu1`^WI`l8NgeKBXWzPK}5-wBHd%A@r^I-~VFow3O5cE%#}3cgE<)5@?Z{zwmg`Fp)C*QU}(#O zIT)S8gE<(T!-F{(ox_7U7@fm|IT)SO3WEcT&WR7}g5d$Uu>`{d@E!>a55RjKFfJyz zQ3T^+f*VDLlGP_6v0755sc<=CWC{9A~gN7nFXefe%h9WpXR4U<^eLO)!QchNiy*dhk#)uRUm9js`Hy%iagWyfx8VV3@a- zGtArC8Rl){4D+^ihIy}|IgkhQUUPJbSQt{QMM* z=JE4WFq+2;XE2(_?=pkYJbsrMjOOvX%wRN+-(?1)dHnnojOOw4PcWLt3sf+g$IlDF zXdW+6!Dt>YP{9~Iyf6i0^zgzIjM2jjKQKlQFZ{q5J-qM(WAyOC4~)^n3qLSM4=?<{ zHbZsc2gU_8FZ{r`pyq`i7#GyM@B`z5niqaxTu}4E4~z?HUig7=LCp(4FfOQh;RnVA zH81?YxS-~RAJ_(fzKaS@Zp;fma0+979tTco%nLwpDq~&%f>RsM#9|3fW6TRca9U$t z0D{vQ^8yf@-k2AF;0(sR00d_=<^>=)lQAyaY4-s zKrk+-c>xH<1vM`K!MLF21t1s~)Vu%$888D6o?bS!81DOfU=GcG^KkL3)n+h#hJv*FlgA|1;aUc1e7EN2Oz9@4p5 zLp>A4t;Y>h&mL5d7lvS{$JG}M^@c!wFx10p8FV0fYU1ocaV5|hV2CSY9F+ZqWw!^j z;~m{(WXF5DL#>@u_D{=h4`#1`^BEY~D>_5jO3qNWvNLRnOQoQnh5O6I+k@h7L3uF5 z-*$%hJI)Y)*BRpPIa?D#?;8i*!hEvo?7`~rvKun0!wbC0sBRv58u?M(J@hOX)jf1( zb^EkuL=5>aj&F>69TfiB9mN#~g z4?oKrJ23n#Z|uPEvk9?{0mIMYy*6w={OlfVYs@q>cO)~nJ!o!TaDrj(Z5W$in45n} z35L1(r<2xlic4wY>_KsOV>lV&XlJ_i>V>T_^`p*{x}80vFyfuVkNbS4<;H+F{l zO`M^AYiFqctuxf`U>vmNE@0}~gX(f_fT8XpbRHP$^3SlrRM*p??k;DjyW1J+^3SwU z9_n&zf}t+QCK&2+Y=U9!=&(K*bA@9SjJblb8uYPES!

    *gXFAA{fn^0`6t3_j#X^Y%KUd3c>jkQXUu>f3|r$3W}BP(P+| zsA^YN>1@UA!Q#vgM)6$mLE!(_;@z#dJy@KJ92muKVH|-`yfbRI zcCq%}R@@#ee%X@AD1Ox$#rdN#$Pe44fNj9A-Fn!@%tY}6OuRiP{uUe{7~;9&gCU+D z1b`tPFC=Gqh`;IOtqGz0RarZuvAW?_ojq7x3^X2$>QXtQx-`zHE{8L!yNl{j9@TM; z17jrM{pzd_la|dvIwmdN<->GLS~d^qn6zvj7;Dl!uMcYy-n-87@ZW4c^22}M_WbbQ zcbwtBVIG!;|NaKk6y@Q+>Hop--}L`r`0tkRXkhs7E6zA4|AOAOrqTTK%>4GC`LjYD zFwBqFvojs$$1B>&Fh5??PKNpMs&+EWkJq)6VgB`)8juh3&w+Yim_PCV494ZAo;|2u zN@NFfbT~u3)Xq>ZjWg6s>kReM83+0Ebyl4{SRKEG21a%K78)4U@kSGj>Z(FK7}fDx z7GPAzZ&`q04Ss173~TU9lVDhb-?9K>F!F}dlGu6cO&KQaS`_R}%+z|elCGmMQlHL*SzyBAg#2OT5NTld(5-BSR~2cvtMV_^cLd-}ocfYCkaVIDBLho6Li(LFaX8muTs!&R%! z9;~hx#Dh^?e>g#t%dV+#W2>RUVAugHSsd#kV=5 zaX&euaedHu`ivY*qh>vvA5MY=ue5>n)>#j`gn0Y8S3-X zb)-Z6Lg+g%)NlSj;{G#n_Mo`1$PR`$yw9HL5cf5-LpsFWf^jV?`zCCnfH-?lT=@S< z4sXf!U~*k3J=jk5|@l_!n%t_&FO$e>+jB!)P z8RMpbGsaCrXN;Rh&KNgsov~)MbHsI$bMT{iFwDV^-oY>jfAJ0sbMRCFhB#Uk_3xB z*akr8*Urg}lRBp`PUf7__>ghXDY1$TCwqhjQUgETjNt>ua0=s$;j{~r!~V(9Si_3j zgT=37G=WjP5^6KUGka~zZVzTJhU{QuACJKWMr{+EF?hds#^5~!VOKA zJ(#^SvV)Pm7n*LJ#I_Bz?Dk;xKQOGp$o|S1ZR1BdNJrbQW8i_&wj0h70(FGmbjHBD z<&1%M+ZhAzI}BXN!@%1H^}!f;FP$;)!lLzV%W>8md$2hbU`tP)V9EAi@=q{^Cr`9w zdoa0+&BCA?)XA1?4<_R+rDWKOXAq>rR=f!U!&clMfMKiNXgfGUNWfP8oM9_^5TwIa zabX)UY?am-w&Gn6(qSv!n1W#|-tL1jN!P-5HorI&7FzS{!RB2-*Mrf#mY7svG>@P4 zfYCfUP%xUu->C$nc{$NMFq+rb8O=+C<{%x-E9i{o^>s$`mS89#Kbp7H8O{6I8Eeo1 zXRJY?)_k@XYfyS;tU*s<9;=Gx*<|Li2hCFz>VsjPYR)iEb!V8ThBM4l(;4Qe?F{qO zafW&7I>S8moME2&#zFVtdrVz>P~DQq4u-m=oS|-MXQ*4o8S0jGhPvgPp)P(xm-Rti zx@*)2b?L6bP?v)fjNasRzGbDgkDB`Sp!)pgBpB+4V(Siu`W$@Vpt%Ny`uzE5Fx0OC z^}$e|>Vly@Hs^>b7O`x=EhuS%#C@@m>ct*F*g=FV{R;QhJRk_4F9~s z8Jo+M&e&Y8a>nM8KkW{EvAI0%>DXMJaK`5HtZ~q0?GNi7d$4<+!5m<8&vR#V&kN(A zo4==4+#W2R8oMtrigR#*Q9Pfgqj#$~qj$N`BR_hV9}|PoyIk18=-ud04~*XBU<9Lg zIT%e8=f*oz*B(^2IR+CL>Tbs114CWze!x(-KL#rp>Q09>EQ#Vn5(mWFgW~5wJ21rm z;tcVJP~3ME;jOqmSUfL`14i+y&M1BtGZE>~?w&KWdyVRlZWajr+Zo1u;|yc|;|ycI zb%rtjb;eYA=ZvXR5kt$H6VsYwkKpEj(VRO_7mVhNhBz>qL-oOE4%G*vIaD8v=1_ew znnU%$Xb#l}qd8O`jOHZ3OaTWq$5dnICbj0+gU#Ww28`wuwB`ie117WV_F#6tWe|+) ze9Isht>;??!Dv0-G6?2S!_Whx_53`@L{YoIyFmgk4fwz6W?S~4eR?`ewgQYb~KQideEen9Ps9z_12i zZwZDqu(=KN%;(}IthhZ`JS&s|qj)xF6wmGqW9D#%F>^Y@n7N!`%-qf}W*%o4Gp{p@ zna>%<%=A4ZaF98`LFNDlnFAbT4lvBYlOY)9VDrE*2b%|mIoLcf z%)w8iz%U0tjRM0QgV8)N%)w8Oz%a)+G}oHKxj)F7YY#SeIFif%U-A%3wg;2B*#*NI zJokcOjXD?%U|56OB`~Z}-_v1@BF;gB1NmW%A=n{+VU3~Au*NWFSYx;|tTDnF))?sw zYm9Qn;27=9!QqU#J=Pg>dz>@ob^~kypfBcjLubtGM$VYqjh!*Kn>b@`H+9C`ZsCl% z-O?Fzd$lueQr9@+CUvbdZc^7d<0f^zGj38hINJaS-RPX$c$0Gq;~mZ^jem4bWxUfl zwec?JG{(D~(;Dw_PG`K&Ilb|I=M2UNoiiFI$6|o~$Yh+tIkRy}=PbsloUHo3OBhFTE@}Lwb1CD< z&ZUi`IF~U_<6PD_t#di!bjCr4zZ14x*&{TN8h9TGdhPWm z40ZSy!eFSwzYqpP9sY$d80zrv3c*l^e<2KpI{XV^Fx25+2!k>D_$RPnj6VJeEEuDY ze*z1}=)+(52HiSFND^p{J=h!`FTrR|SxgQvnv)lU8I0!Sb4GI(I-@!GA_(Q9Ih8S3 zQ6A0VcdWo@PB;t(Fq(7G8O^zb!C|7g7Q{65?LqZ%8YV;i4X6(3P=BK{)ZgR`^*0-b zy7>4e-X0Xs8+I_nhhS`hA-*fbfg!$!GsI7Y_LfBL6PS2=P&_{Y2SYrsrN9u6YpGC6 zV(}za+#W2Bk9vZZ*`$_i4<_s8z!=j1g7Qd*bQ~ZMH*Va#)_i-g`FU($XGj`0T_8u~41osx|KY#lHOdzce69^utdYHP zWyzK$XSST#ZQBtNKBQ^j`QcXhkdy;MLK@xD%s>qtNk4A?8C; zmZ?>)WFV{<;5gp~xOj)o%`HRVzra018WE6(e|-_sJ5soi9XG;+L=O7bhJ0Z{emHJ% z=W>1i*Q`L?*x_LVk{_iEQHj3;aerJ38_0Jw@UP=NDDz+2PT@bZN|=yXAsg1S&IsVJ zVPb`piD}xHzF`7-SRbdd+v<3p-H54v z*JFM{OrD;u^8v&Rjp8xgqMPJ|XI!6qu`TBJi=L-^60>2Vis8_2W{pZoEKjfvD@Y#1^LSlxgJ@{R>a0tizL0EV%^ZS1bOM!Zxj#{^2R}4{S}Iq;fq}Zen0e zoBU4-=f@%+7S~dEQt>-tGd)%uhItf!U-88h-%jygzi0jBx>L`>;`ZXA2^c@D7{lt~ z8RD+W|2{CXP0vPw8E0W8h2JZ@EjvY#+$?HmJhk&pe9CWDlwktZGhF;p<esqXU@Z&i*|09dCeo*r^eH3GBJLw@BrYU5(eJX}*OK4y zvmOd-D!q%sk*arEZPxoi;h&0sqITs~{wb1kQQ>sO?^gaJDxX{&U+sw{{mLr7u;N=P ze;$SZU-lasSTD^^Y3ozpWLapxs{YL9;3?}}Tb}W&#e=?O`ukhz z7qMOI)XoVHneXW{$~hW?`Su3b_b;h@T!hEaikrR$(n5_!qUno4gfZTEm)8otD zapF?m;Ejy08%jR^1H*5YF}xP=Csyx>fG4)F+GgfYB)dH<#q?zgH{4{tw|CgCDan~0 znv?MxXR`d;h2&ozGkw%(#!qd-a6t&pC+6$*1It~K+?F$#FOuvw z=P%}qo1NkDk4zu4f#sI35(m7q+4WXb%CGp2`Hxj&7*Xk4nvwrX#eDzD&ZUO2eDA<+ z&*Ti%co;gKyeZ(>Ek4q8*4I|!HtI*F&uqo8+dm8^L}0!Ujk_Eghut-gkEq`+Yuwao zOuZ(IVEN9iSl?Ib&zS1Ze-|-duH_70$*yC2vfTGC82?=J{;1~jkbjw;P~pE?KLX$F zM7!SHV|X?)%g6ec`X^|pcJE~Qe7(re)c#FpnQwL@##h+Ie5dDA&gB0Xew~D2HN}q* z&kO9%%&w2yP|hi>183CVH)b>a(k#kPkb^uju$Q%RG4n9|E;qxOTUq}zt=9|HuZP+) zzRqRl3st+%X#79fA-y9peM1q}v$X-kA0si0(VF>Y$X+ot9?uqIxsCOyXS&PGw<54N zH$Bg5y^5lKFY=M{3Tl3w)VdWr3gbJgo<3Uti>V(*Np6`mtY>0L${*B%VTD5s$8TZS zP2(;>JMsaIpIsU^g;Z}E#b5rw`Xgza?z>LTb(8JcBfSe0BFB;+f1r7FwK407s&zV+ z*3CcXQBDMnuUD(cRRf15vrjR#_f|`m{~&vAYfFyOfbFfP_CN1U&X$MedrMCF!pvV& z{nKSUXX?Q=2!VxN0?q-<({kDJC$pZfce`ie{SisK>2sCVR|0v_0J9R8PyYh zA?uy5@*AXQ7L~uK`VOevFy$*MeVfRRon()5V<C5vBKa)n7pKu53H%{U|TxUHp>e%4i*~qIEd>HTFx#+YG16-<+z&{PXiN ze$^PtdwQQdHXhUCrC@lhEyFu8m_AJ7{lWv*e{49*7mUq(8UdcYR8islowro@0I%Hkj{xG6umNES5F!gDmanw`eWvl#U z^XJSLW-Iem$wtn4ntE&>%5eI4rZXHQK=`S;|XPyER86?D!Tr2T94lFXO%Hp2e`=tDZjPqKh|6OA;at1 z7ar8UuuT)nk0}2(NdE17P0HK5n|3asbH@XX=V;m&=GXpxN@U89toj#kWBD|yzoYn( z?AS{2)isXWe8qasYTQJZ|E;b4@Kl`>U+TP9NIYA-MdLk{{KMVjl$RhK!w1sud+GmJ zdf(T4Eu{2s)y}x$7~)+j_w+BeE4s>mt9-d+kJgI+N%32Mr+wT0$#P9DkPp8guXsnh z^}NLRGqo9JRXw*Zk|(`l{^{q*|2!wRsY{Nf^XMb(x8tc?V#yo&lKBg%A2v0oU0UyD znEx)r!}34>s^8b>UT5tdmalx8`Q~W-5By3t=6}IE)T2^Hrr*_h@k-zp+1A%<+MgE8 zMPBfj;qz{k`$qe@F5@U~om&>jKgs&HH=aq%4sQ;ycOrOw_yrU5LN1ZGFY)!r*yFS(V?Yi`z-;er5*Enme zdHY`H*T9QK&`($7zryrkJ&zi(+^++e9w8t3q0Xh9hmiNoVp!ll^PQbTPNH?R(J*rT zluZ9?0`<*ui1A<4Ab(Yp;j`KdYaC{J8 zJ5(W;xK7TX`B*~p@k2b8AM}Xf^O2PQdmNUl6Uy*jYleNBQqFPhL#iiaxrgx?zBs|K zdL-uWe2e*8A7?nUCgbyK9V@N%vX}Phd#f^E{Z!2Ns=4HA{@(eC>6v>|&ojLk_8ZB3 z$+Zu@qjh&qM8>DqzHNfWb=;FIH|-qL2M?FLSgg0W&Ktv8lAGv0?V`>n^C$I`x|tMq!Q zaBFz#u}b%)+2rT5sK4?k-zNFHReb6xJvt0Y<%96WY`c>0? z#!>nGe)7i!<5KUP6RF>Yw6cTt5oa@yixy>iL9LG&`mN~iV`Tx>6=&1JDTc=TOIr+Qm$H=u8u>L=nGAweJVI`$c7{z=$ zlCb`#sTr=w#IRL1hUb<3Wg7A?N*}89s$VmHgwnTXCKt}m@UqgArX_z;`U<7j()^pH zFxo)o>+vh~J+CmG!V`TMf9V9nu(OzdnbIR@eW)T{RE_CZwNB6YhV9PMp7z|V^(8`4 z=1W?dVRwB_@U!aqLg&AYy4RThlJ%z>%J66u%A2ioPBn$G<&Qh*zOAyxRUDmz7DQ(G z>)Ib|k$*d{dAufq^ws(ocsUIG%+0gZ^Q+$&Hq&^^_Js1zYrmWMPjZOv`-{CIA5?gM zG4&oU|NEvU(|?`GaMUiQXL(4T_L^Y|ou@{>As^9tm9-V~|E6`T$6e}IRqIz$-K&h( zJ}cV{wr7mi!Swpv>!$W4opgTgvx9PK)Kh!qZ#QUu=a&DfR*dQG$}lXUeEGDWNT$!b z4r~9KaW(VhT+Mcz(z@DF{^Rdk)UUM8oii2RRr{yBxtU&e3gy(-x>Hr_N^`A8(?`%Q ziPth;=C!P^lJ;ra$})b1^y}S*a*Ju*s;_bQTS~@%qjSU{)jLP`DSxYm4z&zOF_Gxc~@g7t;hzG>5P#!ooP@b5EBKYW5b{w2AT{QU#%bN{T){w*p0(q0^2 z=f&=-@3Q9ST^`lelb0FZuI$m8gGG`NeeaS$|iJzXsa>T#(;8qw!Zz_x@v5Zje5A+Lnm& z2Nb8=pR}&jQTV6^^{J?^!V2bZb%^=H^(04r%6wzhZ;#|Z1K;+jB-!wK5M1Up+j^I?Wc8OXLsiR(xXb*X1~YxkVunMsujs#=?OCjS>_?sJVzp)bZJpbGk=$jEDK~+} z)wPx6JgX=-@G~c{&q0lwMp}1Tt!4Vh{*>EZpQqKB%KSrg?hDoa>uc59;(N;fPx^Gw zy-8Nx2iDVl;3Dm--)sJ+-okPhbuT?{66@)CpY`|C`rSwS(CP9ADWy-3jV#}}CClY{ zz_5t+*@d;QPM~x1cG&3u>-_Mg^2JcTx!QM~(Y|b4 zCdwo(Gm-XR--hKDUSs}V2N<7P>swiU zj#cRmwNZmQOybpa zFQ+##e~MNNFaO7SraWXAdnDukYejhrbie+c{LU`z%WrC(%CB`QQ&pBfq4g@pN^*J4 zzh^q%9hM&&_muTaoliY)Xwcue&Nek4w((4NSkTea&L|o29a2OxfqP!ss6< zznji~q56KtSF+Pa^?!!v%(qDU)Xmzbc8f|oG?jm-(2MO_c8mG@>l~5&2kO;TdXCV( z`@wSNKd<|vg7H~yw&FAC9`({6jPG}o;Te6N@VCBK)LZ_u@mALJLHqs?g+mqg+RgNM z+E1NY#`=HIJwZ0f{Y(3|I@*VZ$d4Y~#P$y8LOs6FxnZpKLs#Z9K4cHWI^qGl$+N`! z#6RoY&_MSEF|@zPrgi!??i0<34P()TJolQ^ch@^0qayPbNJ-^K9H ztqe;@pSr5Q_YTI#+NOL{*^Z(bAKlh7e#VasKY#zD#TxSG??Zh49>git7i%-qhs>b7 zPW#E1rjgt3Bde;Az8mrtS)$^n3`CD@LsGfP^Bugl7w)TzHWtUy+*p42u&rR7qqwE?%VKs%zn^OPx z8(6NC`ZtyO_qq72xS{&1oBFGs`n!nwJAuY$dyTKRvVS${(`6IusjvQcC;!)9;nuTE zAHIcQOmX6o)H9~aPf~loP`lCwwp zH~)h1`xW0n@|R2h{@Iy+MEYm>ikwm9t3)SviOF!X^sg*^HcS6pshIw&^Fg|@EhRtQ)I$_DnBQkvQCBrDPXE)h#s_eKm7Sk`pVfZE6Tvz)xs69tj&qvksQuP#9dq%3B6{;ti z+LKl7sjBvLRXtNwPf4{Wp4xL>{T@#BJlD7_qxOtbzphn(##VcBsXevSo?hz5nd-lC zpZiPg3A_*ui2|dXMy-E|5W|HPyN1H z?YXJ;oKbsHs-AB(zDBD(FVvnGswcbZsjl(WUF}J&dj3&+qN+V5)t-E6&uGe-=sE~%ces;8maQ#l{^CwH`N7uEVcLHnt8+7Db1H`ab(qt@|oTKCUR zrM)_7e^F)({Y}9|jPIfEot9rn9yyKSJLNyC{Ef8FSu}~|b8EkIWjy(@3gb$ zbszsG8ev=plPdkv(3j-nf!?K=vpnd55LXdfDSg+2hq1+M|H%@r~@UO7@5&dz_X% z@=1?e(&P0E_V*_3Z!3d!cx`8R9-+juPVzmYvcCX+A99)%~6hc0Hh zjk3oZ>5*z8({ITh@w6}Ar2X?0$qUiF??uV`W(nnGEyjK>K8kY2YJ6OiJ_vQJo@D|*O2Yh~{{vUhT|v!2=+QQxO1C3|0z zyn~XLUiSV{8Z3M7kiFZ>-qWSWAJXHb?6*wzTr7J% zmc8>Uy{yt-h+oN`hm^mXxS`UQh-+w_>@NGv)VZOmIH%4PH^nK=a2zc?&9KQ?hU?Zd ze4+jID3wbt`ByeFz1#+d3$7YTb&jb?dBnf%u}vRez1cE1K7nG|swdpA(p_kiRj6VHE8X zs%W3kMSlEu>Gf8AFQN7c1!A*Y1NrfUpht8pwZt zr~Sx$)w56a+*Cc2RZk1~?@IFDqvXE_$X>_gzoScjHnn4>+VP|O_htF-ckfi@-G*+SftxZN=p^ zzLIKu71#L6tnpQ;J7k@#(W8-=R3`lf%0$1<)7=yzeUt~8(HgZ9o0KP>+Y|C ziDUbd=UPX9l%IQ`^{}|s-KJW17i6Pe^~bVYYH=E^PfJwakTH_0`cA3-5UtNKv_99+ z`n*K`aK8Lubgj=#wLXuPoT$>Pq}J(?TBj3zu1ETe*~j|pi>Ihx_D`Vw9%W%Wjw@d^ z-8XF2dbM8r)?r$wZYln);`^-Q`uAG??~MBQvewaFvsuq_-Cy)pxwl#`-)TLqqV+t! z?o;Au-MuM&Z!5l*%IDO&yYLX@r~jT|v|9|XX?-uL`<0@&OSGTguKXv&-BeF9)jLe(Q>or`=O{m!?2%6CyCpxT z?t==eAD&C@F`Xky$-YSxe^>Rlmj2_q(Ju8=&qnDJR-8roXQ@9!Rqq4Yd6&YS)2U}3 z^+N*n^T*Hk(7LDGvXSE|a$%0YOB=}Pbx(O%_na$r&pB1)m+D?~gYtipym`t$K>5EG zzt2zkAN6_JRq@v9m zJyiat_673(_6(bDW4J=$KK0XFg#{HqRN*m&&lR?lUG_=;m(u&N+BZP`8&C07HD0du zq`f1m{1$Pom~2<+AE?*1E(}vHV*KF@EEjk?5d2f`b`1B)PWLoEz7pmL4VKnYis(*@xP+ol1bNwUbZPdD6MdNXZ#?8eROz-+N z>j|%Quvc<&GlgZej-D+-`Onl(*VRuKG`_=X{;bmau|wmuhT0QXa^_3U9kp+|?Drxb z<@ZwhIOYFK95E&J&D@#&74;GG?|aDbsltT{H>h0&m9LY=Q+;vR*_4+|^Wq=raY$hc zwXf+4%6}7vb}1)2RZw~w@ixglrFy$7ewfySHrXg=b4tp&nU3M>xzyu%d4_#de=~)Z z(lXyy*;#(;ZwyNWtS?-+Vh5w!Lku@&sOHP8DjE^dLrB%L}%Gb)u^oPpV25%tFam0vGC)5)F(B>$-Do2>kAHEs^8 z9aXe09nyRrEK%%8s`s=lON&ljI7+*%~KbT_oq#dXQ56P)+&vDc`iz?6;E2 z|4{wflKeM|jRRC<0RJ<~|PM(USn>hFFEpJ{wO(fB!Xj(Rpz zJ&jdQ5y@Yw{`*V)yHox0hw8hc`c}yv`8BVWD;y?$`>5WYs<*Q0J)-?#aoMH5`eC)~ zcwOsd3dMI;d>`4pn(Vwv+%pr~^PR>~Ea_WP{h)^v`(g%J=4gZ5oFIj>aU%$-*VZnmh@RBy&GsekI{Heru2at$Mcnb zTc@dvm#S+2vRr;MV|%V!ceLNAB){6IJL4P3udPzQ#L@cx zgZ6pH0~cAgk9eY?mU#Wi1s`X~v5z5`H`94AIy#9poX_~X1PAyqaGx5*bcc!XH zed1JLcu?Uyh3RGAS=v_=Recq;|J<(gP+gr1eu>I@hH5|hx8~hA*{e-%>hnco)^}5W zdY-~HYHv@~KSKId)3}T*f16nTa-;g?WL3&bF2B82_tCk&W_;T;4CiEKm?AsF-nki8 zNXl?hT82qO8Ma8z@Gqt3OGiGe^e7p~dzBtm>64UxLFEr8W4p^0zdn?q>ZFQ~>qjTlgdD!nYdvIJ%Q2c{G$OBq&+^p0&D2nF8b&apx8c*-E z&X%sj{0S8HQ2jSGE}q9^eXTSvc4~hVqWj`?Q)vHWDOmp|ogY?e-fV3_`Q61e#ql(c z9*AQ}@0L23jZ}O}wKKZz5mKwYx3wQns(Ct4>+BC&AKs3mURAU{WYYT3U+r0?bH{I5 zCn~AErxjmF=Z{)imwHF19gZn}eBgr_Th}7$TvhH9+uu{?iPFk{T=PBfib&*NEWIac z{-xCZcb3i#3&dR%wu#Sjv$X#0lK!uC4mqLoLPzy~X64^rgysH~okvMt3#~hA)!xmL zyH@4m7G=2_8YeroAFm?43#mQ-sN6L9g;??jyQi|hLo`l5%D!)Oj!didxU2f{t=6NA zYF94FS@#d^`9|aI3;C-fZyBFL<(?{kRQ3BJjibTxM-T5%pCPLEqUJ+k>779BnJ+(< zKw%Bl(@Ju0OP{|azlg%)3PY8DzS{pta(k)$%R5l-7Sd~&#!Vyb2LnG}kMVI{=dj^g z$A3~kPgg&*Q@?D`c-f$F)1+|YbKDL?;Ietwtg85fo938QbQ{&jQ-_F4Fw$s<4*k@o@RcM+!Sh&LQ>BG3^u1s$3n# zKUDdX8n@vtP@kHAF+3zrs`X%)^j&nG>6czH%%*%N6#qu+XIsUuRr#5k2XSlAuI&{T zRTx(Js;mF+f8w}*uz~hWr}3~>@y8Ti)jXP~aS<*T<^QdHz+K6$pnl6Id*9bOJzL>v zjgu$p|8F#|4r^brK=qW+xJoBG%~3m-s{EfNS${o^n?2eOP5r-+cAKR2J-PH9q-+QX(tmZ*-&DWh;N6)JL4^+Oi;ycQIEws+v zl-y?xY5yUksLx#a*KV5c*|a`Hliae=nD6i~maCz8J$nrG{ZZlS%1kez`|At)nVw-6 z!+y6J<_KZFrh$K$zv`}g?9gOPzqOa)9ObW}{6my~ls>=zAqC5yYsUQVRW3&r#wU{= z(e-(5^8?KHVkg5R^*A2a?jsMC{wI~*S>x@Aa?@%dG5jLNN4745BsPtpvzNJ}DZG{_E-(0|4&9UT?MR{U|vnJhi}sNFrp>wlL%3ePFL zSBZMfR{kiGvrk-D_O0H9?cFkq`R^!9B00HYQ?CNzPqD~D#FLahOWamGbqeJ@zfJjz z8&l7V-!ROp?-LAc!Sq8}r0-11&#mu2J*!F%)#vToZxHH#DEVl>AeYdvy=<-&FlM zw4Mx+T}sKGxofhXQmXfl?&Ow|cT)U7=?@iOQeg|l$JD;1zQ)1GxU4_IFAO)z9%rXh ze(UDcKa$4TH@}eANY1f?S^!r*N0zi;BmNWBHBh|8Lfk-NzUjDMVw;W&-kC0d83=4O1IybR~(W7s1MDO# z-;+9;fa%pLvA<&0Vi;aw(r)CLwP?R$qseo%o^+i`?(>*(qC8+2RrxZj{IEgH7h^Be zAB%sV!T6nB8IIAo{H6kV>1fuw>;bu_^vGI~@jLEOUc8PBQ{H60z+2{F@2krg{-Ll! zGWPq2lnl4klfD}7pMOVx*f7colYsfwEn&XM&&ZvcF@5EF#{VHbM`)ivSRDI4^EF&Z zJx=N#D4gy;{?a{A=M$70L;6omL9UjW*F^dL>_$0t)L$KP zG5tbK#*b5dBMUM(Q|`JxS`oZ{mde*BK*YN-5f-H_QqlPKI+#$ z_EVqFzhik&<1SVkmLIM0)mr(JYhHG0M0ww6oy<{<`6paq{0Zq>MW4IXO~87x?`F6z z3G>a@`ZTJq%HN=V$4@hT=sCt8SHCyg!t|IenZ85gaf!ywf^C#vf&SJQC48y1= zS^kp7#|MQyl|R!!={ber(__s4mEsdAzQb_pwMgZUXdO!^9;k4o#$%$@lov(gy_5R; zyU+I2KB4$f>iJUZ+*axJ+X$BbP3M_?y01K?{@J4Te-oYhu3X9RbTo#C)$gZtPqR+( zeUv}G!WSARVaBt4Z#Kak@qGE@f8cpCNtQX}%Z% z<&Yf;Xdc}jM>%(8xBH{W?ZpK&E)$B2D;y&G7a2f1P13x2b%o{Y${)nMN^YoqZN=Pd zU-Co@t7)IHP5X)Z;hBG*^w_R_^CHdX!m`Uk?VEBcK85TTM)S9j^vN=Y`Yo2e8{{7| z-edi%HBLJ8XT8Z(uD)i{hel5+l0|7=uy zC#n8+nn%COPsG!GQxn<$nZ{>zjfdEssLwo&iy_}p{;!!??`6%4sp`kb8t2ipPe`Es z&Ygyo6JPckAU!&2-I}X=^^}Kcx42sw=F)hMyn^+XlRuoQ^(BY=UcQ#hAFA~t-3aOz zUf~mcA8Ye()FVfJrYF}t8#07E@Cn1kpZjSX>y4w&Y3ga8Qtl!1jlD~G57iGPG%jW+ zjIH^X=qKinqIr==^;Hsot8lBa*St=l{p#3rOkb<8W&-ln_zc%b|I)HkMul_Lzs2t{-!kQ|sd2eP z@we_Wy@U7%aUa$5RQ@`-_L0}*x94P|onn8@u&mOS>^LcDL;D zLH6jIh<55ByT<>UdW}@RpOtTl>~=?CT7~ar|A7kEYy5tyL^;KBu|2sKlM_kq4ek4e zY1}kX_><&(r+sN(ol^&^T^q$a#E->Ebe=n|^Fft??7u47&)rv8NBgoOT8{=QK29#` zS4-tLDeSHM)5VLgGhcG~uRB^NC(2JR)_Oiz_jrfo&%0|M*k&Kghw6T;^pE8Il9Nu{ zP4b55T(eU1DY@d?$dAodxv+|Fw}srfx-H#w5l{RvtxUe0H~gpnSN8*vEA{ zT58u(`G+;SZ@K+|`iFhUFsJnTTK;0R{6iz@{a)=jt^2;u`|70H&wSo5U(mjKjr{0& z*{O-v$ItuZU$p-IE&XZ^r#-Hzo}JsMR~hM*UwSQ(Ui+oj1D&t;C>*Hx&0ARhi1xjo z_rKw_kNHc#>r}J@`|FFCtpD?VxZ_s#(-e*0gX*tD>aW|Xr?d1rB)vcHhgXQlYJdEB zU%X8F-T&Pe-#A1)PHOyz*SP;l_GzJgLOrw6R6J=oqKB)V7>G6 zG3=3_;rc=h_h>y!eUkOmi_Z8Fjmf>kle6d^bNH`}Z>I2x!b1u_>6{i-`HLuinZi(o z?HhBPtms4eEp={xq;dDMIMbsqWqZbJ+>DlfKdU_hHNK%RZY`poRvvuDrjspsH3p8k7t&j|gX zdO5~O?k`*&{(tQ&lbMHExECB^Uun(0^8ed+{;fk-YN*|G*mH(^XiInkoXEZEKR=Dj zUeXfmdzFd%JnVBVxVL8E-kP?i`Z@Hj(mePfhVxj_>dJTIyx5I+YKGiYzOy>xe=G0& zO}U5P<9+`@2I<*KxgX`JNe3{Gu2OD~-xiWzl5vV6Es7uP!=$$qX-oX_l=K7f=*xU5 zPd`qKk-s`HpL&iJFJV85r+>wHNA1Brnv!!(B_Z z@V`Cv-H78Hq!UO#GVeB$UL?JZ-}kV;XDF|E^8^mX55@6ww}1X0DZd?MT&nZEp%MN* z%6V}uX(0Yjn%RDIlSoy{4s(!uy#ID1X zI?%sN_tnnIv65>@|H{$7?=w`MfLtj1M*CyZlNVFUBUta9XiJqa@GlKSO(4Qa7mtfle%lep`csPsRs_-kgAoI5oew%{7QlP&* z@)?Ma8Y4Bnf#kO(|37#s{U}fVO#0!4ozs@9f9oeH?TNnVfzq39qWl}gxi*(hiOnm?b0s$TPp;swJbmq7XNUD9{0 zsq#Zvui|4>FMn<2`z=%&O}|Fg6AvIhUeK>+^s62H`pG)Emj1Pwr}kQJP&%7??DEy( zK1-BFw2=N!tlJr>_iMe%8zSF@dtLNt^{<|f>Xqfa^E~|?vq<$`U~d}YIH{`YB@0r$ zx`Wm4rAsA0@4m{XGLA(uOK#ODmCvzC-k0$i8La$l?7wTfNd7zZz43P?{GAbhdo+<; zhcrs7Hdb1P{c{oh=!Bn7H&l5;-nXk_&#e`*XY~o$;mADsOMj|#RlU!QU$RExgL5UH zj(3kv{LW|*{w@(9xjx+253r798>@P5=$}Hrr?Os7WL@0JIp(mF{5gj6OgG*qOYlyx zYJ&9H_f$VFa9+vKLwxLl>d)yeZp!&(4&@tJPcES62k%SOn7UmKwC-o+` zk)HzFDm{8aeo6~}C;q;CSAH?hfxD=87`e)%H95ZyW*t7kda~!a?5&(t?X2V8Fog4e zKh}>f%!g>!#b&I7Zp7V!^s3(-yUwu={iOcA-6}8pP3`p=ExS`~Q~rGBoe%eh9o!4f zvM)WaB>8uRG!B(0_u}4=f!|ks;ofkQ{h|=(=r)|oFC?gb&N!v-DZkG-`zPb^n0vuh z_KhXfOWchrUCc#~rEP{fX@PiJcb87f`=9aW#(e zPTVJ^aGw~>e%+9MH@dHO?{J?8pr8G*yZB6%7mZcwl1cuxYoqim&ZD*2X-$9MX*`M zLjE@N?!%5Ew6_?&scCO5`Hsj>BHxAiGlh6dLADM&PsT13FO88s6*zasa(>Rny~%rl%w=FMeLh5xX0ZY zC%Jm)Z-ssb^zRy~`I(b6@~7n6aZgCjy`s@%<#$K!8us_(o=_b5Anpqnxqn8?SG|VV zxt)3kxo0h6zg~y_AK2R;d;PJu3ijTj{UO|ImePJWdU9g#8SX2&(A##b?3juFX5+sm z+*_-mw;_6GaqbAEUnjWd4PzWLGLC7v5B$gd`8R%Fa8l!!kMUhdf9#@^|2tA?9QWwC z$HigvcjXCjANu_l`&_VNIp-lK?vE>JzdU-6)lq-*qc;ovEsx$+jK@3tH3UC3MvpK3 z=uAJ-GA_^Y-(}=3(B1_4(T?`s(q3QM+k&4b(vRQheaC!=fd_J)tIB=Di*ua=_rNyz z{UGHLW7N-H*wvGHFqd=ogfjADSMDvFmuVgDyWdb6;~Fx%!{<`!kQN*m;fdSk8R>$$Q8K z;_6Gd?2M#dEd6$6Jkv%?Z+Gr9ub0WLt7nuSd|qinB<)k)jq+lzWp{DbmB+->+TCim z9q$!xL!`HdpX9%PQF*rp;!IPNrkSdCN-S3TlJv(bm7n2#uPp1rRQxrD`&n(qGl26` zth3rVv_twj6cfK&E_;q~|M^H9uVDV{#xGrwYr#G5F7v^&sPs5--+aP+NTA*V>ILwQ zlZgMfFmA4_2hCWoj}V{U_^lfEkAi#DPBOmBj>nHhD=2>(_pesm8}jk}_{{?O>k$6- z`6~Ih_$LwnbY@Q+qfx8o6x^j7hvwgiTJJJMEuG-MQPqC#x9in zTkbOrcz=1$y(S&+{Ev8ld4azjIM2O$BYU!Pu8Y8bc{$$==l;Hrc+APXE6cqx4e@o6 z_kgSqWM>%n*0;R7EaTq3h;<{!B*{f`es$#B;m3J$D*dZeR{p&~KYid#ob!j$-^`r% zKB2E5?=e|c$Uj%G=MV2M=~}AaV|kyM%)8Dd&OQD9&DT)XkD}f*^giXjnP-m5UC>h; zJp+)p^3L;%^~j5Udh*Wm3IDF5T?^}e3FdS0YU+Oz?#uIOw+i+R8Z18^St>h@aSq?e zyG>`_eM0#?Uu(|6KSxVGiFNhHUbWMFl>D+9|7N4St*_)avo1ukE(~Dae;A|k2&?Q_ z&b!hb+9^wXuOcq~BQEk2-;X(emx)#TH<)jSGl>tf5Bx%I9d=FTp6Zrf?fb{7{q6Lp z4f{kv_KBl*(wB~O82d&~_6<+QX%T)sL7cQlz7_L*59h4Kv*ovCyjxsNBmJlG(cr<9Jq zBD+1gfBtt#?9BL&;Jx7bTjeihJ#NQ6&ZnvL)FJLWGyX-`*G5FjzO?LXucE}4D0gCC z45vJpeQ)16$^AX9bjecrX*BiwQhzV{-y&ZfzJh!>@{Q4768$q+M^BxU{rmbUtK=5dn0+ON1*_RKyffBa!xIm>?Q%zpcRy!4Iqm;7e-hgoHnUkmx`yaya+U7U4S zdK)#8TyONJ;@x5ncAR4$dXHR*f9-Kjc)|Yint4BFlk^T@zljNu{+g`IQS3j<$I4z; z>`A^@+?@D>&H{AF`h{*d!{i8bOuti$f?Kkta&t*m>endc>0?E zyIH>$vVMiJehp>)I>UOkly%ByhWr!AJK+NCJKI?8?qOYc&${repYmt3E^K67Xv27w zA0s>aur5S0AIo!IC`a6{U|mSfKI1$=dN;B@yg)9J^&x=uA@wuqugU(gkM&_9aUab3 zP>%H>lJ(&S>q99wwbPRIp(Anok#ka2@hSQqVC7b~sPxMXL&Dny)~q(8Zd(~<1I9I&^IrK3k}H)=<*U4v*5utb zc(?3HmsR;5{gpcXQGTzNN;jua{W+K3<1ALj3q%={5S zl3#@%F8j&e@KW>>y*1ER)mZ<{dUbBAUfDjToW&YutRrTAXleE5xP#iu8m;^k|Muq$ zvNN3b-;M5)KYhg1XR$so`eW+(#W)1^l%A=^J<`lCGER1V{4PCN@nZ_c;Vko^3H>-j zoZH#hVm+He_NQ;8`p+k+{o9U88(NeW?WgkJcV*W>&85>GP6Gn{<=D(#*T+8S<@mB|9Lw2%BCHYy5Nh@%3cs?Uz+@H}ffdW}81A)|K64-@|RH zpJ1%NrafNURqrO_6+{|p_|dd4{;Bj>3#pwJDaEU>Kh#eAkhCD{u`~7--7o!5s8_7N z*si$hwLhw~#8b6*u86pav(i2Z%HLx9ds&M$xv}n;cJF6jh?pmR(OG2QrTR)|5btY~ zRQ~w4(nR8UVRFg!AnvoXzP0@+xujo8J8V^I-6}gq%@sHQu5?Fb<2}r1^#<0`SqDqe&CyU zqp$ca^<2?+hW;+0KW%?V{v~`H|6M{p@T&CeNUL-k`f9mryn52kh*K)h!M^^gj>@Z$ zzvGDPb&OGd2=n~IN!4>g(AJDIaDDlHRN`0`yp80bZe;(PQ`j1#=^Rqu> zrGMd(D*x)MelI6&JxzK?F#)+Y zaC`VaI0Rm8yKh>oDUI&~X8d=IRlSF+lEB;b`Am^Pp&PltiDqp%$ekr&~ zazXv%2Y)Z6ndT~;RYLNq{z|UZdez$!q5Q^-W6q4?%$&bIw-(3sR%#im`qfAy_DRqF z3@X22v&&-LY|Kxye|=okexaqR_a;o~3eM{T$-e=QU#Ido;w5>a$rfu<;~r(|OIW3L zE_PI!(Mj?Xu;bTnwbv3p!?~zolJcF=TNiuZ+*JM>pSA;1oXPYM$YZvzEOa-K;TS?XH6r%Q5b`lS{qIyvd;tK57 zJ2>aPvF#ro);sJg582;JvTu5FUbxP^^3zwfSDD|79H2k-KP!JQ<=g0Aa?0m#kR2cQ z%Z_8O)bG>A`No@o{&BUPD?O}dh_4xpL-xF~ zV;pHvNAY9MukC&0pVje7(`J)B<5-uDb(dY+W3-=ctf2b)m{$jkbEvuhzbD_Dciaz^ zrLPm|sJ-g%@k^>d)aFl%wWo0}Hv4gfbv-lte!i7O>vX$Dn9@f}z325*KbZQTv9s>KcFeco)=Y_?3pSVs6 zSNnCi-`0AjcA9Kbegx}tif8Ko2iExotV?xXC_ied=rkurk$k-=Mzb$O7dZk(@{j*(q zyN*$6wWSv8BUkzPdNbvZCQhn#Q$I>@FW6+T>9;(_JA|p$TWOn*l5c!dyyKmC9=})Vc1QUKJe216r1EpO#G^lm18#^Pajt6JNqpsp z?EZuPl;|1oUiF;WC+FXhTy#~{tIv7mexUL#QOZwjEB?|>=}ix%HP5L0V|($bj!HM& zS3BVkm9F|Nxyx;prf4I%YTcBcWWTq}mVDZl@}CFioz!k(&&^6drj(vZoNI#biKD-& ze)npU^E#*e8J*QmkFH85o>%^eF5*_6N?%}CvF_ri9+aPz{F4sib)A$By{r5QU({}? zs%rQ4VwLZ2C~mt+X+jFgw{IoRT8DZKl|Hkmo_B)MTho+(JiFxU7E~J3Pie27(swzB zJl zs{b~h>W{F!hj>`ME6I-K*qeqp|A4*2vG*_bF2vroYh-66PaIAs{!3H;4srSNy6k97JV$blYJ#3I#Pj41 zl6y)!yEym!xGlTJJ84|<630bOOTInveD{I;aFYEnfph7rU#j0^mdcB^ke(B~kK}J8 zp2>VJKpZY-K5ro&B8i9o#KR2YXBF|7nYi*}{Rm{eo4|dsZWXoTMjYL2AfB>OX>Q_Z zIO{~a+Ol_01EqP0qfP9`MTw*I%*&|-q$ex$GMs%NH*plwPUWHR2apcxS?KaLMJFXIU zuZX+s_`3}LjwSBC5O?$Hs{W=%N*@q+6^Og%#N8I+E|IvKN!&Fj?j8|$QB~!y9>m|l z$Fl1@=dj+yV`<{-A@TTtc&ta9lwyDVja(PvaS!p>m3T}`eGBzR5sz<($Kk}|I^uCF z@#sJt-y|LjV*d`}u{rVBop^L&U#-Btn$JW1oK2ioVPDPGQTdMSs~Ol=zY)I$*jKxA z{+q*omY;of4DswqJa-_Dj}XUgiQ{X;@l)dX4{^MfI6g`o$Fl$JWdFQLT%Tf}UCusR zll^oA`+P0pek*Zbf&KI^{X4}vaF}(#k9EMFeKdmjcPIWg5&x5zkIR{l?!^CX;=e8N zUzPaZL;SlE{||`&#>9U#@n7J*=GklF-_lw0`7d!_nz;W=oTv5GIF)C<&Ly6Y6VFk^ z^AY0tH}Tw?cy38NUnQQq6VGpn=P$%_2F}CjL)6|=;`tKs{FHbeK>U6oelrrEmGM_g z{AEYn7a;BnbMw?FY)gt&c1T7`4-3F0?^_|0%v_H8C^Q*#cUMZAtA4vQ0i zg@~u=#OpxfwFdJdn0Wn!{2Jo5HSyYscs)qGmgYRXgLr*_{y5^b3GteS^RNf;`jvQH zK)fCxUZ)YS3y4=g;`Isfx{!GFVLo>yUb_*mO*sdTB3^e8uaAk>A;jw$;&m7C>cINF zmAFm6S^LRq;N}KFbrIsfo`LoP%=_$DhcbN8DZ@Zr2dEzlhuE z#BD3qfgG$Cc~~zl6Swo&zk3kBDOhio5Wl~P-*e2zC(OrS;x`}hv5@%nCw{*Xzf*|c ze8k60;x}h|`DZxsn{SfhxC!xFW{J2r@!Kj!e3pIN<)zr0_d8eOdKhs%kbOJc`2J|# zga3@w{@p2F?XE+Aq37ZQ%cQR)_s88w6;IW3DLyW6?@zbD%(qydSJS=ykiE(;e^R=z zx>AoCN`GdQ-uZA&(gWlV+o5)1sW-=_&tm;*jJtW>$dW3g6$pmY9?_0ntEpfmxt z?p8a#uFChvKjEZ)iDtRQI@ab74{N?s;%rULb}Uv0{NuTkb!4;j+`3yL0t?Z2D-M!s@wG&6Z6t?#*i`8O$w>JHorH}N+_cl|Db=wimmrurbRy;Uqqa*MeZkZ$)3uNI><#KS2j-i4*yhnB7R&wLiuZs$R7#=}~vr~38#yyjCb^0%|k^?>sr zH*urpLyuU^?|ZyM4a+Ed;y1`{3+Ksl>{qEnmG8lQZz%iKecoS!487+0ye0YGjMqEk z{%huMEF?Qy8SluZ-W41W5SYLgYf3|#8JFmVe{qKv?Pwbygl=q-~xKYov|G;N6wOHe`%5SGqt3QrL zT$}xI;GEHkbA}!J{#^F`jhx$WWij{Sb|lE9?Br{2I?4w%^}dtgADc{_5dxEg$74rw>ZklXmK=@#x2SIyy{#yiNIa_U{fhwpeqst~TbKxd-pd z$EQorcFxZ(g=GJ6&d<$ysoenHlPlxTAmT1#1(l!X+}irC>_{7{{C=#UV4IO%FI14(D9>m~-LS_L7U{{?uxT^sO(Z{Oz`Lg2mb_jpBY8=ZnIe z>z-7STqu6a#e8}(Nd0?)-+y!NTfjcB<*nK|HbMQH+h5#flIlHpY35t3MNcW7`m&zH zjaL4_HQKl0SjVQ=Qj4|PG_6;aGHV~mno@f6K9QYmjC^zaGJI1zgZYkdGr97Ei674y zD(}}{^-A@YozAv%l*L+ah1$<#+ebaDcwp|Q;YSTpZe!}U*k{! zdsks^Y3#Mb-b3r9KWd%YD-j|6gH|iQFW+I^H;X5HQ+sde=eF0X_aEt#v?_0qPU%7X z=0-b}ko)jQ^&D(+7VEemjjJE>uAH+rrd7LB@z>uZ>5Z(XbQRxw-{U8{FzF3Apne2) z6L-L0Eo}a>SO*#Vthv87d8B#p_K4aEa*^IIe0SWOQhFlOt2_$I85?}*?0@l##=G#I;E8RrT!9)HlEr?&ZKu~ylvbJ9HS3!&^UpKPhc zdY$;YKz{Y@vcI^qX}`rXqFj``+{9ZUz@lbJr^vyTsjp?VPdE(B^l(sR(%gj$jc>?QeL&k4-nDl*KBz>;jPi`PiBsCpR&KFQvYj_A)&Xf%e_R{2caVL51ozeS1Lem+L(a749_Qsxod4Wx z=RJ#c!y=7;0{5DW#(rY}xhh=|Il44H{{jEUf2l?B_k$&x>>3bmKmi1%IsM_k-Jzk3v4{Wwrm+*q_b*`q<{b zhxHok%PM2unf*!QsCKVcR{EWJV4W_W&$+VCQ&XSudu>DBtk*1u^e=N!{utxE#>}^4 z9j$#?{hMw39fXH9ighNimFl(RUa-h^|1s>EsQe`E1L+dYxI2WfOS<==a({L=dXu}Wy_3}XM;qDR zH7!;r=Idwt@W6Jjv{>u1Usu{K|5Yw8dvg)TD>#3zBW?xQcs-3dq6u-MTYOKR%yc{s%(~P4g?6-5+PtG%r z$3jfK7HbaU`?D!GjQ1Xor)s|s@AIy#Yt;{%?O3dL*~dHEz7raM9~B@!-eg_rW1PcG zx%Eq=H~$OS-#1S6r!hav^;iGi;FtE?pPMo-r(IXS;%+J}2hV|fvkqSImA&V9&#XUH z?Tj_@&3@$y6i4&U)q-~}f9_$yw(+o7fB2{$_c@<6oi4oxx2gSI9mUtY#dAm>7E=Gh zjPsH?zS+_%{f~GkwMJZ+^L=w$xv?Iyk1w#Tj~>?Wc*!NQ9{vfDe;TDzemQ%ky*y;c zYuee~`sQKv z#h*jipKCLYkMqkvWx0o!#DBwC&+A-Kd$~N7_SvBH*nYD;WBp|wXB?>f-K=Zx*w?mk zo@mOx?8!Rw>bKhcN}M(Mr21PLs=pn%zux5i)WH@v9@d)N%PMj&+s!$pDEovx=dliO z9r*bj>FO{?FC!BdRV`mke-MON;~o1HYK<8w5YHAP}bKnq-WYme>qaWp0Z;% z?Tn?YQkBFvjv)SKE_dV=+|LqOzs|#Z z9?2hljD5viZx6HH{@5lv^K6t|ca3)qGY)ESU-GB?M+fD9G0rDu`6Jf5zub#PaevCp z{i)bd$sc_p{gt>M1lZ0i#&=rd9o@7e6>)T)cIBV=jCYNCS{mMQ(F;4c}W!>ry=V5(uV*c&7 z&2JCudB&{~;}T#y4|rI6c*ze*yz3|Dy!n!K*qM3qg!OpLD2-!P_Id9O>Tl#$<;QN7 zU46EQdumB`UkH3!NrzQ0JKl;4~{VmYn z!KUA0J;uE;1MgckvdHg4Y;kI_ZXBig|Mxc68_b6gX4;k9sbD47Nz_ zJLjUUtWy!0Ro=3VQfK^ku$bi6aesM@{>hx@oNW7|hjso-wR4d5Hs@yPDHyN(6G`gF z$QMe#GtVD0&nNegd>`zbh@MxQ%zTTrZ8!BhAi3lw(eJsef2UaA%Ma-=T!a)+k1pZMZ$RA_hK0`kf(rG@uGR^^}KbF(qp?o*( zfgg_1|CiLSN&oZlK2>e6>gt^Xk1V-(n5m-DM%|?|mvikGG|*3nnxE zo0fCmr4-5bB}<;HlZ}JZUi_In*WNFjEh(=6FQmL0JQ)3T;cv!lHOJEp?tD?)0xk}>hiAcE z;Rnp8-f$Z1^?^$=p2Og*jHe&`F^B9Q4|j7FPldD7pE z{sQibzY^hk`0ESYfb!pPNy<|?X?~5QJU!f*@+@#Q?8yn+$Ep7X;P>>WDC`55fg|8b zaBJ$<-Tw zt@WcF9AKQX&H7#7b;fDhD%N0_~&i$6gUE& z{jdIYl`n*UP=6_WFOB-Q8m@Os@*ClS$nStBEl~MB_~aY$5%_W@={p5CG+t{>d!ylP z#;cLZSK&peB!364@<#oA1Y4U)J{}IE{4LznTlGJ~hfAyeFSv=F%2PON{@gcSmCW|j z!D&}(yfVX^8P6Q>Oyl+1l+O<*yp=sg;M2yhVa)QS4+cgtIZfhr@~4WuHGh&bTd`@>aN3 zL6uL3udEl(g{vF4U{iiEe8*nA0-k968o(@H2e;TQ{aauQ^DP`cXuMjO@&{l)_&7ZA zk@TH`&pg$5ng6$M^E~5SNcC^Pd5zPvsqa4gBv|b~g+Cjw1ZMe5IMVnEW%7G?vT>U* z`5QdXxK)_^2X5P2^-~v7`zM&64)C4&lFtSY?=F40;jW!jUI@Mtq4MJJsW_FFgJ%{N zSAiQDug9i6wc$^9=(@HOKV z%`ATdkLjiIPw)}rHQp@$37=vWJhx>bpUEv|$#Es#Zsim(a{G0W?16-E%&=VeN=r;BDfmaZ3 z1K^#kH~+y!yUSmrVb7^*e*#>~xOJNProoS9pUTn7tSB|;6*8A?-Tf=@ycYj zp8#(+UV%)02WR{te}0AE8($U8@+3I+fZ9)GyfT>UVI^Oc+ruvz|E%!#tJ0SX9%a0; zn)(XDjSop*F?dU;>?sQmO%hjz{}``5X8l^QGx81KK6zE%3?AN5+y*{nd<8b^cY>oi z5A=XzDoDN`d~d0EFnnW)>>mkdcTxFRcv3a#p9E(xzP_04&4foAUrkJ&4+j~qASQ>v zFF9|ogqKfN`35-HN4yRGaYy?0z~7D69#h{Tc#H8`YVrvvpfy#d{_E1!V@b= z-VwgS`6@4*hIlUw*Zd><7=-BOVVAVZECQXE$C+P5pD=W2`?xa0Khk zGPoN3T?0EIzX`tiTm9b&r!sV#`Xk_34^(~>{`pYja~htAzc0WkYN`Ahd~dPp--VyD zUpJ{f3jXex)p-`Eu+hRb`(Cyvg|5V$SbwaDy3=?+Z8QzB&+|eqZr29De#(><{~Mzp=v3 z#;*%Z{nO#4##d*P=fWFis=dW} z-iZE&Z~^o;hd(;Z!X&@sUwwELoVvd34};%+l6~9Z!@M`|h5c%%{4kt5lk}g2!zn)x z*MzUY9eBUJ4L``J`VZmx^yfMJhxXsV=h~^ipWrBW)&B`!e68~2Wi)?+;I!~B&i|R< z-s#jI3*686T5HbFeDFuc&lyg}_ta8w6A$^%1>S{xb$C1D;R?rdo@@-;bKh$TzkMcq zI>0CR-slORL%t8Zp7Y!Q_&e{V|G{tK)t}Mu-3emz|4L}C&sR5yr@`sYsQo~=66?_- z*q!xdIlPPez_T`_3_VH}5r3u>Ty{69bp$et#XFnnM1+ z2T!sSKY>re3GiZ9>3avKN+bENa3=1LNpJ@4kEzPaUuS9G9v;Db$_giOf64_nV?8Sf zUu3=%gXeO;D+|{sB6}*ssf=GWnDem~eE6Ws8^FK#UeFA_%lgm;{+&Yo?F8>FDSbWQ zZpN?XO#S^}*X`oLuqXTFNZ6sj;%h8C<*0ZPyn^?>nQ(LN1M}fteE$f6Q*-}V3HRnb zdjmYc_%)Jg-!?ds`|}=nJ?}Gz;Cy_~Isv!dDErRAExDgwhI2oW{#&r;dGQ1IS_b*! z8C-$=`Zer9ynlq3(!U>YOYYCf%4z=OIVgM5!2McEe@1vF>%Aj9iSf(}`(STjI1AsS zO2SpUNq+^nsE@cBd?QZtr!G8-_X;;S?+f+61sukEVS9KM?}c6A3O!_hZ}{B-#ezlPg$Sm!0CA}41z1ak-lZ{-1M@44Sb3Dx(N>5C;6SQ z6a9~XeJDQ)KVv?ghI=7@0dC29d=2hv{FS#kU+=;fU1iT>*q;0E3%DHb!-=pb-xI&U z2l>AD8%{%c%JP~|eJM{5@3d+>vcLtoKjefTao;NdKQAVGi^5OwUm187{;%{;9)H(_ zpRm8yhpSP)DcpzgYz=3jyd&&Dd3QL1_PpSPPa3a5us!XMfcv0t3|yZ1F%j;K{0#UA z^7G(!x8<*3*zTj+3x!kMRQYoRRONAK)O~x4*-u=+9p`x`XQ5RnUAY^IrNhz#n+8 z%?>Z_t@)A%u6I=I1ZQS_DFLtH{!<=~A>OOP6Zkz(9eC;ywciLXVf?kQ8Bgx;0M7sI z-~^-0Ebjt8eWL#Kf=iWB{r>QJzAp}iZyA48WY+hEH}HNM09UP~@+t7Lm*UxQ_;A^~ z5ROf+@}=;g*|KjnT!;7TjqqU3UpwI6yie|flZ}!6N8qfL#HZlllf=>Reb)P{a2oCx zci;ltFCM`yc<+ygJ9JQg-ooYS&u6&*E%oOYYzL=s(foPHdt*AdANFL1&$GYffM2t} z<%fHml>dsrTYc5P(r~$q;)?%xqPPZ})I|2zgFCZ-H-Q}(-&XKB-XA^SJe+5{!D~3r z^@X4NsQ&}u1orpg@J04_e|Sj)*=L1Q8h;IF&bR4s3f>#$!Y+LOS`3e?qyDUb7dI5I zgM0J6Wy?Q#?hoN`NI}_q0B&uxZMJ_L&cgZc4E)ev{=W!khi|}tGt2(_@B!}2PvIX?!)^Gz&o|h)yUPE-A$P%rlX|Ou7`%Y*CEMYd zd|%lMkJ>DMABH#7RQ;21&b}%?4^J}wYR(*wEAUXhSKNlr_EY&o_*Oyjb2x$TZ*Sm3 z59O~<@X|5jpRhgaS@KGnKV3e_p0w~qzQ1OI^R|(HE${}$GasDfr~1zDvubdlFfLAY5xhMQ2T=w*Vvrks}0Qjbp>i-A- z7bt&@hUcD^`~1#FgO` z=OteY{(yV~IJ&Fko5B6th}*zxyNNr&Q+kMdz_-pwe?PcK2bB+oOLh{Egx_<%9SbLZ zR(~hKVO7-Mneed1sy`pD)==dk@S~05mGGz(vS$N))A-lYOn+~K?OA{Kz?*8T{X_7H z2I3R&NQ>G(2PbjAy$p|Z!!TER(9uGg{ygL;R zP9ym_a3S8?g5a5~*UR867uDVxc>ZvH9EB(Fed9FTmEWgb zfUm`>|JUGJmBn}ARP1Mu;h-ql^8&u~Rq}~&rtjh}@S-o`->`d1)lXSf^Qp%ZjaPbj zGVi}x;3nVXkDTyk_QL{j<`mLb6b^hP`7&^oAL2@I$KT?b@Zddazdro)ob)w?M{<5^ z4c}{^{&a*JHWYV`4^SFOZ`71b-@%jL_O;Z29!!wAVzi=$}*;Uhgs=)r30iJ+=vcqe6f6fCp!(JzN z3;rtsw|J}e%fqL+?^lI=xgXbot2)Zxjo`p}@}E0=mG`Q4@GssYy1)mFzt%SQi(YUo zSJm$iXXX4j6fQbe?fJrkAFF-ZZ*7- z_pXg_Io5|A@Iv~x4?ezE`j5cx_#Si$KFxb}G`wPw?7a#*bHBR-pE$4bM{uc?>VG_Z zb)EPvoF`8F87@QpU+|#m(wCyT=FgtI>VG;op@=v$ysor32i(hehcf+_AHG8UB5>-W zDlZL3QokZRp87Rl_k5DC2T!Da6L`1rUB_&%6U`iB7A$c_y)YNw#NHDTymi1=TmqG=a-joa#z)V59f9he}jke_XL07 zqx2_r4b7(%eE)NRxAA+8Y;f22>VIxH%_MOl__V$3D-JK_dviIs1zZKr#QnH7Jb>S~ zHH0g(UNwg^bKh$VFH5iXJHvN*Kj;bX+^zn5!&lgkhrk!R08Q4Bx*h zeY4>A@B+9I>)R5z^efr73cj*W^~2y2A632`{=Gxxd*Rw2RDKvf4xfadtdYOZ!&dIU zSKyEBRsS};DMb7b_CBQg&*8s(zkUPf{w(=VaC*K^{e&BHo=RR*^JnTe$)|-Ky`(=A zyoB?X1#T9n{^o;YY0nwXJx}GO;2FGUxxl4^HGb9M)|>}j;h)!4zcC!ndr3>U0pFiH zz)kl{-V=7|Ebaq$<9;*%-pc;{A6$X^*J!v!J=LE8_iHSk2G>PjAe?K7{I>|s!{2u; zhgb6cx)%Py`_N|CZj0*gf}=UF?uVOk|2PJJcr5=#!S(sx83P9)e;ppo`_nzRBEPqI z0ykW!{w2U3oOj;A?wnV?!reI^CBeg|YQChZrTLV|d%8WGdYk%}6)xUK_UD4bd5K;y>2Di2fZrQ*f^WQ#y*=RVKjoi( za6jG`2g7waKaPY;olyO;@XM>RXA(R%O8REP^H@*j!`{4ihrmO+NPZ=3$L}FFz&k%n z|2DWfyayfyAA&ma4h%T zly%gfWgS#MJsijPlPvIJ?u$9$DV%2tz@t~Fy`pf`8gUu;+B0z_xCHfU!d)FT9`)hj z+|QfBS$ThL4d>>**b#RACHuR>ga3%V;Eufi41y!L?~Qje@CkP5^VQI z`fkG0h__hy8TZdP*dvAXy@Jbd9{K=R8X|vwhZkm-{=e|8D=N3EtN9dCMdcabo3~V+ z9j?jmwerC0`F)lXJc;k2CE$(+Rlhv!%Xy+Iyl;fc>%fus#EoFTZen*h^HJH?4nF20 z|8;>sUz2<JNqAvflc_r&-?v;GJ>OKL!3}RsGp;J>q2{T%GrdrEs?} zjn8U$Ebp-!;hTJ~+X27mFZq4&Zq8Fj;MEJ%pHuLfm*QwRJL}a|_|7Jk-+^5=%l=1j z6z_lW@M_kZw{ZDws{a|Ty-oFh!MDfC-W0ByKLz;vv~+N*Ao(vd9KiR!9B^LVzw*Pm z=x-6Y!CbXp8otl(Pb1p={p0b=l6RT;m5om-GGbm-gqCr5hi<|!h4Z_2`_o1 z^7rtco@(zKoXGj=5B%(i6m!2W$$8WP?sZw^+2GxW#JS;C2^z0L@C+xF7l+Ni zYcSt?%E8GmiL1clKFGe>u=R$xA)M$c{mo%J?sskBz>Ct?8BUG9p0ES@yy1|%k{<%c z6cLYtrPlh{I7SDps?-FMJ7Qo}riE;V;O^JNVel8^x5EQCZ|#L| zB7Yc;nWy=G65i5Z?VX30$4dVdc=$=l--ZiuetQTv%qjWjaE)>D_Zzs%OX>dv&*MDw z6V5kZ`jgk!{Hce3)57iWZzebu{k6a&@J~K?&{f&v3|CmF_DjL$ImPt13p~D|xH{al zit4-mlYb^|3@72AmT>ahD(?XI_7Z!-8Q4Giz|-EUy#esOl#>4sZcn_9hTR#T3GjOA zPlN5a9|yu$slNywn_T*r!y&}uTDTSO$D842oL_dqC-B#P_#XZ`1~(WW{ZVlF%NqX} zI5Y2y*Wt;0ue=ApX8(NxKg}k632;9C{egF|59i;n|LSvJOoE5;`;%10cV%-u3g-M{ z4|}rTWQFIl-{gV|{F40z;dZOV#o*@rzNRcZhW=NEk8^*o1-nLQyc@u$@OLw~b}jX{ z4eZQ&Z6`SMHkJ2)lVN{9*a`aw!-LT`67Gb)vGDghvS$(;-AnN|6Yj$LJRk0#Ui}Y& zr^KuNO8CJL@dh|FT)Ykb(pS6(zL}){9D?V*5SzaPFvly?G|8WXe|X8h%kZ)uvgZ~& z`nmW4Y~{WD863)a>NT94^VCQ9M=Q1e1OAWmRWf6qoAx+tQh6Gj}dh-->LHU@ZB!ru5c*# zo8Is$=A#dsf%!8Geh>S>_J3r*xo(>N8N&C!sc>HY{fs$qI_6Ulyp8x@1{Y0~zBTX) z-cvWhJ9tms2{&`le29QOuc?1W;bOiTuha0F$I^cRZpZhCYjBzMs(%+Aj6Wa46M64` z0Y43s{zQ21X4&%vu9`#b{e~AKpR$qsRoqAQ)5DuyOFj$i`$(J#bX1>g_-dqqXz z5!^q^z+LvLKb7F`y!Y3HfAjsNK0KcCrf~bis^1#^!Ft*e-nl{ccZXN=djc=GH1-aH z-|>BG1l+E$>W_hc=NC_ePlv0&GhqK=^2aXgcngB2_K^TEPOOh{<#Eqd@a5SJNy;L!lgN{w=QUo|Ns5>U*jmh%R>a^Icu-(NVemi%MqrukOkq{=hEnc(cO=LwbPfqj?Aekb@yYG;E zdDx|<%B#W?cB#A$e6zO78^NBGyTjp>w}YF_kbD<7_i5?t1y3I-`})J##)^l+RnhMY z&qjX$yzHvvr@*z{)ZT2k$ZYXKxN&>QFNLQBX+Eun2eF=-|My>WJ^aOZ?0{R){yx|b ze;t8OFB|fsjF3Naz;1`c`QgO9;v#Te{8JikPyZ{zBlb(a2Apx9xE`Ds zr15A1*J6EX1rOOFc@KEu0dY6@-@gyi7w)lDGEK>Oj*z1_e*TEYu%D-FSiKoQjaD_Fhe*o@xN#)1knc*7$Gw`YA zD!&NNKP|oi_ow_m{1N?6;V}C15}r$c-owcj%bsuW9QyMIzC?dgH_?3BMt>aOF0_{o zoXg;BPzC-ekBQ@jDAHNc=8=w!`+s_g?rN^$)|@SwBz0-mG8e;m^$fD{u?^a~mEMuKqlPJ&2Fz@K^4KZ(u+8 z6TIuH>i>kTd&J3`%D)*XPYdUmCVyu7S5EsDcn;&64^DwTXZZ6j=`RKEXM9}XY21&h z!(Q~?6&}j?HHIs)-nE3=VNVBm`9Zbk316Ni`}@GZXNm{FE9u{V@bf^;=h5)Q9!h9?Se`3Csg}XDKD#M=4zgqAg;->+82l-}jMcQivhtt1KaAwY@J>Zo1 zvmfk@{e$7h-DUqsI4kFuv2e4TnqQOPl_|wD;c153%=feT@Czq#2<%%`yb^wzTD$@F zFD%{$n}0WN>e~YsO)EYGKji(?{C8!|`Pw+W%Fn?&9K@Gl^LN^&zFY9+jN%9I`^@5J zaF%T1*Kpcu;*YS4qxc7$i2cc$%bqFNp9X&BBKeH)P2PJQVe@yKrhR$gi0b0P@GJaZ z63(4UIdCBU4}zQFpJnh4{J#b+@2vWp;4|326E^>D&-8BuoP+sr z6fT6nPs1)XB!2-el3RQY?#}$Z3%5(5^2hMnG~yR!lxPU?(lQQ+Y7d%KZD?6^k)Qom+>0|Z)JQY!l&ua4EQJgnFqh2Kf!Pv z#wQe>M1R)9>*&u`I6dRD8!pB89E9B&pGbHx{W%NIr9YQo^X~}F`FIn~%J{^>SBUpG z_-{(dzk**G)55I(0dBzfe21qKuYci9#HU>g&8JL^PX@R=Rh=W9W}N?7(`|4qnds(FHC_e|y0zk?#-JApVEK1Mr70 zoPzZ$0G^G1robN^ zt>Ad#-2*Pkcz1)FGv0mS-5FJXAbg#89}a&e-u+=m#?uN{$)WnwVe{`+&Hl`V4-xN+ z;V{N$1$>|JSqH~3K3m`d^d}td!}@gqp2GMXhhH;3XJ7~Va}h2>e{R4nS-sof8a`tPwG~hPgCfR1ALDDWP@MQpWJZkjB2kC{2%=( z4lkrX<={Q^rwV+7{?vxezneDgZwPl{e44|}s_FftE&P!4c4xR2=l7oQOx~xw;eNai z41upwJ__!_`@%SQ8|U%K@LzZqd@)G&E`SH{ez62@FjM!NRdChSk`IH2@$aE-huv1G zd@np{k@ztD75yjSi|9WOcji6k3cO;z+P@7~;C<&Id~1%%pTp0w?+x6#sqQ16;Pq$4 zKjC9@RX=%a&7WX?Z;%!~(oFK1;H=nZf$L#kJ~*D=GdRP3*jEZpz&|eVZCB~94nLbF zdt70sS(-16;UPmM-x40YR@?!O9VYgKYdlu{KJbqwDjxuM#UKB{z3|6qcs=uD0$h;s zn+89hA$tR1JN&;0uFw2f4(Fu*Yhe%O$7VPT{kvcv=Er`xJpMoSuN?nJ!FJ4#7&-0UW{<~h&GxwS`Ypu;OfcW^0UoqaK%@t4f z^e+`YM0{kxb?IMr9K-xL<1pf*0NzD>xZ>B-wZ3I>IpU)Vu1I{;#_NcWMmRn3(Hx&9 zKHB0k%!d~)!F=?@?}BuF55Svwe>)5}n5p;}gF7?-6LAppH68b7{Bv=EK-C|NxA6XV zIc`5g^{>Mph>vjmi}|ZkDGCxe2)jQ z|9ry>_}=grHz7TFE5%cBzE`BdainL$IWK5G%7Is$m-FBbyx%T_H*QgS3H*}p8RhXL z+N*}0=zm>&ZJWwB!F9LFE%6f0*X?l~>hFSg@V>k^Zb^NE@Nwp21YSpfd~r1OPsY8e zeE3qXU|Mxtx0gvPPatjXP``>PC;s5eSV$07v{^wY{ocTJ1 z>u}z>h%<8Dx`EGaU5*Wt1D>HksvSI7MmM z16%*@-P%7-oQ3D_?zleB-~DhIp1-~EOvW=BpJzPd@jJ%jkK6G49e_urQ~QB9gz+rJ z5sYUIj?1k4VR$y<*^a$<{@#Zh^86izC-MA!438$h&f?=de_z3==zkn8%6dG+3s{dA zcvpJ$?;XCHLH>%rWRm~jth^sd=An2xSw`upvGwngt?QE!Pi1`^a0Kg<8;7wz1@Rx& zr#P;~`-F118}AdU;!~_o9sH8@X^c}do))+m<7tPRW>J5w|BkHnylTUEdf`i~&p`Zw z@eIe#tj}1Sk@cB`yR$wsa46%Mhfgw|MYsg(vjR6~eb!@d#-_?@d@lXp`d!B%#Lr!vg#F?PE`wj;-sJy?EkF1DUwuDtJ@&6eZ8YBw z>|b`c8v9o|T!{TE3vSp?^;!QNVe5Lu4Ik(E&HC>+Tj#eG=i5U#3Fq6RI63FrGq@$= zy^Ke5-o1s7@jUkc$8#Qij(71q_ZC0oeE0=dT`V($>;Pm5Rc`-{wYDD64oPn<9F;xC*}3**L|&r9Nr z{63`uPS1I_I*wz0>)|`(cf-wTzZEXddA9>za#a2Ait`1?eQ?VA@?d;}^ZQ6#gWs== z!{a!gPr;WsZ_mOzD8B$VVLXdXI{8=OshoF1@m1z;E8fd^_uxf4w4Mj?C7xf7;FR?D zG+s=9FJXJ0A8z91UW)Jgcn9@A!zW08g9kF6&o~F;{e}H#KS_JVlQZK@iCr$M|MoZs z@sZ7>Q$82oOaJrZ;`~0S7_P+iPzJ}--^%zX-ydq>n#6BIoQ?eM_#WeLgS#^Sov^>R z;-v>}&3O9baOP(y{zG{mT$uVN;DubD)377sor50|&p~((UWRuEYChNEQd|$4a3-$j z9ry>om)wuj@O#R`c_j2!|ypC;kEo8Gak>O{r7kU zzsLTDH&Opz{FDAA@1S^EMEz;-XzI^|vy+|!f32wg=fOYt`?Es$I_V`$dD<_Ji_v~H z>_qvx_$+@<;O=bg-~atRL=)1>9oBrc#INS5Kkacz{$8OAp0!8$d*d+D2jL+Hl|I6x z?~{FTB;_aL+mxS)L(8iD`8Z^?%7@^z)V~tf#2fHV#D&>ETf6b9U;bKwpPn?zhC+?_ty3PEh!0*YQ z9+%|rGqd70k-FY;n*98IO+K8J^rCqEGvzOhPd(B8Q3+?D{+hS~<*ompT za~#rmJn#$biQS3M?zkZF-49n^uJYdabXKj;Xk502JRTp3RDOT_l=TR})oDM_
    ^ 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

    _ZKDOVhilAL~^IO?9Kfh;&X($ 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%0AmFDz{*T=Clg~D6U!n1{KcVskq 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 anDOUqH~&!uLfu=3t# +// This code was generated by a tool. DO NOT EDIT +// +//------------------------------------------------------------------------------ +using System; +using System.CodeDom.Compiler; + +namespace Maui_ChartTooltip { + #pragma warning disable IDE0002 + /// + /// Android Resource Designer class. + /// Exposes the Android Resource designer assembly into the project Namespace. + /// + public partial class Resource : _Microsoft.Android.Resource.Designer.ResourceConstant { + } + #pragma warning restore IDE0002 +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt new file mode 100644 index 0000000..93e0912 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt @@ -0,0 +1,22 @@ +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 +animation\nav_modal_default_enter_anim;animation\nav_modal_default_enter_anim +animation\nav_modal_default_exit_anim;animation\nav_modal_default_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 +values\attr;values\attr +values\colors;values\colors +values\strings;values\strings +values\styles;values\styles +xml\microsoft_maui_essentials_fileprovider_file_paths;resources\xml\microsoft_maui_essentials_fileprovider_file_paths diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props new file mode 100644 index 0000000..9cba96b --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props @@ -0,0 +1,31 @@ +aotassemblies=false +androidaddkeepalives= +androidaotmode=interpreter +androidembedprofilers= +androidenableprofiledaot= +androiddextool=d8 +androidlinktool= +androidlinkresources= +androidpackageformat=apk +embedassembliesintoapk=false +androidlinkmode=none +androidlinkskip= +androidsdkbuildtoolsversion=35.0.0 +androidsdkpath=c:\program files (x86)\android\android-sdk\ +androidndkpath= +javasdkpath=c:\program files (x86)\android\openjdk\jdk-17.0.12\ +androidsequencepointsmode=none +androidnetsdkversion=35.0.61 +monosymbolarchive=false +androiduselatestplatformsdk=false +targetframeworkversion=v9.0 +androidcreatepackageperabi= +androidgeneratejnimarshalmethods=false +os=windows_nt +androidincludedebugsymbols=true +androidpackagenamingpolicy=lowercasecrc64 +_nugetassetsfilehash=3c1120c81d76185461b97b2537071fb4c0872fc9d5f1c1dce4150dcdae4bcbd0 +typemapkind=strings-asm +androidmanifestplaceholders= +projectfullpath=d:\changeframework\how-to-display-more-data-in-the-tooltip-in-.net-maui-charts-\maui_charttooltip\maui_charttooltip\maui_charttooltip.csproj +androidusedesignerassembly=true diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache new file mode 100644 index 0000000..9258c1b --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache @@ -0,0 +1 @@ +obj\Debug\net9.0-android\lp\103\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\104\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\105\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\106\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\107\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\108\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\109\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\110\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\111\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\112\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\113\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\114\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\115\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\116\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\117\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\118\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\119\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\120\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\121\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\122\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\123\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\124\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\125\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\126\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\127\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\128\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\129\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\130\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\131\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\132\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\133\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\134\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\135\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\136\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\137\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\138\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\139\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\140\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\141\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\142\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\143\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\144\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\145\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\146\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\147\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\148\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\149\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\150\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\151\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\152\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\153\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\154\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\155\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\156\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\157\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\158\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\159\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\160\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\161\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\162\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\163\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\164\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\165\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\166\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\167\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\168\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\169\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\170\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\174\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\103\jl\classes.jarobj\Debug\net9.0-android\lp\104\jl\classes.jarobj\Debug\net9.0-android\lp\105\jl\classes.jarobj\Debug\net9.0-android\lp\106\jl\classes.jarobj\Debug\net9.0-android\lp\107\jl\classes.jarobj\Debug\net9.0-android\lp\108\jl\classes.jarobj\Debug\net9.0-android\lp\110\jl\classes.jarobj\Debug\net9.0-android\lp\111\jl\classes.jarobj\Debug\net9.0-android\lp\112\jl\classes.jarobj\Debug\net9.0-android\lp\113\jl\classes.jarobj\Debug\net9.0-android\lp\114\jl\classes.jarobj\Debug\net9.0-android\lp\115\jl\classes.jarobj\Debug\net9.0-android\lp\116\jl\classes.jarobj\Debug\net9.0-android\lp\117\jl\classes.jarobj\Debug\net9.0-android\lp\118\jl\classes.jarobj\Debug\net9.0-android\lp\119\jl\classes.jarobj\Debug\net9.0-android\lp\121\jl\classes.jarobj\Debug\net9.0-android\lp\122\jl\classes.jarobj\Debug\net9.0-android\lp\123\jl\classes.jarobj\Debug\net9.0-android\lp\124\jl\classes.jarobj\Debug\net9.0-android\lp\125\jl\classes.jarobj\Debug\net9.0-android\lp\126\jl\classes.jarobj\Debug\net9.0-android\lp\127\jl\classes.jarobj\Debug\net9.0-android\lp\128\jl\classes.jarobj\Debug\net9.0-android\lp\129\jl\classes.jarobj\Debug\net9.0-android\lp\130\jl\classes.jarobj\Debug\net9.0-android\lp\131\jl\classes.jarobj\Debug\net9.0-android\lp\132\jl\classes.jarobj\Debug\net9.0-android\lp\133\jl\classes.jarobj\Debug\net9.0-android\lp\134\jl\classes.jarobj\Debug\net9.0-android\lp\135\jl\classes.jarobj\Debug\net9.0-android\lp\136\jl\classes.jarobj\Debug\net9.0-android\lp\136\jl\libs\repackaged.jarobj\Debug\net9.0-android\lp\137\jl\classes.jarobj\Debug\net9.0-android\lp\138\jl\classes.jarobj\Debug\net9.0-android\lp\139\jl\classes.jarobj\Debug\net9.0-android\lp\140\jl\classes.jarobj\Debug\net9.0-android\lp\141\jl\classes.jarobj\Debug\net9.0-android\lp\142\jl\classes.jarobj\Debug\net9.0-android\lp\143\jl\classes.jarobj\Debug\net9.0-android\lp\144\jl\classes.jarobj\Debug\net9.0-android\lp\145\jl\classes.jarobj\Debug\net9.0-android\lp\146\jl\classes.jarobj\Debug\net9.0-android\lp\147\jl\classes.jarobj\Debug\net9.0-android\lp\148\jl\classes.jarobj\Debug\net9.0-android\lp\149\jl\classes.jarobj\Debug\net9.0-android\lp\150\jl\classes.jarobj\Debug\net9.0-android\lp\151\jl\classes.jarobj\Debug\net9.0-android\lp\152\jl\classes.jarobj\Debug\net9.0-android\lp\153\jl\classes.jarobj\Debug\net9.0-android\lp\155\jl\classes.jarobj\Debug\net9.0-android\lp\156\jl\classes.jarobj\Debug\net9.0-android\lp\157\jl\classes.jarobj\Debug\net9.0-android\lp\158\jl\classes.jarobj\Debug\net9.0-android\lp\159\jl\classes.jarobj\Debug\net9.0-android\lp\160\jl\classes.jarobj\Debug\net9.0-android\lp\161\jl\classes.jarobj\Debug\net9.0-android\lp\162\jl\classes.jarobj\Debug\net9.0-android\lp\163\jl\classes.jarobj\Debug\net9.0-android\lp\164\jl\classes.jarobj\Debug\net9.0-android\lp\165\jl\classes.jarobj\Debug\net9.0-android\lp\166\jl\classes.jarobj\Debug\net9.0-android\lp\167\jl\classes.jarobj\Debug\net9.0-android\lp\168\jl\classes.jarobj\Debug\net9.0-android\lp\169\jl\classes.jarobj\Debug\net9.0-android\lp\170\jl\classes.jarobj\Debug\net9.0-android\lp\171\jl\libs\ED64959F88B22E6D.jarobj\Debug\net9.0-android\lp\172\jl\libs\2E7FD15AFA9B216B.jarobj\Debug\net9.0-android\lp\174\jl\classes.jarobj\Debug\net9.0-android\lp\177\jl\libs\F975D0960055A5E3.jarobj\Debug\net9.0-android\lp\178\jl\libs\B71CFF5D5A0B3AEB.jar \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache new file mode 100644 index 0000000..8e6f4ec --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache @@ -0,0 +1 @@ +D:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\libs\repackaged.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\171\jl\libs\ED64959F88B22E6D.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\172\jl\libs\2E7FD15AFA9B216B.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\177\jl\libs\F975D0960055A5E3.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\178\jl\libs\B71CFF5D5A0B3AEB.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\173\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\175\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\176\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\173.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\175.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\176.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\proguard.txtobj\Debug\net9.0-android\lp\0obj\Debug\net9.0-android\lp\1obj\Debug\net9.0-android\lp\2obj\Debug\net9.0-android\lp\3obj\Debug\net9.0-android\lp\4obj\Debug\net9.0-android\lp\5obj\Debug\net9.0-android\lp\6obj\Debug\net9.0-android\lp\7obj\Debug\net9.0-android\lp\8obj\Debug\net9.0-android\lp\9obj\Debug\net9.0-android\lp\10obj\Debug\net9.0-android\lp\11obj\Debug\net9.0-android\lp\12obj\Debug\net9.0-android\lp\13obj\Debug\net9.0-android\lp\14obj\Debug\net9.0-android\lp\15obj\Debug\net9.0-android\lp\16obj\Debug\net9.0-android\lp\17obj\Debug\net9.0-android\lp\18obj\Debug\net9.0-android\lp\19obj\Debug\net9.0-android\lp\20obj\Debug\net9.0-android\lp\21obj\Debug\net9.0-android\lp\22obj\Debug\net9.0-android\lp\23obj\Debug\net9.0-android\lp\24obj\Debug\net9.0-android\lp\25obj\Debug\net9.0-android\lp\26obj\Debug\net9.0-android\lp\27obj\Debug\net9.0-android\lp\28obj\Debug\net9.0-android\lp\29obj\Debug\net9.0-android\lp\30obj\Debug\net9.0-android\lp\31obj\Debug\net9.0-android\lp\32obj\Debug\net9.0-android\lp\33obj\Debug\net9.0-android\lp\34obj\Debug\net9.0-android\lp\35obj\Debug\net9.0-android\lp\36obj\Debug\net9.0-android\lp\37obj\Debug\net9.0-android\lp\38obj\Debug\net9.0-android\lp\39obj\Debug\net9.0-android\lp\40obj\Debug\net9.0-android\lp\41obj\Debug\net9.0-android\lp\42obj\Debug\net9.0-android\lp\43obj\Debug\net9.0-android\lp\44obj\Debug\net9.0-android\lp\45obj\Debug\net9.0-android\lp\46obj\Debug\net9.0-android\lp\47obj\Debug\net9.0-android\lp\48obj\Debug\net9.0-android\lp\49obj\Debug\net9.0-android\lp\50obj\Debug\net9.0-android\lp\51obj\Debug\net9.0-android\lp\52obj\Debug\net9.0-android\lp\53obj\Debug\net9.0-android\lp\54obj\Debug\net9.0-android\lp\55obj\Debug\net9.0-android\lp\56obj\Debug\net9.0-android\lp\57obj\Debug\net9.0-android\lp\58obj\Debug\net9.0-android\lp\59obj\Debug\net9.0-android\lp\60obj\Debug\net9.0-android\lp\61obj\Debug\net9.0-android\lp\62obj\Debug\net9.0-android\lp\63obj\Debug\net9.0-android\lp\64obj\Debug\net9.0-android\lp\65obj\Debug\net9.0-android\lp\66obj\Debug\net9.0-android\lp\67obj\Debug\net9.0-android\lp\68obj\Debug\net9.0-android\lp\69obj\Debug\net9.0-android\lp\70obj\Debug\net9.0-android\lp\71obj\Debug\net9.0-android\lp\72obj\Debug\net9.0-android\lp\73obj\Debug\net9.0-android\lp\74obj\Debug\net9.0-android\lp\75obj\Debug\net9.0-android\lp\76obj\Debug\net9.0-android\lp\77obj\Debug\net9.0-android\lp\78obj\Debug\net9.0-android\lp\79obj\Debug\net9.0-android\lp\80obj\Debug\net9.0-android\lp\81obj\Debug\net9.0-android\lp\82obj\Debug\net9.0-android\lp\83obj\Debug\net9.0-android\lp\84obj\Debug\net9.0-android\lp\85obj\Debug\net9.0-android\lp\86obj\Debug\net9.0-android\lp\87obj\Debug\net9.0-android\lp\88obj\Debug\net9.0-android\lp\89obj\Debug\net9.0-android\lp\90obj\Debug\net9.0-android\lp\91obj\Debug\net9.0-android\lp\92obj\Debug\net9.0-android\lp\93obj\Debug\net9.0-android\lp\94obj\Debug\net9.0-android\lp\95obj\Debug\net9.0-android\lp\96obj\Debug\net9.0-android\lp\97obj\Debug\net9.0-android\lp\98obj\Debug\net9.0-android\lp\99obj\Debug\net9.0-android\lp\100obj\Debug\net9.0-android\lp\101obj\Debug\net9.0-android\lp\102obj\Debug\net9.0-android\lp\103obj\Debug\net9.0-android\lp\104obj\Debug\net9.0-android\lp\105obj\Debug\net9.0-android\lp\106obj\Debug\net9.0-android\lp\107obj\Debug\net9.0-android\lp\108obj\Debug\net9.0-android\lp\109obj\Debug\net9.0-android\lp\110obj\Debug\net9.0-android\lp\111obj\Debug\net9.0-android\lp\112obj\Debug\net9.0-android\lp\113obj\Debug\net9.0-android\lp\114obj\Debug\net9.0-android\lp\115obj\Debug\net9.0-android\lp\116obj\Debug\net9.0-android\lp\117obj\Debug\net9.0-android\lp\118obj\Debug\net9.0-android\lp\119obj\Debug\net9.0-android\lp\120obj\Debug\net9.0-android\lp\121obj\Debug\net9.0-android\lp\122obj\Debug\net9.0-android\lp\123obj\Debug\net9.0-android\lp\124obj\Debug\net9.0-android\lp\125obj\Debug\net9.0-android\lp\126obj\Debug\net9.0-android\lp\127obj\Debug\net9.0-android\lp\128obj\Debug\net9.0-android\lp\129obj\Debug\net9.0-android\lp\130obj\Debug\net9.0-android\lp\131obj\Debug\net9.0-android\lp\132obj\Debug\net9.0-android\lp\133obj\Debug\net9.0-android\lp\134obj\Debug\net9.0-android\lp\135obj\Debug\net9.0-android\lp\136obj\Debug\net9.0-android\lp\137obj\Debug\net9.0-android\lp\138obj\Debug\net9.0-android\lp\139obj\Debug\net9.0-android\lp\140obj\Debug\net9.0-android\lp\141obj\Debug\net9.0-android\lp\142obj\Debug\net9.0-android\lp\143obj\Debug\net9.0-android\lp\144obj\Debug\net9.0-android\lp\145obj\Debug\net9.0-android\lp\146obj\Debug\net9.0-android\lp\147obj\Debug\net9.0-android\lp\148obj\Debug\net9.0-android\lp\149obj\Debug\net9.0-android\lp\150obj\Debug\net9.0-android\lp\151obj\Debug\net9.0-android\lp\152obj\Debug\net9.0-android\lp\153obj\Debug\net9.0-android\lp\154obj\Debug\net9.0-android\lp\155obj\Debug\net9.0-android\lp\156obj\Debug\net9.0-android\lp\157obj\Debug\net9.0-android\lp\158obj\Debug\net9.0-android\lp\159obj\Debug\net9.0-android\lp\160obj\Debug\net9.0-android\lp\161obj\Debug\net9.0-android\lp\162obj\Debug\net9.0-android\lp\163obj\Debug\net9.0-android\lp\164obj\Debug\net9.0-android\lp\165obj\Debug\net9.0-android\lp\166obj\Debug\net9.0-android\lp\167obj\Debug\net9.0-android\lp\168obj\Debug\net9.0-android\lp\169obj\Debug\net9.0-android\lp\170obj\Debug\net9.0-android\lp\171obj\Debug\net9.0-android\lp\172obj\Debug\net9.0-android\lp\173obj\Debug\net9.0-android\lp\174obj\Debug\net9.0-android\lp\175obj\Debug\net9.0-android\lp\176obj\Debug\net9.0-android\lp\177obj\Debug\net9.0-android\lp\178 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_BuildLibraryImportsCache.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_BuildLibraryImportsCache.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_ResolveLibraryProjectImports.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_ResolveLibraryProjectImports.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp new file mode 100644 index 0000000..7786faa --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp @@ -0,0 +1 @@ +061DCF5BF8C87518 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml new file mode 100644 index 0000000..dc1e263 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl new file mode 100644 index 0000000..b7ed474 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl @@ -0,0 +1,19 @@ +/** + * Copyright 2023, 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. + */ + +package androidx.versionedparcelable; + +@JavaOnlyStableParcelable parcelable ParcelImpl; diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..e53e921ed517884994e0f86a52c75030625e79c9 GIT binary patch literal 33348 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

    }Cy6nRw&xj+X@e|3Z13ZK1$li2HT*?1Pg z&Y$L&QJheKSzi>F^4@!q#>t6S6Oy6fNE~@sTn*SCzsL`KXbpRq*;zl%xJ$72mKzj$ zY)2Dr0TphU+fi+y-#fVWur*h})Ph&mY8l7&rBkii9&E-!pj!3e`j} zBlzUvRr3{qaLXBX>W-GGmBpVLKa$}+^4+@RyG5>_Vs|5miuQCvg83@Bjf=bpLKcLR zmQ*P@@aQ1py?X#Uu(0;$IdAI#Y0eP{uJ43%9u;9jI~i6cG!!Gt&eTR}mqG*i!kKV~ zn(362Bt7bW+}nbvRg%l4lF9rUIa1&#W90~4b)mt&`TC+Khw6FV^Jr2EfIr%h>7RBl7@h`6wN8Z0zGM%P` zkfLfj?u5M1Z}bl|4r!Wk`sCSPmzPl#$_Yzfp)#dD#i-8G1lt8jLx068aFA*eV54lZ zZzY(r;H9>qj=P-^+5G;{3`6=WDbGi7srh8%UXtVwacT30uW6r&)t9 z4yso$Qbi`){gXrbR&_`H>T99%t0pfp3Lin0TIan|o$u>ilI^u8x z?IoVZ5l^XLH^*l>ql~*}4p$K+e4oX0B#C8>!^ppshFyL3F@tJY7$;}n^0H$})*@@6 z${G}=@b3to^3JY10tqj5(0|#z#E+CT@>9MCVjhKmDr&Q0#m3VCC?%{-9g*eAY3)%K zzJt{GfA@y*@)B^nH5+ek9cX@{_r7M18t}~oAoTYc$4O$w6F82nu4!}r8c6& zOX*3!xkm(%7qvoKkCY$botG2L5wN5m~25y)=zp_ zokCwi(BsSE-df5R2mEj9TvlxHMX*n8;rK7FL4$Iy23N1QS}V|?QB+vgWMnzMkWPK?WM_w~M39j@&&=`VsiE0ldt2!~GrEnj+HJ{}=Z zPx@H6H2mIOa|98DB$8F+lA%H=GrqmZaD)+3nB^!~Ea%l6nrmaYnZyqj9&os&i~Of2 z_}#D~+iJK|!TU$0$ZWey7s75@zRthA^Bd3egV8s77zw#8bg%N=vV9~kw< zT79r-*1pqUdW(Cm-$mdKL4C~25$Ym*U4^QMsZy3wz$*iilv)_2k^f~tJ(LA5Ox2<^ z{9Kj7g)lKX_>neMn0|qCg3uYK(2Jkg*}Y#{##5MPqGV6CGfakwdfmqPb!f}+_P94M zTb|vm-{L5NsrQ32mrJ2=dc-xv0}%S#$67`{WPg;Lp3oIlx>_kIJK=0Z@5 zmoI+;lbw_|glG4Y>CbJ|$%_I>g-$Mt1(K2*996nP@xr5HnBhw`QXjA<7&BqH(F4BM zz?V%D@U1%`5bGb>gJOb^g;t=(W{V&w@O^&d2=27wSz*79y5TU+{316Ul-5MR32wbp zFoDjIZPOsn0|*1$aJq3Jm#qDG!=^U-PC*~H;BGmNNFH?qc*3U+^rZX7Q8~#LnJK~! z!y&MtW_2jf4-&B1prRP)?Zg8V2s3bsis=$_8&j6p2zyiYj={MktVZaz)ewGs#XnS+ z+$*DobD&`DebRg8*$On5D1xMou(b;q3ND3KkZurSEzUs5LMvkao?J#vDCuezFh-z> zQ1p~irl=vDrjUq`g;Nyz%2nQwZPIjqwKmN~+pAL})N7|P8buSsg@*oLsV3eDn?NjmSHw^T*_jv3Hc;3zwCkhCR!B zs&_Z-l+X)-7A)yIdzU2Z4JER#;96hxG{_4F_lV6@{R>G)$d7Go?{uDBmqVmC=+#H9 zAG;q_7VVP*5Sd~xpOSBaxuSV@KH_s#+g4`y6<(#;(@BAF!ar zeuMvsz%8!Y6@IV<5RbYHqvPhOoI%+Rf~ba@{WRwBZR6+;qAB2rq`i0zL}cG-r^(Yk zg+@h!Rk)e@qmt<%3c?0%wrS1-uXkPVSneVh!UkF)Sm41tpbMes4(ja;A{(hl`0ni$ zA{(`+@c6YCLIaPW;>{yf&`1z+MNj|JN?zbO+* z2^QZzV*fJprJVDyY~5VzWyhAI@VkgvP;rT5aFQ0~0HYIktqA4pD06bJf#3w|n;IMx z3ekJp5Cm*7r&XGA;RILJ*6%&7ufq*RZ9c+t2_HMl-wf0Jfztg)h=B9XW|0RB3=9d( z*%^#P7|g%FJt6O9JOS#pZZ2Vb0Zu`0T8gyJLkslH|fi%E$i7`o$o-G7_`_C5D5il zfxhNm)K26Pin=B9vAHtpS>_bX)d2UhQkz{oN;(Icwz`5svt&5w$&n_wLC^)TGA5Fm z8GF;xHP+Aj1q(f>(E`Nmi-jrV$kCw2;A`L<@wJWURfwmuR!9Mg7pN$Z5#^?=QI@v& zbn|)AqMd-bvc{#42A|R8z+={y6|FgCM`faRb9mf>lnvgCixlhdKs?0T#Hcom0F+MSn3k^~mEh`69YnfK%J=Pts)8UG z43_am)&|X8c}ISXEbiF)WUFiyDsddaup5OT2gj?zHSu#UtaV3E{Au>N%3c>q>wWRj z=RL*GV(XQsO1#jL%8|Kr*t9}$P{8T$@l!pG-N)-hlSCh&!UKZ7NwVxI`c8PbK{w`} z@^J)vsmmC39 z*QL)8V=r39C-ff55ap_U?)o@_U$S%wVbk^Y%yicK87*tm4EET=T(4-}G5-v21N{dx z`lqgo%115<&>uVh$1WwL$WJXMElm3-o|@+0aHnl{yRDJFY%!dHpzce{2!mwzf1p4E&NNm=%d)XW(-0UwGZI{32^4Co5_cQr@^7NMnzU$xf z_}^2hKP*1(zyH|&7{h)aD*vKlctyMIelF( uKV7y>Uj=0t0=yZS?3r;{3bYvtwlsnmSe+2y&B_LnWCTKIAYBaNFaQA4NIGo* literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp new file mode 100644 index 0000000..34521be --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp @@ -0,0 +1 @@ +6B7CAB57EF76EAFC \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml new file mode 100644 index 0000000..e625bb0 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.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/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..baa0ace6e585f4af48d763f6bd4af89c5afdd50f GIT binary patch literal 4175 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..36657a1676833666108cdf3438009a624ad385af GIT binary patch literal 204 zcmWIWW@Zs#U}E54NSHP=YH8oJC*}+c4E8`Q%D~A`lv=D`mY7otr}Qdvb3#K{85nJQ zxHC3yTz}$hpoX`u*10q1H-{QsF%AgwIO~1R|Ku6(?V(z_o|m@KlctyMIelF( uKV7y>Uj=0t0=yZS?3r;{3bYvtwlsnmSe+2y&B_LnWCTKIAYBaNFaQA4NIGo* literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp new file mode 100644 index 0000000..b9cbc58 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp @@ -0,0 +1 @@ +09A8E667A6A2EF29 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml new file mode 100644 index 0000000..ca4f028 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..bd8164d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/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/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt new file mode 100644 index 0000000..fddb3a8 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt @@ -0,0 +1 @@ +int string androidx_startup 0x0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt new file mode 100644 index 0000000..ea3d5d7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt @@ -0,0 +1,4 @@ +# Baseline Profile Rules for androidx.startup + +Landroidx/startup/AppInitializer; +HSPLandroidx/startup/AppInitializer;->**(**)** diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..90d5279ec5de6a10c0ef1efc6ca36cf08fb46f7a GIT binary patch literal 6788 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 v=`X*D(); +} + +-assumenosideeffects class androidx.startup.StartupLogger { public static ; } diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..2bd21bef07cc32b46fa3abe6d8812c74eae5057d GIT binary patch literal 261 zcmWIWW@Zs#U}E54NSHP=YIok^hyn%%hDksy%D~A`lv=D`mY7otr}Qdvb3#K{85nJQ zxHDYO81fx5;AwrhcX`L2%a?i;J^Pz{9xw7(*_^}v^+zvD$M${k^W*#W?lA9sc8c-Y zN3On#wVI!e9X7u$YF6co^T?h&)r4=|`PH8KGLQWjCrrLFr*F4Z*H&>0;S}AB9~yt} zZ_sf3lls{F^JVv!f4+S85AbGWvS-HSTA-7mU`r#2fz|B+-mGjONk$-a2GVOl90mX# CNm~K{ literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml new file mode 100644 index 0000000..2cc6f92 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml @@ -0,0 +1,4 @@ + + + androidx.startup + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp new file mode 100644 index 0000000..db89f5c --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp @@ -0,0 +1 @@ +30DF70518BA80848 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml new file mode 100644 index 0000000..b4e1ab9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.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/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..313d439e08045c83d9b9dbe7ad07c14635eb2654 GIT binary patch literal 1300 zcmWIWW@Zs#;Nak3U|>)LVg%4+;AKe6ODW3FOsUW>D9TUE%t_76D=taQ$w@8JPt429 zFG(!P%+D*4Pj+q1nK>Eih<$n-SfeVJw(_)?5<~>Iyw01v75GU9p`2(TpT;8 z?Iqh>%Rrt?-88{v9G;O|xBmZKrm%lYih5&N>D~7yXS7^jKl^w)dwapBmk;eWKU+0t znQNWZkJ2B72`ghI^bn=3nKifiCp*@$bNQ7fyp``=%Esc=p`b)uhK zoBgRrW@kfY`LDJ(9b#E>#m0Ba{XMn8uX4Sz*X_@mnq_r*)nSwMeQVx-w2@0ItTX?z zuQuHC>%m_Z5j+doJ3sGP@yKiWmy#7{)t#q>_w9G>RDez}I)AuHT<5crkFKfA}rMZ{%ec0CLyt982xqSP5 zxjU8DVi$8+8BMugreeHv?IJ_ToA+*9f2zLnvz6*K9bPZ)rB`=vnI|hXwe{4i*vPk& z9V-{^>6s>eu3clbUFy}cXhw6Ng2OCO!bk9S-HL-z5!~5{x@%0+a(~A(=x$)$c0laL zK9y~!mokD_OwkFyC*9CvXNPjKxo&Th<t^qwWIM zEe+euw|re(t(I9cUHr0^FW+nR?`Kw-NUOQdJ98@N>D38#D^kKlpT=D-y5_iiTix^M zIe!XMw%W+PF#l8Y$u98Y=ac?i6+hps{Ga}Dk*uS2QyI(K6V@5-+wN@b?sN)oShpZw zcJ2B5zRLri%oi1MJ;_&{aC}BLH?Qo4&b)|%OuIk7g1YPZGH=}2DKq)a3!nL&FH|2-+;(eU%AZ4b zB0@N9dFS5 w!`zI8fuXd6fg!+~kx7IBQ8ppVfyyRSKwe1|;LXYgGKUceQ-Jg=pxq1%0E^j9%K!iX literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..348614d030de870b48c9e15d52c343ab8e12c8ca GIT binary patch literal 47517 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp new file mode 100644 index 0000000..976f309 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp @@ -0,0 +1 @@ +FD24BA5B54543869 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml new file mode 100644 index 0000000..cceae92 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/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/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..ae9d872d77f99999f169c44c0579bedfee15c61a GIT binary patch literal 6270 zcmbVQ1z1#D*B-h{7&@fO0i-1*rE^52M{!=?-ZGX#^$Z z$M0Uhd#~S(=l*M+b7r0A?DekwoU_-v*Lii+F)#uDF=kw5^k2MR&UjaU5SW#lGt|nP zU*|7}5&wP|#Ld#~Z^n}U&sa-mH|xI%p#Sp#Yj0~yxQDabeWS)JC z3N^PCyD_&WtqeOWY^v3_%R(>GnU<5JjzeAFm8lgk71!}3nkT5SZ%oatqf^A;Z1)`= zPRyBm4MYT7e10DdkWu6gq(t%H7KuL=MM7X@)6beu#os$QNtfQQQ3>yo=WTeF!RKbX zY*b-kM>nB4*YtK!BHcu1us;Tdok>aJGv(soq?nZ@62S$=V&IXv&Dl0(Bg&xyW>VCK zQZ*13%?9{boew_5isKCs8ee)!V*o*0*kKJQG8z?=uec5oOoG`qKFZF7J4ga+8AB3S4f ziBUf7#a>DVw7vO`)RY`1BKr{;e<`hSao~PKi^#{U1IxrpCs6oi`t_jqDebK;nTxoq z{bTAZ4zP_Vty}2=n!T%KuoU99SE+?O2Ztrr{m+P4+elL@4SI}iwZu9c>rpIQFG?^J zq->$Hh6^=(69|EovP~hlyyEJTR?rhWN;i)cSubwEKF7H{F-;0V%zeJCx;Gt_Jx6R5(?1T2>={(YnlD{` zZOytumzROfUs`ey%xVh7<4JgNKku5-E6ZJaAEt?j1%s!3#@5E<6L1zYyPpafS1zW z(7L@`;+I5%fK2kF}^>uz@mu5>eJ z{D{K?^Ltso8uqgLUAV^k)clG9!X5Fqy0@icCbjQUNac<@m8m8Yd%%&|4_Cph*eOnB zYP;#>8c9wGFr`6BAN6JeVTagq>^T{xp~lG0XlO*QZHb(xq1mXUm4c+z@HaH)BfL_Z zAvK`|olhc$pFjzD6Syt%Y>B6gvG+oyzp~V=oDlXj#5YrQe^ojhYWv2m3TBEPXtZlP zXyyn;U4SCvde;d&F43Pf4=fGk&B%_dNK1TRQENUmdm(wW!#(X@Z^ZIc`$S`Xe zF((pfeY8EEZtDjtqj#2OwuKf5Xe);^js(eEx8SjjHv{G_2cT9c6ffh3h6`0TTg883if?JFNngxeLcn!_2&>WInbH?2w@%oK=K6l~{2*6hY_ z!3)PDSzdz`>PHq|M~{A`8FbTsQg~6(II2= zi|4Y&`SW33D#lrI7Tfl+@MBgr?aTQewEqjgmITG-%v|jec~=}O_7D83Xl(<5J9_+{ zV%cu~Lb8eAZ7p&+3Texid2q54TwJcu!kNGuO6Mi!z_3vYjV$Qfa+^s82t-od(-t_d zM$Y||P3AF)bz>Df*D&=IlVp|Gj`YXADap^vA8U63YkQ)R?kc%4!Y+(d)c7V6h+PRk zN|G&5?-vZnQ)$SZcO)fP`v+ysD#$#C7whe!Ud>( zYfo@sJ|-}uUD28+rMTxQyrxHi%#gKD+$ImYJ5*!cq*-D-DKO=E!g*UZrVY3mdGwxY zl35K#nh`xrVTKyG!JDRdu}@tRndeHJumUB4A&|<``Q#1?Y%N@;9IL@-hgADe$eWUH zW@eGOD|DG$_D8I!V?U@SR@tmSLw#mWH8Jbl6I~>1+qBKKEd#kJ=5d~naGho0Ki(;e z$^H7_IiXYXgB|cXZhfIsoznvGj^Lpq{@pk&rD=rSFr%e8Zz@}X>H#6E)u?P1@}~6y zV?NF6gn2Wobs_B}ifVQtZ2V+vl_&D0d-)c1)2b5pg}MYj>~o?nOjksYdO6*iYfwgf zAYlWw-qlW{(#F0R=|~m6{xdn{g524`M6=ZIrV=tpxe3LXjj;42_;8D&=JXjUIl_Y-2 z-6Z5{zzDS;ebMiHZ;>VwV_zdDUe+6tbZ0Vdl+8|17gTpQv=a>gkjDT3Wd9%aBIg1X6jya}as0J8(bIGuxlQ`enDeG9 zdO||9ys@1w2@#F~I&s$Z+``A9R#@QT4`ThdYv;C*)eMP`usDkukI~M#+9wTl3F;r0 z&Q1Az-uJZm*fmhK3&>mu2xiA*ws#sGA~lrJ6Jn37WLljWB4bavyIokDK65Q@; z+<(p;um7g%72hDEp?bhXp>UpXd;a6|E;Bsgk8^K1_&!$v=dWE#!4_&CY~NIGt^Bq? z*FG`a*yjh9a2R!oaPYUk^pwZpy^+=dVBsR~_6gJvHebV|WnbsRH18sMCdRu7diJtW zUY8pUmbB=lmPDE3&^V4W`DX4wEzqGZ1fHj*gI;wxEfU^ zAC%_s7m{v`g7aY}6%JBPjcJVo1=~|jxI{*P7kh7IslYQDITa(`wm%~R^mP%0-?BucZ3r^qPx|}NaP3KY9qlU#zx%r@6E5VG?3Dk z2(UM8?i*zAai29x%zGQi8L2l8cS1Z>lo$cO;t_@=gPTQ?9r;i&Y5pc)Z$c3MT7d`s z8#y#5=qL|=egS5bbfy~)@p34V>616DE8=*WYe*BwUiO8J);|8Fc+^c>^`+cEiTq_6 zHq663yf!yJGDqXe;)ZdEcKs?iQj%JUDat`Sdzmd0xDF%jsoSX>-b_zw7DP4gYO)E< zwA&S86nLa}(jbWAT~6H!{d;d>#XaR%>RD?gT)0CUP_le0-I}O295*;=uJW?!WT4PL z;DsgWM@$yNMx*;2&s9XZ!1ae-jIv`ca$PZT(M~{%ooYSsSF#8Ta9eVes|m&A4C%Z} zN2U7y#w!yUX^|fJ)jQ>V`J4pkEDTDt1;Qqj-rrQuZ0x2a+(nyEjtD4V6m+g%R^Vy+tYcYySx!BVmwxE2Hq&Dt*E{ z<4ZYvFO$diQi(C#(Qz1|sZ`OX&(}V#W16s2iUhu>TE2^Exg+s z%d%+O43^zhna4^p@_ooBv74*epdCEMjv>rlt`~3Uah6(<*~T9WICyIqJcym&h8nZj znbP#e#wX_8+5nC|^~Iu2kaqHZHa(FHdDQx1Y(!h?-A1-(dw%*+%GAyntszknhtvC$ zI+5CvMH=qx0v z4&(d+ji(rimT3Lnys;|wkj(`4MnA_BiqN&WFxz*o>bK@*FyGoHN}6@#*RQcPv9aj3O_y14N9(}|;@xIR!!2bqi{=o|u+k3Ow#yBqBrs~R%Kii;Mq zDXN!*N<@iFg4~k`zPwp%=D&W*D9;;!=zgeph6)J<_H5l(*nPNlnIH)A&bag%Byk~x z80{>nFS{1pbIKxo4$cY`&r7@@(*qjcng2NX=vF3gFQv@&$kB)N())9!DDBMSofX-! zp?#e7M;rRZJJ&s2i@Wgjr2slg@R$~+)(IU}f63(A{K~GO<)(4YlQbrmc((fOd5WXH$# z1#3rII(^S3vA%?#zL&$I1!jcxZ_=4Z5qB4pYJUQu5-~f!ceX9k zFLX}4yCm&)7HUm6)jgt=J z6s+iro0>zmEb;G6QANlcW1Q=DHW&v2Lo0heq}+1fz4fub|J(V|1Qqffx#KC&o3ygEEFahN#h)#6d8WeG=OVMvH+wj{>5|9khkhPLX6@q#R}E!F4Q zCJpxbz!!{;p-5luiy-?TND4jXfe!et`Dt8en#pGcGTf%J1ggE;zF}aS5OBXs!%mU! z`fEigS7oVLd*$a08jF?rG|Dq*Uc@ygLs0#x8Y=rcjy-laWwru9#kO_u54+}~RD9J_ z*8;Ng6y^~W`VV)Iip>YlM^|f>8I&jqsy~H~`)+RUyfj#byVp)l&lWdl6X@MlTPI37 zYu?i=8P+v>GT4rRtbb%1*CRe*n46Yx`!M&-3p#DrFay!Z8}hy8t<8gM2x!;_b$S<3 z*!Xocp*lQj4_GqWiYUYeEJ+vigy4F|Ep+l%eK@qNCq)N%ecBZUEs%soA;Hx#@)g!O ztCF-3xqUJXDP>~q!scs!$+Tb+srD+L8!>NL-V?F8b^6F2#&_nbyQ+ItXjn#h?hZE` zFlsC?hH;Ulvgbye8T!e5ru*YkED>7Ql)hSm3Rj1~)uE{bmIJA3Df9mjCi%WAj(p!$ zMDy<_kQ*H40d=zG^R#wzhdRS}Rd4hg=+vs+Q0uQy>*rU)B7d!v=fj>-Uu3YVl)_#F zDN^c4Iq`v|+$#EnkEL{iRiwn8i2uo&6aweF>eSHC0ava2cl$GO^p`sTz_#3X@5hX; zG|9gX`!1ILux&ZcEBC))ze=Zn9s6B8{bAd3`d98BV}F%W{~F-CnEJ!E<$|x=KLPli zwE6?-&&AarNV$mSe?a(C3C$JsQ+cMU&!_66hBk-Zz-^@{e6o6CGPLo)c*na^@aRYdq1!NfEbE@ ZUx_;ESXZwR0KmWcX literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..36657a1676833666108cdf3438009a624ad385af GIT binary patch literal 204 zcmWIWW@Zs#U}E54NSHP=YH8oJC*}+c4E8`Q%D~A`lv=D`mY7otr}Qdvb3#K{85nJQ zxHC3yTz}$hpoX`u*10q1H-{QsF%AgwIO~1R|Ku6(?V(z_o|m@KlctyMIelF( uKV7y>Uj=0t0=yZS?3r;{3bYvtwlsnmSe+2y&B_LnWCTKIAYBaNFaQA4NIGo* literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp new file mode 100644 index 0000000..76fe466 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp @@ -0,0 +1 @@ +0C5729B42DD21DBF \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml new file mode 100644 index 0000000..7f48070 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt new file mode 100644 index 0000000..2686c46 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt @@ -0,0 +1 @@ +int id view_tree_lifecycle_owner 0x0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt new file mode 100644 index 0000000..e60ad60 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt @@ -0,0 +1,95 @@ +# Baseline Profile rules for lifecycle-runtime + +HPLandroidx/lifecycle/LifecycleRegistry;->backwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->(Landroidx/lifecycle/LifecycleObserver;Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->dispatchEvent(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;Z)V +HSPLandroidx/lifecycle/LifecycleRegistry;->addObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->calculateTargetState(Landroidx/lifecycle/LifecycleObserver;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->enforceMainThreadIfNeeded(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->forwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->getCurrentState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->isSynced()Z +HSPLandroidx/lifecycle/LifecycleRegistry;->min(Landroidx/lifecycle/Lifecycle$State;Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->moveToState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V +HSPLandroidx/lifecycle/LifecycleRegistry;->pushParentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->registerIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->()V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroid/app/Activity;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchCreate(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchResume(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchStart(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->injectIfNeededIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment;->onResume()V +HSPLandroidx/lifecycle/ReportFragment;->onStart()V +HSPLandroidx/lifecycle/ViewTreeLifecycleOwner;->set(Landroid/view/View;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/ViewTreeViewModelStoreOwner;->set(Landroid/view/View;Landroidx/lifecycle/ViewModelStoreOwner;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPrePaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment;->onDestroy()V +PLandroidx/lifecycle/ReportFragment;->onPause()V +PLandroidx/lifecycle/ReportFragment;->onStop()V + +# Baseline Profiles for lifecycle-common + +HPLandroidx/lifecycle/Lifecycle$Event;->downFrom(Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->(Ljava/util/Map;)V +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->invokeCallbacks(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->invokeMethodsForEvent(Ljava/util/List;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->(ILjava/lang/reflect/Method;)V +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->hashCode()I +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->invokeCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache;->()V +HSPLandroidx/lifecycle/ClassesInfoCache;->()V +HSPLandroidx/lifecycle/ClassesInfoCache;->createInfo(Ljava/lang/Class;[Ljava/lang/reflect/Method;)Landroidx/lifecycle/ClassesInfoCache$CallbackInfo; +HSPLandroidx/lifecycle/ClassesInfoCache;->getDeclaredMethods(Ljava/lang/Class;)[Ljava/lang/reflect/Method; +HSPLandroidx/lifecycle/ClassesInfoCache;->getInfo(Ljava/lang/Class;)Landroidx/lifecycle/ClassesInfoCache$CallbackInfo; +HSPLandroidx/lifecycle/ClassesInfoCache;->hasLifecycleMethods(Ljava/lang/Class;)Z +HSPLandroidx/lifecycle/ClassesInfoCache;->verifyAndPutHandler(Ljava/util/Map;Landroidx/lifecycle/ClassesInfoCache$MethodReference;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Class;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onCreate(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onResume(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onStart(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter$1;->()V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter;->(Landroidx/lifecycle/FullLifecycleObserver;Landroidx/lifecycle/LifecycleEventObserver;)V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/Lifecycle$1;->()V +HSPLandroidx/lifecycle/Lifecycle$Event;->()V +HSPLandroidx/lifecycle/Lifecycle$Event;->(Ljava/lang/String;I)V +HSPLandroidx/lifecycle/Lifecycle$Event;->getTargetState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/Lifecycle$Event;->upFrom(Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/Lifecycle$Event;->values()[Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/Lifecycle$State;->()V +HSPLandroidx/lifecycle/Lifecycle$State;->(Ljava/lang/String;I)V +HSPLandroidx/lifecycle/Lifecycle$State;->isAtLeast(Landroidx/lifecycle/Lifecycle$State;)Z +HSPLandroidx/lifecycle/Lifecycle$State;->values()[Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/Lifecycle;->()V +HSPLandroidx/lifecycle/Lifecycling;->()V +HSPLandroidx/lifecycle/Lifecycling;->generatedConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor; +HSPLandroidx/lifecycle/Lifecycling;->getAdapterName(Ljava/lang/String;)Ljava/lang/String; +HSPLandroidx/lifecycle/Lifecycling;->getObserverConstructorType(Ljava/lang/Class;)I +HSPLandroidx/lifecycle/Lifecycling;->lifecycleEventObserver(Ljava/lang/Object;)Landroidx/lifecycle/LifecycleEventObserver; +HSPLandroidx/lifecycle/Lifecycling;->resolveObserverCallbackType(Ljava/lang/Class;)I +HSPLandroidx/lifecycle/ReflectiveGenericLifecycleObserver;->(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ReflectiveGenericLifecycleObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onDestroy(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onPause(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onStop(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..18357e548fc7ae59ba36534690da02e0a8005015 GIT binary patch literal 53840 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

    rGCf)SLIj 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt new file mode 100644 index 0000000..4335578 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt @@ -0,0 +1,26 @@ +-keepattributes AnnotationDefault, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations + +-keepclassmembers enum androidx.lifecycle.Lifecycle$Event { + ; +} + +-keep class * implements androidx.lifecycle.GeneratedAdapter { + (...); +} + +-keepclassmembers class ** { + @androidx.lifecycle.OnLifecycleEvent *; +} + +# The deprecated `android.app.Fragment` creates `Fragment` instances using reflection. +# See: b/338958225, b/341537875 +-keepclasseswithmembers,allowobfuscation public class androidx.lifecycle.ReportFragment { + public (); +} + +# this rule is need to work properly when app is compiled with api 28, see b/142778206 +# Also this rule prevents registerIn from being inlined. +-keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; } diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..d28ef4d9b8fc2987ccca3d46fc78f06a0fb10388 GIT binary patch literal 240 zcmWIWW@Zs#U}E54NSHP=N;^wqZ8QS|LlzK=GH@~!r55X#CFYdEDZPr^oX`+f21eT+ z?hMz{)_e^L0;~t_1y6YUw^VF_yCU1XG~t*@N8i8QTKsF{<-MxKPTc8*SIlK4Jx)wa zEiHNDZF|8aEG+QTLdMiJXO0({808m~80qcTeju#R;qUR`r;x_h`0W4RnF72Sne3Ty fISlAJDA>{nVqkS + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp new file mode 100644 index 0000000..2b7d7a7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp @@ -0,0 +1 @@ +C47BBA77001E2603 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml new file mode 100644 index 0000000..86fdbf5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp new file mode 100644 index 0000000..ee72fc4 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp @@ -0,0 +1 @@ +EF37D2C4F931DC45 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml new file mode 100644 index 0000000..c78c260 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..de755d1a30db800b4d9eecc6f54d2a965ae984d3 GIT binary patch literal 7661 zcmbuE1yCH_x~@rZ2<{eKg9Mks5?ls%4KTP&fWa*|3@`*HA=n@@!3iD`Bq2BxEVx5( zC&2>*IQ(bddw0&cwRipJ-qp3Lx~sa@+tvNmdY}GYJuOTuN(?+aJPZsB*1P%7p^8C; zVdn+%0lR_%g#=yAwih)ry9%S@timvw%aD>;#_S5$s71e8=f`mtWqCY;d zL6Hf>EHcOyJQR!t#lJ$nO8w>|vWsf|oJd8Ohn{BsjZ5Vu?P|v4?8ZrE;Ajv0grjj- zyjbIQdt3T?^EhmCeKFu5Bxv)~S@UHBDYE`o9qgmv=bz+~T}p%OJK-&SFN4jpXeB@L zYz&Tkt~{nZo}#&B@g0i+iR}7r1pPKW&R97E$-fCs8HjLMVN+^D4aOaDZvO ztgTrSrt630bD-8nWJDxDmgs4p!sO%ybQ$Q?RQ{75VX%UTPB=MGb?|%v{qgdYNW@FB zS)=FLH9eX8ydV9`cZgi%GntNvjddBv>Z#_F(RT|v=?^{K(@uzoS+;4e1kk~qG%p`m zNo0cH^(h(>w`aN>N)x{6b}cz+9_Qy99DrgH&Y9C?&U9f^bNcuPmQ|+{?wRUkt@K2- z$(IeVVeYI+4^s59t#kUo^avb84Nio>W|c)gESYi~FM7Zn)c*i@!Y%MI9) zLSvW9qg8DAIh#Now(5fC-;1c2H;P_w(N)-9EBh?8V{&N4^QGs6+P<9kX@RbtsW@mH zXznTcR4;N>4Aql_>uIm;Ahjew$^L-`0*Ae&l1Zv{OzcK5+tUDwwJHa(EU^5E*tQ4 ze9KrQ8_1}z`qg|zi7y1d`We!uOlxU!O`P}bQU7msDz8sE<)y9iWv;=UPCv)0oaBX0 zNmJ#zDB#a^lYoq)+}#{*MZL$|NupEcEWi!{e%V0|o}t(4kMY}-ovYZ(p0CiV*_4NA z6X!ocJ{rq|I}Q8p41;wI+5??GYn*5{Y&xws<(eC!a+|PWtr}H~A(4-S+@NFnl#auG zIt?^Z)=m0{XTPJK#A08Lp0&oz$1FV%&xyH}Qfsd+36!;!=aCYA@xNY*3h~;|>e#7RLA=jv{Q^uLqOAFAezL21(ei-v~V_ zW#UK}PMBp=w31u*@;z>x#RI*cQ1z@BWI8a(!IiC)&<(Wkyg4ZC4E~aIibZl-jmbPo z__4qJ?89JPmU14!u`)H71Ak#o_`vQV4>DzOK^bFgI3^^C@oc;GqnyupE; z6y2y2(#V9IR);*BL$Nc&>UiKnoB&9|IehDxp#-Ov0){!Ng&CKVXDzI8`^2JinA8$D zIPP&E0lmt|yh>&Mif>8#iBb~OpJr^fI(u02_ESE4FrPTArhPe6iD+cTslitVT{*A- zFf=^aaB4AyGl5aBnPNcxj}6Qo8O(ql*cra;DYoYUV0BK5O-~on4iPKKxOd|DOR3gv z({{rYaRB6~8U31iI@(T{Dwn$&H2{ZLg2G{jKiPqab{G~5XNt$)3k22ctkqCFP8(De z%)z7qkin;|w4JQ`9JpEY5y|%@NMb$Yi)*lX>+85(buP4cQ8s~&O0Bl$^Ghtc7N!1ZoOJ?GU$PQZ3_#63MNT)at4l7+rIhX)d3 zVCelzpissj`yT;?p$9nNZ{frpN|;eiG4&k!E_3Jb{48((_yfvN8pAUWP*e8qTt^~5 z+Af!yzD)A)!V?sB8&~FphRg>5zwiit>=w6pH^MQ=&$SQldMoVe;9vVZz8HGo94G3$F|@AMtHW0$Q#O2mqGiYbWpkyxNGLyIsRHkfpbq&iVRe^N=sCR0 zWB`^SRnI`<*QU2JQ2WuicS?O8?Y5*bKLub&_~h2XS1Xw>4BR`67D@{9xLN9w@2%*v zNjK#^LqyE-oKc+7*0wE8vYv&MeC=8W)Tc^yaBV8%)qL-u{x7&cK zzMG)ZR*T=LjIyGNU9r+BUllrW^L5zX&$ZdOGDgTEVd7Tkx{E$5gBjM{ zeDl$$(sC&V>bKd$R{MEARHZV6ml^7JI}%j;P>`2=@RWLg&cDT_?JdtpWam>AT;BxZ zZE;JnSz{XOV`c>?v4XDw1i>4iJXL)WyA>BwmFQ)EGwY$%u$A$Ic!Ufk3H7Q6L$~~` z$eD~CK5W4dlS!}xX9^~G=u^n%XOv2>j8xYm2ZnyudC~*iSdIa64@Z zSs6tkL&Piin$O#JkykwfqzI$Wnvh$QL1hv%6TV=U{3e})0K=1lQ&uEy&X~b0DB(?gHGS8i<&1%V=>w&>(#B^(~>2|BBwq3cWZT=)UR$5(`#d zkLLn-({9dABa;(UEboorAB@S+i_UdyZTv$(~Rj{^-~Kgd@I$^|&rxLa|hvY>M| zzG{1~2M*lSN2g1Uz}*e4;a29`(l)x64eGikc>wOYob9j28_Lvy^M>r!=6UEU*;L6# zA|tPJBv}-|dc^^5KPng7=xLn|3n}J<+89?{Y+8-&vAAiU>Gp?8bQe5X{GBTnfb9MK z1LyYCXP>)?z^Z)*dI_v)E#B5DEWw!X$wkG%j+_^^ z0#k`sX^v)WPfkmye+myw%;DNX@}1si+?z1$Hg4zftBIL#-Qf*m`QK9y%3~hsZ)lxL zX@9cZezRjak;O;q>_%neU3}R-oV7y|;p~QSKewzf9PjN79`fGzZ{HNL##oF{#`*{x z_81c-o_Dav^!LB%jThLJYD8Kz;N+pi$#mQcCBle@$DWTDzSn;vpBmgiyffD9qIky) z?^0D8?$M9MxjbbkH;YQWDPD|UI3Q^@HFGiktPbJ1!je)la-wLri##lL}QcC0bs z?LMi>911f%%EUESGX?_qXYGCQf+MCK>Ig%C{to%*hkKGU zNtj$$Ka0`ft&Tnzj$B~m{F(rx7;ons*SZwQhcq6zs2YoAWfYc9MsZO|Ir(7q0%6F} zHCmla#$FA$X0C{I^X$D7Lc@-Fnx*rX`g-5(}d|Nj`T>ZT9>3arF`{lvZ~wUo5NrQfG^!@5;ya%HjB{xy|0wfm`vLahWpFO7SJ zR^t0dZ)45YNt7$Uu3*|5E1Zz+s*kJJ!od9Gy8|<{wepf};isF}_ST<#^eZi24|g?7 zGTSeZTvV8m2vt+>#=o7kmlNs#<+}I5{|7dL^md$C1>%>J_;^# z`H{df;uqpJA`c8ns=BSL-@*x)gq|&&Beqn1gA=^SugxI!!S|3k`5PZII1iDQxC;~u z8?&AxH@?+LUQd2E}0xhr!HiCbOwp)2SZ`flSYue6b0zR%LSZ~&TvM);Fu;-|8sw&S~C+h z(qTTQm1BYqV<#e&Bu^+fs@L478n%^4 z#jT>7ZOb2gRKtX1BD#cwixcxYEQ{fcM9SQfHX2o4REUnbcO^S zncTt^1}}h9rWcUSf0-`3-a9YrC4R2^TO4df=;Kwm6)G>c+GdT1Ov#e=VhZZLu^`C&)1$5 zZ<&X?a%}$qjoJ21B_g$Ujt+T+0et919sd`Zp9W3ds4H5Ew7#IsWzWe@LxoN{EvHW3!N2YPLL9ke!FvNqL3SuLpzpiD32nDa-~&e6lt4|f{l zn;i@f4wq|DxZN{GDP8K}1b$A^$NV|vbfmOkL-J)!o!YYC+M&uLG7%DsWFT4=Ptqtua=bUXIYtBz-C8KPrp zn-E9r9BC%$&g0`15vy2zbNx2D+2P_)1H+^6Yv`(Um?DVf%@$qut3#hO8}F*$xo=;o zmt34r-a2*+jWJ>qgZ-X_9lZOjw-i{>zXJuH-bPHh8W!HpQ3{#{ho2o+oaC3ZU~{PA z^i)WMZsu)jeJ#$;7C$QGN^R4#9bGy!6f%xh(+u)2HEMJ-Mn(0CkE`r-^HCMbjw_y0 zrMB888@?Hz(!7Yt3HzLjB2>$+Jz)A>VLTXio7aAQK{puT+jx~!FWo;8@$SpJG;+s9 zZelDKl zMT@0syIWbO=lmSV0s^V}-ko`^7MUw$V=NYxpz-#f%$weav zMdcYe*}ysb&EzNQ-LmdnfxxK}U?=sgLBOVHpHy*<{pDvUu^0xED~rqsF&>g>B+LKl zW1^=tvvk(3kDEsXw{%*NxchN=4S?X0hj;$X7IXHLd6pr}74LFH9B1j3R!I9K zzFjBYfrBYh%B`12h8*R}xU$WYT!<3R=wXk9wM)rRCyL!$-ImfWNX%64bs$H)KttFV zA>_s1(CSEHjxk>KLXAvKc$%i+OVyGN4MX9SVpfDq+LIDicrkmD(-#%dG+_N>MDt6f z`ZTQ)_S6lQ{0-!bjl!23s08X~I09YT7BTk!>G-d{*$))g>uG8|jvwl=vVaDi#ay}( z-?@FaJJ)f|7mz%4c5B=ekos8~`YFFe5ED3)zk?j!ZRU1_vnXaB<;bO_?{vhKk;C6< z$>n%w`izf&iyeG$Dl^YIa&S&%2R(ek%>77WGOMyZ82*0xSsgJ0aB`IiPBaawBg+9U zwo}7_({6QibJ~sHt>N#cz3PYn+Kb&f@cn7WI?NwgdtFytEj4p%a(lu-%CBBWK?d-~#14dbuY4;(+|j(Bw|8 z_~%_~6pZ51$+|$;_e`{YsM8TIEQhfZA3pqibWKVpEBA{l94_VHL*NY5Y3ri{ubP9e z?m1Qj-lX50zTZ}>mWz08bIbjg>t{gK#=Y-c|LMPV{ilE1^}%3wzvo7F_8yLZBTpzY z1cJ%+DdjLlLv<9oNZh(JWTF%)6mv4U*cd3t$;$~J2yge`ihe;oj)oNUFn>#NU!c9c zpO~1^qZ09=t$oQ}RyE>BME~h~3S5tX zGy8QjiJT!}8C7D|BhoUYt3|VBV_7;fCct2pQxfs+$V_}DnS-qamU8yEKw4?0AWBN3 zn_iy%pg}DqyK_z5SIOx zl)~X(Gt~DUoB55|y<5MmpeiiW=YG=bIn}r>beA~+-%gsyBCZ}!=^B{&?Jsqq+b1 z;Vnl<>G#joEzNo-S^-HqE8{sTS&I@|<$c6cbcE@S&)`C@_ki=?wUnTY;VtT!xj8qc zvzPzb!MetHej|S$10xCZ9~~?L42-`LvAamjr8N8+=kDyUDSB7FKoz4W0vbB1cLCTx zvN6FwvoYI0F9iJ^eSGf{vi~dp5*B)w4zjDLo2e|FJSF^K+>|6}}bx&PlN z4*MTb++Pvge}8~K$z2%({||BfyO;4ld4PY->i%q<^ZaoZ) F{{Y(!&~g9( literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp new file mode 100644 index 0000000..31eda12 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp @@ -0,0 +1 @@ +E91950BE7DF3D9B5 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml new file mode 100644 index 0000000..d2ba992 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..59db712e4396f7c165376217f237b9d0bfd70e61 GIT binary patch literal 6304 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 literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip new file mode 100644 index 0000000000000000000000000000000000000000..4e98974a2c5b4bcac5e17b7ffff46737e646d17b GIT binary patch literal 204 zcmWIWW@Zs#U}E54NSrn^YH8oJC*}+c4E8`Q%D~A`lv=D`mY7otr}Qdvb3#K{85r$) zxHC3yTz}$hpoX`u*10q1H-{QsF%AgwIO~1R|Ku6(?V(z_o|m@KlctyMIelF( uKV7y>Uj=0t0=yZS?3r;{3bYvtwlsnmSe+2y&B_LnWCTKIAYBaNFaQA5>pE}% literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp new file mode 100644 index 0000000..e90e5d3 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp @@ -0,0 +1 @@ +47ED9431E4E9D223 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml new file mode 100644 index 0000000..4adb174 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt new file mode 100644 index 0000000..86ba3fb --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt @@ -0,0 +1,207 @@ +int attr alpha 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 fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr lStar 0x0 +int attr nestedScrollViewStyle 0x0 +int attr queryPatterns 0x0 +int attr shortcutMatchRequired 0x0 +int attr ttcIndex 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color call_notification_answer_color 0x0 +int color call_notification_decline_color 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 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 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 ic_call_answer 0x0 +int drawable ic_call_answer_low 0x0 +int drawable ic_call_answer_video 0x0 +int drawable ic_call_answer_video_low 0x0 +int drawable ic_call_decline 0x0 +int drawable ic_call_decline_low 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_oversize_large_icon_bg 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 edit_text_id 0x0 +int id forever 0x0 +int id hide_ime_id 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 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_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 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 ime_base_split_test_activity 0x0 +int layout ime_secondary_split_test_activity 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 call_notification_answer_action 0x0 +int string call_notification_answer_video_action 0x0 +int string call_notification_decline_action 0x0 +int string call_notification_hang_up_action 0x0 +int string call_notification_incoming_text 0x0 +int string call_notification_ongoing_text 0x0 +int string call_notification_screening_text 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 Capability { 0x0, 0x0 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x0, 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 FontFamily_fontProviderSystemFontFamily 6 +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 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl new file mode 100644 index 0000000..430b8b5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl @@ -0,0 +1,19 @@ +/** + * Copyright 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. + */ + +package android.support.v4.os; + +@JavaOnlyStableParcelable parcelable ResultReceiver; diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip new file mode 100644 index 0000000000000000000000000000000000000000..8285c5f7e0f8478cf55a968433de1a6f7a5cf3f3 GIT binary patch literal 14126 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 I#-HE*A3ezx%>V!Z literal 0 HcmV?d00001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar new file mode 100644 index 0000000000000000000000000000000000000000..f38b16b011b322c80d4ef4e47071292f4e48ce0d GIT binary patch literal 1261352 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஁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ȷ}CFp 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