diff --git a/AideDeJeu/AideDeJeu.Android/AideDeJeu.Android.csproj b/AideDeJeu/AideDeJeu.Android/AideDeJeu.Android.csproj
index 514911ed..4ea0536e 100644
--- a/AideDeJeu/AideDeJeu.Android/AideDeJeu.Android.csproj
+++ b/AideDeJeu/AideDeJeu.Android/AideDeJeu.Android.csproj
@@ -81,13 +81,13 @@
1.6.258-beta
- 1.1.13
+ 1.1.14
- 1.1.13
+ 1.1.14
- 1.1.13
+ 1.1.14
4.5.0
@@ -96,10 +96,10 @@
1.1.0
- 4.0.0.425677
+ 4.0.0.497661
- 4.0.0.425677
+ 4.0.0.497661
1.0.0
@@ -432,8 +432,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Black.otf b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Black.otf
new file mode 100644
index 00000000..e1d142f1
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Bold.otf b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Bold.otf
new file mode 100644
index 00000000..736fb115
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Regular.otf b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Regular.otf
new file mode 100644
index 00000000..2fa4b3ed
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/Cinzel-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Black.otf b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Black.otf
new file mode 100644
index 00000000..e4aeef4d
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Bold.otf b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Bold.otf
new file mode 100644
index 00000000..918600ff
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Regular.otf b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Regular.otf
new file mode 100644
index 00000000..9f6ddafc
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/CinzelDecorative-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Assets/MarcellusSC-Regular.ttf b/AideDeJeu/AideDeJeu.Android/Assets/MarcellusSC-Regular.ttf
new file mode 100644
index 00000000..7304b969
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Assets/MarcellusSC-Regular.ttf differ
diff --git a/AideDeJeu/AideDeJeu.Android/MainActivity.cs b/AideDeJeu/AideDeJeu.Android/MainActivity.cs
index 6186a19c..d6e33a85 100644
--- a/AideDeJeu/AideDeJeu.Android/MainActivity.cs
+++ b/AideDeJeu/AideDeJeu.Android/MainActivity.cs
@@ -6,6 +6,8 @@ using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
+using System.Threading.Tasks;
+using System.Diagnostics;
namespace AideDeJeu.Droid
{
@@ -19,6 +21,10 @@ namespace AideDeJeu.Droid
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(bundle);
+
+ AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
+ TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException;
+
Xamarin.Essentials.Platform.Init(this, bundle);
Xamarin.Essentials.ExperimentalFeatures.Enable(Xamarin.Essentials.ExperimentalFeatures.ShareFileRequest);
@@ -30,6 +36,8 @@ namespace AideDeJeu.Droid
//global::Xamarin.Forms.FormsMaterial.Init(this, bundle);
SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_e_sqlite3());
+ DisplayCrashReport();
+
LoadApplication(new App());
}
@@ -52,6 +60,71 @@ namespace AideDeJeu.Droid
base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
+
+
+ private static void TaskSchedulerOnUnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs unobservedTaskExceptionEventArgs)
+ {
+ var newExc = new Exception("TaskSchedulerOnUnobservedTaskException", unobservedTaskExceptionEventArgs.Exception);
+ LogUnhandledException(newExc);
+ }
+
+ private static void CurrentDomainOnUnhandledException(object sender, UnhandledExceptionEventArgs unhandledExceptionEventArgs)
+ {
+ var newExc = new Exception("CurrentDomainOnUnhandledException", unhandledExceptionEventArgs.ExceptionObject as Exception);
+ LogUnhandledException(newExc);
+ }
+
+ internal static void LogUnhandledException(Exception exception)
+ {
+ try
+ {
+ const string errorFileName = "Fatal.log";
+ var libraryPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal); // iOS: Environment.SpecialFolder.Resources
+ var errorFilePath = System.IO.Path.Combine(libraryPath, errorFileName);
+ var errorMessage = String.Format("Time: {0}\r\nError: Unhandled Exception\r\n{1}",
+ DateTime.Now, exception.ToString());
+ System.IO.File.WriteAllText(errorFilePath, errorMessage);
+
+ // Log to Android Device Logging.
+ Android.Util.Log.Error("Crash Report", errorMessage);
+ }
+ catch
+ {
+ // just suppress any error logging exceptions
+ }
+ }
+
+ ///
+ // If there is an unhandled exception, the exception information is diplayed
+ // on screen the next time the app is started (only in debug configuration)
+ ///
+ [Conditional("DEBUG")]
+ private void DisplayCrashReport()
+ {
+ const string errorFilename = "Fatal.log";
+ var libraryPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
+ var errorFilePath = System.IO.Path.Combine(libraryPath, errorFilename);
+
+ if (!System.IO.File.Exists(errorFilePath))
+ {
+ return;
+ }
+
+ var errorText = System.IO.File.ReadAllText(errorFilePath);
+ new AlertDialog.Builder(this)
+ .SetPositiveButton("Clear", (sender, args) =>
+ {
+ System.IO.File.Delete(errorFilePath);
+ })
+ .SetNegativeButton("Close", (sender, args) =>
+ {
+ // User pressed Close.
+ })
+ .SetMessage(errorText)
+ .SetTitle("Crash Report")
+ .Show();
+ }
+
}
}
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs b/AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs
index de6e7fae..83e4a343 100644
--- a/AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs
+++ b/AideDeJeu/AideDeJeu.Android/Resources/Resource.designer.cs
@@ -5366,65 +5366,65 @@ namespace AideDeJeu.Droid
public partial class Animation
{
- // aapt resource value: 0x7f040000
- public const int abc_fade_in = 2130968576;
+ // aapt resource value: 0x7f050000
+ public const int abc_fade_in = 2131034112;
- // aapt resource value: 0x7f040001
- public const int abc_fade_out = 2130968577;
+ // aapt resource value: 0x7f050001
+ public const int abc_fade_out = 2131034113;
- // aapt resource value: 0x7f040002
- public const int abc_grow_fade_in_from_bottom = 2130968578;
+ // aapt resource value: 0x7f050002
+ public const int abc_grow_fade_in_from_bottom = 2131034114;
- // aapt resource value: 0x7f040003
- public const int abc_popup_enter = 2130968579;
+ // aapt resource value: 0x7f050003
+ public const int abc_popup_enter = 2131034115;
- // aapt resource value: 0x7f040004
- public const int abc_popup_exit = 2130968580;
+ // aapt resource value: 0x7f050004
+ public const int abc_popup_exit = 2131034116;
- // aapt resource value: 0x7f040005
- public const int abc_shrink_fade_out_from_bottom = 2130968581;
+ // aapt resource value: 0x7f050005
+ public const int abc_shrink_fade_out_from_bottom = 2131034117;
- // aapt resource value: 0x7f040006
- public const int abc_slide_in_bottom = 2130968582;
+ // aapt resource value: 0x7f050006
+ public const int abc_slide_in_bottom = 2131034118;
- // aapt resource value: 0x7f040007
- public const int abc_slide_in_top = 2130968583;
+ // aapt resource value: 0x7f050007
+ public const int abc_slide_in_top = 2131034119;
- // aapt resource value: 0x7f040008
- public const int abc_slide_out_bottom = 2130968584;
+ // aapt resource value: 0x7f050008
+ public const int abc_slide_out_bottom = 2131034120;
- // aapt resource value: 0x7f040009
- public const int abc_slide_out_top = 2130968585;
+ // aapt resource value: 0x7f050009
+ public const int abc_slide_out_top = 2131034121;
- // aapt resource value: 0x7f04000a
- public const int abc_tooltip_enter = 2130968586;
+ // aapt resource value: 0x7f05000a
+ public const int abc_tooltip_enter = 2131034122;
- // aapt resource value: 0x7f04000b
- public const int abc_tooltip_exit = 2130968587;
+ // aapt resource value: 0x7f05000b
+ public const int abc_tooltip_exit = 2131034123;
- // aapt resource value: 0x7f04000c
- public const int design_bottom_sheet_slide_in = 2130968588;
+ // aapt resource value: 0x7f05000c
+ public const int design_bottom_sheet_slide_in = 2131034124;
- // aapt resource value: 0x7f04000d
- public const int design_bottom_sheet_slide_out = 2130968589;
+ // aapt resource value: 0x7f05000d
+ public const int design_bottom_sheet_slide_out = 2131034125;
- // aapt resource value: 0x7f04000e
- public const int design_snackbar_in = 2130968590;
+ // aapt resource value: 0x7f05000e
+ public const int design_snackbar_in = 2131034126;
- // aapt resource value: 0x7f04000f
- public const int design_snackbar_out = 2130968591;
+ // aapt resource value: 0x7f05000f
+ public const int design_snackbar_out = 2131034127;
- // aapt resource value: 0x7f040010
- public const int EnterFromLeft = 2130968592;
+ // aapt resource value: 0x7f050010
+ public const int EnterFromLeft = 2131034128;
- // aapt resource value: 0x7f040011
- public const int EnterFromRight = 2130968593;
+ // aapt resource value: 0x7f050011
+ public const int EnterFromRight = 2131034129;
- // aapt resource value: 0x7f040012
- public const int ExitToLeft = 2130968594;
+ // aapt resource value: 0x7f050012
+ public const int ExitToLeft = 2131034130;
- // aapt resource value: 0x7f040013
- public const int ExitToRight = 2130968595;
+ // aapt resource value: 0x7f050013
+ public const int ExitToRight = 2131034131;
static Animation()
{
@@ -5439,35 +5439,35 @@ namespace AideDeJeu.Droid
public partial class Animator
{
- // aapt resource value: 0x7f050000
- public const int design_appbar_state_list_animator = 2131034112;
+ // aapt resource value: 0x7f060000
+ public const int design_appbar_state_list_animator = 2131099648;
- // aapt resource value: 0x7f050001
- public const int design_fab_hide_motion_spec = 2131034113;
+ // aapt resource value: 0x7f060001
+ public const int design_fab_hide_motion_spec = 2131099649;
- // aapt resource value: 0x7f050002
- public const int design_fab_show_motion_spec = 2131034114;
+ // aapt resource value: 0x7f060002
+ public const int design_fab_show_motion_spec = 2131099650;
- // aapt resource value: 0x7f050003
- public const int mtrl_btn_state_list_anim = 2131034115;
+ // aapt resource value: 0x7f060003
+ public const int mtrl_btn_state_list_anim = 2131099651;
- // aapt resource value: 0x7f050004
- public const int mtrl_btn_unelevated_state_list_anim = 2131034116;
+ // aapt resource value: 0x7f060004
+ public const int mtrl_btn_unelevated_state_list_anim = 2131099652;
- // aapt resource value: 0x7f050005
- public const int mtrl_chip_state_list_anim = 2131034117;
+ // aapt resource value: 0x7f060005
+ public const int mtrl_chip_state_list_anim = 2131099653;
- // aapt resource value: 0x7f050006
- public const int mtrl_fab_hide_motion_spec = 2131034118;
+ // aapt resource value: 0x7f060006
+ public const int mtrl_fab_hide_motion_spec = 2131099654;
- // aapt resource value: 0x7f050007
- public const int mtrl_fab_show_motion_spec = 2131034119;
+ // aapt resource value: 0x7f060007
+ public const int mtrl_fab_show_motion_spec = 2131099655;
- // aapt resource value: 0x7f050008
- public const int mtrl_fab_transformation_sheet_collapse_spec = 2131034120;
+ // aapt resource value: 0x7f060008
+ public const int mtrl_fab_transformation_sheet_collapse_spec = 2131099656;
- // aapt resource value: 0x7f050009
- public const int mtrl_fab_transformation_sheet_expand_spec = 2131034121;
+ // aapt resource value: 0x7f060009
+ public const int mtrl_fab_transformation_sheet_expand_spec = 2131099657;
static Animator()
{
@@ -6980,17 +6980,17 @@ namespace AideDeJeu.Droid
public partial class Boolean
{
- // aapt resource value: 0x7f0e0000
- public const int abc_action_bar_embed_tabs = 2131623936;
+ // aapt resource value: 0x7f0f0000
+ public const int abc_action_bar_embed_tabs = 2131689472;
- // aapt resource value: 0x7f0e0001
- public const int abc_allow_stacked_button_bar = 2131623937;
+ // aapt resource value: 0x7f0f0001
+ public const int abc_allow_stacked_button_bar = 2131689473;
- // aapt resource value: 0x7f0e0002
- public const int abc_config_actionMenuItemAllCaps = 2131623938;
+ // aapt resource value: 0x7f0f0002
+ public const int abc_config_actionMenuItemAllCaps = 2131689474;
- // aapt resource value: 0x7f0e0003
- public const int mtrl_btn_textappearance_all_caps = 2131623939;
+ // aapt resource value: 0x7f0f0003
+ public const int mtrl_btn_textappearance_all_caps = 2131689475;
static Boolean()
{
@@ -7005,431 +7005,431 @@ namespace AideDeJeu.Droid
public partial class Color
{
- // aapt resource value: 0x7f0d0060
- public const int HDBackLightGrey = 2131558496;
+ // aapt resource value: 0x7f0e0060
+ public const int HDBackLightGrey = 2131624032;
- // aapt resource value: 0x7f0d005f
- public const int HDBackMidGrey = 2131558495;
+ // aapt resource value: 0x7f0e005f
+ public const int HDBackMidGrey = 2131624031;
- // aapt resource value: 0x7f0d0062
- public const int HDBlack = 2131558498;
+ // aapt resource value: 0x7f0e0062
+ public const int HDBlack = 2131624034;
- // aapt resource value: 0x7f0d005b
- public const int HDGrey = 2131558491;
+ // aapt resource value: 0x7f0e005b
+ public const int HDGrey = 2131624027;
- // aapt resource value: 0x7f0d005e
- public const int HDLightBlack = 2131558494;
+ // aapt resource value: 0x7f0e005e
+ public const int HDLightBlack = 2131624030;
- // aapt resource value: 0x7f0d005d
- public const int HDLightGrey = 2131558493;
+ // aapt resource value: 0x7f0e005d
+ public const int HDLightGrey = 2131624029;
- // aapt resource value: 0x7f0d005c
- public const int HDMidGrey = 2131558492;
+ // aapt resource value: 0x7f0e005c
+ public const int HDMidGrey = 2131624028;
- // aapt resource value: 0x7f0d005a
- public const int HDRed = 2131558490;
+ // aapt resource value: 0x7f0e005a
+ public const int HDRed = 2131624026;
- // aapt resource value: 0x7f0d0061
- public const int HDWhite = 2131558497;
+ // aapt resource value: 0x7f0e0061
+ public const int HDWhite = 2131624033;
- // aapt resource value: 0x7f0d0063
- public const int abc_background_cache_hint_selector_material_dark = 2131558499;
+ // aapt resource value: 0x7f0e0063
+ public const int abc_background_cache_hint_selector_material_dark = 2131624035;
- // aapt resource value: 0x7f0d0064
- public const int abc_background_cache_hint_selector_material_light = 2131558500;
+ // aapt resource value: 0x7f0e0064
+ public const int abc_background_cache_hint_selector_material_light = 2131624036;
- // aapt resource value: 0x7f0d0065
- public const int abc_btn_colored_borderless_text_material = 2131558501;
+ // aapt resource value: 0x7f0e0065
+ public const int abc_btn_colored_borderless_text_material = 2131624037;
- // aapt resource value: 0x7f0d0066
- public const int abc_btn_colored_text_material = 2131558502;
+ // aapt resource value: 0x7f0e0066
+ public const int abc_btn_colored_text_material = 2131624038;
- // aapt resource value: 0x7f0d0067
- public const int abc_color_highlight_material = 2131558503;
+ // aapt resource value: 0x7f0e0067
+ public const int abc_color_highlight_material = 2131624039;
- // aapt resource value: 0x7f0d0068
- public const int abc_hint_foreground_material_dark = 2131558504;
+ // aapt resource value: 0x7f0e0068
+ public const int abc_hint_foreground_material_dark = 2131624040;
- // aapt resource value: 0x7f0d0069
- public const int abc_hint_foreground_material_light = 2131558505;
+ // aapt resource value: 0x7f0e0069
+ public const int abc_hint_foreground_material_light = 2131624041;
- // aapt resource value: 0x7f0d0004
- public const int abc_input_method_navigation_guard = 2131558404;
+ // aapt resource value: 0x7f0e0004
+ public const int abc_input_method_navigation_guard = 2131623940;
- // aapt resource value: 0x7f0d006a
- public const int abc_primary_text_disable_only_material_dark = 2131558506;
+ // aapt resource value: 0x7f0e006a
+ public const int abc_primary_text_disable_only_material_dark = 2131624042;
- // aapt resource value: 0x7f0d006b
- public const int abc_primary_text_disable_only_material_light = 2131558507;
+ // aapt resource value: 0x7f0e006b
+ public const int abc_primary_text_disable_only_material_light = 2131624043;
- // aapt resource value: 0x7f0d006c
- public const int abc_primary_text_material_dark = 2131558508;
+ // aapt resource value: 0x7f0e006c
+ public const int abc_primary_text_material_dark = 2131624044;
- // aapt resource value: 0x7f0d006d
- public const int abc_primary_text_material_light = 2131558509;
+ // aapt resource value: 0x7f0e006d
+ public const int abc_primary_text_material_light = 2131624045;
- // aapt resource value: 0x7f0d006e
- public const int abc_search_url_text = 2131558510;
+ // aapt resource value: 0x7f0e006e
+ public const int abc_search_url_text = 2131624046;
- // aapt resource value: 0x7f0d0005
- public const int abc_search_url_text_normal = 2131558405;
+ // aapt resource value: 0x7f0e0005
+ public const int abc_search_url_text_normal = 2131623941;
- // aapt resource value: 0x7f0d0006
- public const int abc_search_url_text_pressed = 2131558406;
+ // aapt resource value: 0x7f0e0006
+ public const int abc_search_url_text_pressed = 2131623942;
- // aapt resource value: 0x7f0d0007
- public const int abc_search_url_text_selected = 2131558407;
+ // aapt resource value: 0x7f0e0007
+ public const int abc_search_url_text_selected = 2131623943;
- // aapt resource value: 0x7f0d006f
- public const int abc_secondary_text_material_dark = 2131558511;
+ // aapt resource value: 0x7f0e006f
+ public const int abc_secondary_text_material_dark = 2131624047;
- // aapt resource value: 0x7f0d0070
- public const int abc_secondary_text_material_light = 2131558512;
+ // aapt resource value: 0x7f0e0070
+ public const int abc_secondary_text_material_light = 2131624048;
- // aapt resource value: 0x7f0d0071
- public const int abc_tint_btn_checkable = 2131558513;
+ // aapt resource value: 0x7f0e0071
+ public const int abc_tint_btn_checkable = 2131624049;
- // aapt resource value: 0x7f0d0072
- public const int abc_tint_default = 2131558514;
+ // aapt resource value: 0x7f0e0072
+ public const int abc_tint_default = 2131624050;
- // aapt resource value: 0x7f0d0073
- public const int abc_tint_edittext = 2131558515;
+ // aapt resource value: 0x7f0e0073
+ public const int abc_tint_edittext = 2131624051;
- // aapt resource value: 0x7f0d0074
- public const int abc_tint_seek_thumb = 2131558516;
+ // aapt resource value: 0x7f0e0074
+ public const int abc_tint_seek_thumb = 2131624052;
- // aapt resource value: 0x7f0d0075
- public const int abc_tint_spinner = 2131558517;
+ // aapt resource value: 0x7f0e0075
+ public const int abc_tint_spinner = 2131624053;
- // aapt resource value: 0x7f0d0076
- public const int abc_tint_switch_track = 2131558518;
+ // aapt resource value: 0x7f0e0076
+ public const int abc_tint_switch_track = 2131624054;
- // aapt resource value: 0x7f0d0008
- public const int accent_material_dark = 2131558408;
+ // aapt resource value: 0x7f0e0008
+ public const int accent_material_dark = 2131623944;
- // aapt resource value: 0x7f0d0009
- public const int accent_material_light = 2131558409;
+ // aapt resource value: 0x7f0e0009
+ public const int accent_material_light = 2131623945;
- // aapt resource value: 0x7f0d000a
- public const int background_floating_material_dark = 2131558410;
+ // aapt resource value: 0x7f0e000a
+ public const int background_floating_material_dark = 2131623946;
- // aapt resource value: 0x7f0d000b
- public const int background_floating_material_light = 2131558411;
+ // aapt resource value: 0x7f0e000b
+ public const int background_floating_material_light = 2131623947;
- // aapt resource value: 0x7f0d000c
- public const int background_material_dark = 2131558412;
+ // aapt resource value: 0x7f0e000c
+ public const int background_material_dark = 2131623948;
- // aapt resource value: 0x7f0d000d
- public const int background_material_light = 2131558413;
+ // aapt resource value: 0x7f0e000d
+ public const int background_material_light = 2131623949;
- // aapt resource value: 0x7f0d000e
- public const int bright_foreground_disabled_material_dark = 2131558414;
+ // aapt resource value: 0x7f0e000e
+ public const int bright_foreground_disabled_material_dark = 2131623950;
- // aapt resource value: 0x7f0d000f
- public const int bright_foreground_disabled_material_light = 2131558415;
+ // aapt resource value: 0x7f0e000f
+ public const int bright_foreground_disabled_material_light = 2131623951;
- // aapt resource value: 0x7f0d0010
- public const int bright_foreground_inverse_material_dark = 2131558416;
+ // aapt resource value: 0x7f0e0010
+ public const int bright_foreground_inverse_material_dark = 2131623952;
- // aapt resource value: 0x7f0d0011
- public const int bright_foreground_inverse_material_light = 2131558417;
+ // aapt resource value: 0x7f0e0011
+ public const int bright_foreground_inverse_material_light = 2131623953;
- // aapt resource value: 0x7f0d0012
- public const int bright_foreground_material_dark = 2131558418;
+ // aapt resource value: 0x7f0e0012
+ public const int bright_foreground_material_dark = 2131623954;
- // aapt resource value: 0x7f0d0013
- public const int bright_foreground_material_light = 2131558419;
+ // aapt resource value: 0x7f0e0013
+ public const int bright_foreground_material_light = 2131623955;
- // aapt resource value: 0x7f0d0054
- public const int browser_actions_bg_grey = 2131558484;
+ // aapt resource value: 0x7f0e0054
+ public const int browser_actions_bg_grey = 2131624020;
- // aapt resource value: 0x7f0d0055
- public const int browser_actions_divider_color = 2131558485;
+ // aapt resource value: 0x7f0e0055
+ public const int browser_actions_divider_color = 2131624021;
- // aapt resource value: 0x7f0d0056
- public const int browser_actions_text_color = 2131558486;
+ // aapt resource value: 0x7f0e0056
+ public const int browser_actions_text_color = 2131624022;
- // aapt resource value: 0x7f0d0057
- public const int browser_actions_title_color = 2131558487;
+ // aapt resource value: 0x7f0e0057
+ public const int browser_actions_title_color = 2131624023;
- // aapt resource value: 0x7f0d0014
- public const int button_material_dark = 2131558420;
+ // aapt resource value: 0x7f0e0014
+ public const int button_material_dark = 2131623956;
- // aapt resource value: 0x7f0d0015
- public const int button_material_light = 2131558421;
+ // aapt resource value: 0x7f0e0015
+ public const int button_material_light = 2131623957;
- // aapt resource value: 0x7f0d0000
- public const int cardview_dark_background = 2131558400;
+ // aapt resource value: 0x7f0e0000
+ public const int cardview_dark_background = 2131623936;
- // aapt resource value: 0x7f0d0001
- public const int cardview_light_background = 2131558401;
+ // aapt resource value: 0x7f0e0001
+ public const int cardview_light_background = 2131623937;
- // aapt resource value: 0x7f0d0002
- public const int cardview_shadow_end_color = 2131558402;
+ // aapt resource value: 0x7f0e0002
+ public const int cardview_shadow_end_color = 2131623938;
- // aapt resource value: 0x7f0d0003
- public const int cardview_shadow_start_color = 2131558403;
+ // aapt resource value: 0x7f0e0003
+ public const int cardview_shadow_start_color = 2131623939;
- // aapt resource value: 0x7f0d0041
- public const int design_bottom_navigation_shadow_color = 2131558465;
+ // aapt resource value: 0x7f0e0041
+ public const int design_bottom_navigation_shadow_color = 2131624001;
- // aapt resource value: 0x7f0d0042
- public const int design_default_color_primary = 2131558466;
+ // aapt resource value: 0x7f0e0042
+ public const int design_default_color_primary = 2131624002;
- // aapt resource value: 0x7f0d0043
- public const int design_default_color_primary_dark = 2131558467;
+ // aapt resource value: 0x7f0e0043
+ public const int design_default_color_primary_dark = 2131624003;
- // aapt resource value: 0x7f0d0077
- public const int design_error = 2131558519;
+ // aapt resource value: 0x7f0e0077
+ public const int design_error = 2131624055;
- // aapt resource value: 0x7f0d0044
- public const int design_fab_shadow_end_color = 2131558468;
+ // aapt resource value: 0x7f0e0044
+ public const int design_fab_shadow_end_color = 2131624004;
- // aapt resource value: 0x7f0d0045
- public const int design_fab_shadow_mid_color = 2131558469;
+ // aapt resource value: 0x7f0e0045
+ public const int design_fab_shadow_mid_color = 2131624005;
- // aapt resource value: 0x7f0d0046
- public const int design_fab_shadow_start_color = 2131558470;
+ // aapt resource value: 0x7f0e0046
+ public const int design_fab_shadow_start_color = 2131624006;
- // aapt resource value: 0x7f0d0047
- public const int design_fab_stroke_end_inner_color = 2131558471;
+ // aapt resource value: 0x7f0e0047
+ public const int design_fab_stroke_end_inner_color = 2131624007;
- // aapt resource value: 0x7f0d0048
- public const int design_fab_stroke_end_outer_color = 2131558472;
+ // aapt resource value: 0x7f0e0048
+ public const int design_fab_stroke_end_outer_color = 2131624008;
- // aapt resource value: 0x7f0d0049
- public const int design_fab_stroke_top_inner_color = 2131558473;
+ // aapt resource value: 0x7f0e0049
+ public const int design_fab_stroke_top_inner_color = 2131624009;
- // aapt resource value: 0x7f0d004a
- public const int design_fab_stroke_top_outer_color = 2131558474;
+ // aapt resource value: 0x7f0e004a
+ public const int design_fab_stroke_top_outer_color = 2131624010;
- // aapt resource value: 0x7f0d004b
- public const int design_snackbar_background_color = 2131558475;
+ // aapt resource value: 0x7f0e004b
+ public const int design_snackbar_background_color = 2131624011;
- // aapt resource value: 0x7f0d0078
- public const int design_tint_password_toggle = 2131558520;
+ // aapt resource value: 0x7f0e0078
+ public const int design_tint_password_toggle = 2131624056;
- // aapt resource value: 0x7f0d0016
- public const int dim_foreground_disabled_material_dark = 2131558422;
+ // aapt resource value: 0x7f0e0016
+ public const int dim_foreground_disabled_material_dark = 2131623958;
- // aapt resource value: 0x7f0d0017
- public const int dim_foreground_disabled_material_light = 2131558423;
+ // aapt resource value: 0x7f0e0017
+ public const int dim_foreground_disabled_material_light = 2131623959;
- // aapt resource value: 0x7f0d0018
- public const int dim_foreground_material_dark = 2131558424;
+ // aapt resource value: 0x7f0e0018
+ public const int dim_foreground_material_dark = 2131623960;
- // aapt resource value: 0x7f0d0019
- public const int dim_foreground_material_light = 2131558425;
+ // aapt resource value: 0x7f0e0019
+ public const int dim_foreground_material_light = 2131623961;
- // aapt resource value: 0x7f0d001a
- public const int error_color_material_dark = 2131558426;
+ // aapt resource value: 0x7f0e001a
+ public const int error_color_material_dark = 2131623962;
- // aapt resource value: 0x7f0d001b
- public const int error_color_material_light = 2131558427;
+ // aapt resource value: 0x7f0e001b
+ public const int error_color_material_light = 2131623963;
- // aapt resource value: 0x7f0d001c
- public const int foreground_material_dark = 2131558428;
+ // aapt resource value: 0x7f0e001c
+ public const int foreground_material_dark = 2131623964;
- // aapt resource value: 0x7f0d001d
- public const int foreground_material_light = 2131558429;
+ // aapt resource value: 0x7f0e001d
+ public const int foreground_material_light = 2131623965;
- // aapt resource value: 0x7f0d001e
- public const int highlighted_text_material_dark = 2131558430;
+ // aapt resource value: 0x7f0e001e
+ public const int highlighted_text_material_dark = 2131623966;
- // aapt resource value: 0x7f0d001f
- public const int highlighted_text_material_light = 2131558431;
+ // aapt resource value: 0x7f0e001f
+ public const int highlighted_text_material_light = 2131623967;
- // aapt resource value: 0x7f0d0020
- public const int material_blue_grey_800 = 2131558432;
+ // aapt resource value: 0x7f0e0020
+ public const int material_blue_grey_800 = 2131623968;
- // aapt resource value: 0x7f0d0021
- public const int material_blue_grey_900 = 2131558433;
+ // aapt resource value: 0x7f0e0021
+ public const int material_blue_grey_900 = 2131623969;
- // aapt resource value: 0x7f0d0022
- public const int material_blue_grey_950 = 2131558434;
+ // aapt resource value: 0x7f0e0022
+ public const int material_blue_grey_950 = 2131623970;
- // aapt resource value: 0x7f0d0023
- public const int material_deep_teal_200 = 2131558435;
+ // aapt resource value: 0x7f0e0023
+ public const int material_deep_teal_200 = 2131623971;
- // aapt resource value: 0x7f0d0024
- public const int material_deep_teal_500 = 2131558436;
+ // aapt resource value: 0x7f0e0024
+ public const int material_deep_teal_500 = 2131623972;
- // aapt resource value: 0x7f0d0025
- public const int material_grey_100 = 2131558437;
+ // aapt resource value: 0x7f0e0025
+ public const int material_grey_100 = 2131623973;
- // aapt resource value: 0x7f0d0026
- public const int material_grey_300 = 2131558438;
+ // aapt resource value: 0x7f0e0026
+ public const int material_grey_300 = 2131623974;
- // aapt resource value: 0x7f0d0027
- public const int material_grey_50 = 2131558439;
+ // aapt resource value: 0x7f0e0027
+ public const int material_grey_50 = 2131623975;
- // aapt resource value: 0x7f0d0028
- public const int material_grey_600 = 2131558440;
+ // aapt resource value: 0x7f0e0028
+ public const int material_grey_600 = 2131623976;
- // aapt resource value: 0x7f0d0029
- public const int material_grey_800 = 2131558441;
+ // aapt resource value: 0x7f0e0029
+ public const int material_grey_800 = 2131623977;
- // aapt resource value: 0x7f0d002a
- public const int material_grey_850 = 2131558442;
+ // aapt resource value: 0x7f0e002a
+ public const int material_grey_850 = 2131623978;
- // aapt resource value: 0x7f0d002b
- public const int material_grey_900 = 2131558443;
+ // aapt resource value: 0x7f0e002b
+ public const int material_grey_900 = 2131623979;
- // aapt resource value: 0x7f0d0079
- public const int mtrl_bottom_nav_colored_item_tint = 2131558521;
+ // aapt resource value: 0x7f0e0079
+ public const int mtrl_bottom_nav_colored_item_tint = 2131624057;
- // aapt resource value: 0x7f0d007a
- public const int mtrl_bottom_nav_item_tint = 2131558522;
+ // aapt resource value: 0x7f0e007a
+ public const int mtrl_bottom_nav_item_tint = 2131624058;
- // aapt resource value: 0x7f0d004c
- public const int mtrl_btn_bg_color_disabled = 2131558476;
+ // aapt resource value: 0x7f0e004c
+ public const int mtrl_btn_bg_color_disabled = 2131624012;
- // aapt resource value: 0x7f0d007b
- public const int mtrl_btn_bg_color_selector = 2131558523;
+ // aapt resource value: 0x7f0e007b
+ public const int mtrl_btn_bg_color_selector = 2131624059;
- // aapt resource value: 0x7f0d007c
- public const int mtrl_btn_ripple_color = 2131558524;
+ // aapt resource value: 0x7f0e007c
+ public const int mtrl_btn_ripple_color = 2131624060;
- // aapt resource value: 0x7f0d007d
- public const int mtrl_btn_stroke_color_selector = 2131558525;
+ // aapt resource value: 0x7f0e007d
+ public const int mtrl_btn_stroke_color_selector = 2131624061;
- // aapt resource value: 0x7f0d007e
- public const int mtrl_btn_text_btn_ripple_color = 2131558526;
+ // aapt resource value: 0x7f0e007e
+ public const int mtrl_btn_text_btn_ripple_color = 2131624062;
- // aapt resource value: 0x7f0d004d
- public const int mtrl_btn_text_color_disabled = 2131558477;
+ // aapt resource value: 0x7f0e004d
+ public const int mtrl_btn_text_color_disabled = 2131624013;
- // aapt resource value: 0x7f0d007f
- public const int mtrl_btn_text_color_selector = 2131558527;
+ // aapt resource value: 0x7f0e007f
+ public const int mtrl_btn_text_color_selector = 2131624063;
- // aapt resource value: 0x7f0d004e
- public const int mtrl_btn_transparent_bg_color = 2131558478;
+ // aapt resource value: 0x7f0e004e
+ public const int mtrl_btn_transparent_bg_color = 2131624014;
- // aapt resource value: 0x7f0d0080
- public const int mtrl_chip_background_color = 2131558528;
+ // aapt resource value: 0x7f0e0080
+ public const int mtrl_chip_background_color = 2131624064;
- // aapt resource value: 0x7f0d0081
- public const int mtrl_chip_close_icon_tint = 2131558529;
+ // aapt resource value: 0x7f0e0081
+ public const int mtrl_chip_close_icon_tint = 2131624065;
- // aapt resource value: 0x7f0d0082
- public const int mtrl_chip_ripple_color = 2131558530;
+ // aapt resource value: 0x7f0e0082
+ public const int mtrl_chip_ripple_color = 2131624066;
- // aapt resource value: 0x7f0d0083
- public const int mtrl_chip_text_color = 2131558531;
+ // aapt resource value: 0x7f0e0083
+ public const int mtrl_chip_text_color = 2131624067;
- // aapt resource value: 0x7f0d0084
- public const int mtrl_fab_ripple_color = 2131558532;
+ // aapt resource value: 0x7f0e0084
+ public const int mtrl_fab_ripple_color = 2131624068;
- // aapt resource value: 0x7f0d004f
- public const int mtrl_scrim_color = 2131558479;
+ // aapt resource value: 0x7f0e004f
+ public const int mtrl_scrim_color = 2131624015;
- // aapt resource value: 0x7f0d0085
- public const int mtrl_tabs_colored_ripple_color = 2131558533;
+ // aapt resource value: 0x7f0e0085
+ public const int mtrl_tabs_colored_ripple_color = 2131624069;
- // aapt resource value: 0x7f0d0086
- public const int mtrl_tabs_icon_color_selector = 2131558534;
+ // aapt resource value: 0x7f0e0086
+ public const int mtrl_tabs_icon_color_selector = 2131624070;
- // aapt resource value: 0x7f0d0087
- public const int mtrl_tabs_icon_color_selector_colored = 2131558535;
+ // aapt resource value: 0x7f0e0087
+ public const int mtrl_tabs_icon_color_selector_colored = 2131624071;
- // aapt resource value: 0x7f0d0088
- public const int mtrl_tabs_legacy_text_color_selector = 2131558536;
+ // aapt resource value: 0x7f0e0088
+ public const int mtrl_tabs_legacy_text_color_selector = 2131624072;
- // aapt resource value: 0x7f0d0089
- public const int mtrl_tabs_ripple_color = 2131558537;
+ // aapt resource value: 0x7f0e0089
+ public const int mtrl_tabs_ripple_color = 2131624073;
- // aapt resource value: 0x7f0d008a
- public const int mtrl_text_btn_text_color_selector = 2131558538;
+ // aapt resource value: 0x7f0e008a
+ public const int mtrl_text_btn_text_color_selector = 2131624074;
- // aapt resource value: 0x7f0d0050
- public const int mtrl_textinput_default_box_stroke_color = 2131558480;
+ // aapt resource value: 0x7f0e0050
+ public const int mtrl_textinput_default_box_stroke_color = 2131624016;
- // aapt resource value: 0x7f0d0051
- public const int mtrl_textinput_disabled_color = 2131558481;
+ // aapt resource value: 0x7f0e0051
+ public const int mtrl_textinput_disabled_color = 2131624017;
- // aapt resource value: 0x7f0d0052
- public const int mtrl_textinput_filled_box_default_background_color = 2131558482;
+ // aapt resource value: 0x7f0e0052
+ public const int mtrl_textinput_filled_box_default_background_color = 2131624018;
- // aapt resource value: 0x7f0d0053
- public const int mtrl_textinput_hovered_box_stroke_color = 2131558483;
+ // aapt resource value: 0x7f0e0053
+ public const int mtrl_textinput_hovered_box_stroke_color = 2131624019;
- // aapt resource value: 0x7f0d0058
- public const int notification_action_color_filter = 2131558488;
+ // aapt resource value: 0x7f0e0058
+ public const int notification_action_color_filter = 2131624024;
- // aapt resource value: 0x7f0d0059
- public const int notification_icon_bg_color = 2131558489;
+ // aapt resource value: 0x7f0e0059
+ public const int notification_icon_bg_color = 2131624025;
- // aapt resource value: 0x7f0d0040
- public const int notification_material_background_media_default_color = 2131558464;
+ // aapt resource value: 0x7f0e0040
+ public const int notification_material_background_media_default_color = 2131624000;
- // aapt resource value: 0x7f0d002c
- public const int primary_dark_material_dark = 2131558444;
+ // aapt resource value: 0x7f0e002c
+ public const int primary_dark_material_dark = 2131623980;
- // aapt resource value: 0x7f0d002d
- public const int primary_dark_material_light = 2131558445;
+ // aapt resource value: 0x7f0e002d
+ public const int primary_dark_material_light = 2131623981;
- // aapt resource value: 0x7f0d002e
- public const int primary_material_dark = 2131558446;
+ // aapt resource value: 0x7f0e002e
+ public const int primary_material_dark = 2131623982;
- // aapt resource value: 0x7f0d002f
- public const int primary_material_light = 2131558447;
+ // aapt resource value: 0x7f0e002f
+ public const int primary_material_light = 2131623983;
- // aapt resource value: 0x7f0d0030
- public const int primary_text_default_material_dark = 2131558448;
+ // aapt resource value: 0x7f0e0030
+ public const int primary_text_default_material_dark = 2131623984;
- // aapt resource value: 0x7f0d0031
- public const int primary_text_default_material_light = 2131558449;
+ // aapt resource value: 0x7f0e0031
+ public const int primary_text_default_material_light = 2131623985;
- // aapt resource value: 0x7f0d0032
- public const int primary_text_disabled_material_dark = 2131558450;
+ // aapt resource value: 0x7f0e0032
+ public const int primary_text_disabled_material_dark = 2131623986;
- // aapt resource value: 0x7f0d0033
- public const int primary_text_disabled_material_light = 2131558451;
+ // aapt resource value: 0x7f0e0033
+ public const int primary_text_disabled_material_light = 2131623987;
- // aapt resource value: 0x7f0d0034
- public const int ripple_material_dark = 2131558452;
+ // aapt resource value: 0x7f0e0034
+ public const int ripple_material_dark = 2131623988;
- // aapt resource value: 0x7f0d0035
- public const int ripple_material_light = 2131558453;
+ // aapt resource value: 0x7f0e0035
+ public const int ripple_material_light = 2131623989;
- // aapt resource value: 0x7f0d0036
- public const int secondary_text_default_material_dark = 2131558454;
+ // aapt resource value: 0x7f0e0036
+ public const int secondary_text_default_material_dark = 2131623990;
- // aapt resource value: 0x7f0d0037
- public const int secondary_text_default_material_light = 2131558455;
+ // aapt resource value: 0x7f0e0037
+ public const int secondary_text_default_material_light = 2131623991;
- // aapt resource value: 0x7f0d0038
- public const int secondary_text_disabled_material_dark = 2131558456;
+ // aapt resource value: 0x7f0e0038
+ public const int secondary_text_disabled_material_dark = 2131623992;
- // aapt resource value: 0x7f0d0039
- public const int secondary_text_disabled_material_light = 2131558457;
+ // aapt resource value: 0x7f0e0039
+ public const int secondary_text_disabled_material_light = 2131623993;
- // aapt resource value: 0x7f0d003a
- public const int switch_thumb_disabled_material_dark = 2131558458;
+ // aapt resource value: 0x7f0e003a
+ public const int switch_thumb_disabled_material_dark = 2131623994;
- // aapt resource value: 0x7f0d003b
- public const int switch_thumb_disabled_material_light = 2131558459;
+ // aapt resource value: 0x7f0e003b
+ public const int switch_thumb_disabled_material_light = 2131623995;
- // aapt resource value: 0x7f0d008b
- public const int switch_thumb_material_dark = 2131558539;
+ // aapt resource value: 0x7f0e008b
+ public const int switch_thumb_material_dark = 2131624075;
- // aapt resource value: 0x7f0d008c
- public const int switch_thumb_material_light = 2131558540;
+ // aapt resource value: 0x7f0e008c
+ public const int switch_thumb_material_light = 2131624076;
- // aapt resource value: 0x7f0d003c
- public const int switch_thumb_normal_material_dark = 2131558460;
+ // aapt resource value: 0x7f0e003c
+ public const int switch_thumb_normal_material_dark = 2131623996;
- // aapt resource value: 0x7f0d003d
- public const int switch_thumb_normal_material_light = 2131558461;
+ // aapt resource value: 0x7f0e003d
+ public const int switch_thumb_normal_material_light = 2131623997;
- // aapt resource value: 0x7f0d003e
- public const int tooltip_background_dark = 2131558462;
+ // aapt resource value: 0x7f0e003e
+ public const int tooltip_background_dark = 2131623998;
- // aapt resource value: 0x7f0d003f
- public const int tooltip_background_light = 2131558463;
+ // aapt resource value: 0x7f0e003f
+ public const int tooltip_background_light = 2131623999;
- // aapt resource value: 0x7f0d008d
- public const int white_disabled_material = 2131558541;
+ // aapt resource value: 0x7f0e008d
+ public const int white_disabled_material = 2131624077;
static Color()
{
@@ -7444,686 +7444,686 @@ namespace AideDeJeu.Droid
public partial class Dimension
{
- // aapt resource value: 0x7f09001a
- public const int abc_action_bar_content_inset_material = 2131296282;
+ // aapt resource value: 0x7f0a001a
+ public const int abc_action_bar_content_inset_material = 2131361818;
- // aapt resource value: 0x7f09001b
- public const int abc_action_bar_content_inset_with_nav = 2131296283;
+ // aapt resource value: 0x7f0a001b
+ public const int abc_action_bar_content_inset_with_nav = 2131361819;
- // aapt resource value: 0x7f090010
- public const int abc_action_bar_default_height_material = 2131296272;
+ // aapt resource value: 0x7f0a0010
+ public const int abc_action_bar_default_height_material = 2131361808;
- // aapt resource value: 0x7f09001c
- public const int abc_action_bar_default_padding_end_material = 2131296284;
+ // aapt resource value: 0x7f0a001c
+ public const int abc_action_bar_default_padding_end_material = 2131361820;
- // aapt resource value: 0x7f09001d
- public const int abc_action_bar_default_padding_start_material = 2131296285;
+ // aapt resource value: 0x7f0a001d
+ public const int abc_action_bar_default_padding_start_material = 2131361821;
- // aapt resource value: 0x7f09001f
- public const int abc_action_bar_elevation_material = 2131296287;
+ // aapt resource value: 0x7f0a001f
+ public const int abc_action_bar_elevation_material = 2131361823;
- // aapt resource value: 0x7f090020
- public const int abc_action_bar_icon_vertical_padding_material = 2131296288;
+ // aapt resource value: 0x7f0a0020
+ public const int abc_action_bar_icon_vertical_padding_material = 2131361824;
- // aapt resource value: 0x7f090021
- public const int abc_action_bar_overflow_padding_end_material = 2131296289;
+ // aapt resource value: 0x7f0a0021
+ public const int abc_action_bar_overflow_padding_end_material = 2131361825;
- // aapt resource value: 0x7f090022
- public const int abc_action_bar_overflow_padding_start_material = 2131296290;
+ // aapt resource value: 0x7f0a0022
+ public const int abc_action_bar_overflow_padding_start_material = 2131361826;
- // aapt resource value: 0x7f090023
- public const int abc_action_bar_stacked_max_height = 2131296291;
+ // aapt resource value: 0x7f0a0023
+ public const int abc_action_bar_stacked_max_height = 2131361827;
- // aapt resource value: 0x7f090024
- public const int abc_action_bar_stacked_tab_max_width = 2131296292;
+ // aapt resource value: 0x7f0a0024
+ public const int abc_action_bar_stacked_tab_max_width = 2131361828;
- // aapt resource value: 0x7f090025
- public const int abc_action_bar_subtitle_bottom_margin_material = 2131296293;
+ // aapt resource value: 0x7f0a0025
+ public const int abc_action_bar_subtitle_bottom_margin_material = 2131361829;
- // aapt resource value: 0x7f090026
- public const int abc_action_bar_subtitle_top_margin_material = 2131296294;
+ // aapt resource value: 0x7f0a0026
+ public const int abc_action_bar_subtitle_top_margin_material = 2131361830;
- // aapt resource value: 0x7f090027
- public const int abc_action_button_min_height_material = 2131296295;
+ // aapt resource value: 0x7f0a0027
+ public const int abc_action_button_min_height_material = 2131361831;
- // aapt resource value: 0x7f090028
- public const int abc_action_button_min_width_material = 2131296296;
+ // aapt resource value: 0x7f0a0028
+ public const int abc_action_button_min_width_material = 2131361832;
- // aapt resource value: 0x7f090029
- public const int abc_action_button_min_width_overflow_material = 2131296297;
+ // aapt resource value: 0x7f0a0029
+ public const int abc_action_button_min_width_overflow_material = 2131361833;
- // aapt resource value: 0x7f09000f
- public const int abc_alert_dialog_button_bar_height = 2131296271;
+ // aapt resource value: 0x7f0a000f
+ public const int abc_alert_dialog_button_bar_height = 2131361807;
- // aapt resource value: 0x7f09002a
- public const int abc_alert_dialog_button_dimen = 2131296298;
+ // aapt resource value: 0x7f0a002a
+ public const int abc_alert_dialog_button_dimen = 2131361834;
- // aapt resource value: 0x7f09002b
- public const int abc_button_inset_horizontal_material = 2131296299;
+ // aapt resource value: 0x7f0a002b
+ public const int abc_button_inset_horizontal_material = 2131361835;
- // aapt resource value: 0x7f09002c
- public const int abc_button_inset_vertical_material = 2131296300;
+ // aapt resource value: 0x7f0a002c
+ public const int abc_button_inset_vertical_material = 2131361836;
- // aapt resource value: 0x7f09002d
- public const int abc_button_padding_horizontal_material = 2131296301;
+ // aapt resource value: 0x7f0a002d
+ public const int abc_button_padding_horizontal_material = 2131361837;
- // aapt resource value: 0x7f09002e
- public const int abc_button_padding_vertical_material = 2131296302;
+ // aapt resource value: 0x7f0a002e
+ public const int abc_button_padding_vertical_material = 2131361838;
- // aapt resource value: 0x7f09002f
- public const int abc_cascading_menus_min_smallest_width = 2131296303;
+ // aapt resource value: 0x7f0a002f
+ public const int abc_cascading_menus_min_smallest_width = 2131361839;
- // aapt resource value: 0x7f090013
- public const int abc_config_prefDialogWidth = 2131296275;
+ // aapt resource value: 0x7f0a0013
+ public const int abc_config_prefDialogWidth = 2131361811;
- // aapt resource value: 0x7f090030
- public const int abc_control_corner_material = 2131296304;
+ // aapt resource value: 0x7f0a0030
+ public const int abc_control_corner_material = 2131361840;
- // aapt resource value: 0x7f090031
- public const int abc_control_inset_material = 2131296305;
+ // aapt resource value: 0x7f0a0031
+ public const int abc_control_inset_material = 2131361841;
- // aapt resource value: 0x7f090032
- public const int abc_control_padding_material = 2131296306;
+ // aapt resource value: 0x7f0a0032
+ public const int abc_control_padding_material = 2131361842;
- // aapt resource value: 0x7f090033
- public const int abc_dialog_corner_radius_material = 2131296307;
+ // aapt resource value: 0x7f0a0033
+ public const int abc_dialog_corner_radius_material = 2131361843;
- // aapt resource value: 0x7f090014
- public const int abc_dialog_fixed_height_major = 2131296276;
+ // aapt resource value: 0x7f0a0014
+ public const int abc_dialog_fixed_height_major = 2131361812;
- // aapt resource value: 0x7f090015
- public const int abc_dialog_fixed_height_minor = 2131296277;
+ // aapt resource value: 0x7f0a0015
+ public const int abc_dialog_fixed_height_minor = 2131361813;
- // aapt resource value: 0x7f090016
- public const int abc_dialog_fixed_width_major = 2131296278;
+ // aapt resource value: 0x7f0a0016
+ public const int abc_dialog_fixed_width_major = 2131361814;
- // aapt resource value: 0x7f090017
- public const int abc_dialog_fixed_width_minor = 2131296279;
+ // aapt resource value: 0x7f0a0017
+ public const int abc_dialog_fixed_width_minor = 2131361815;
- // aapt resource value: 0x7f090034
- public const int abc_dialog_list_padding_bottom_no_buttons = 2131296308;
+ // aapt resource value: 0x7f0a0034
+ public const int abc_dialog_list_padding_bottom_no_buttons = 2131361844;
- // aapt resource value: 0x7f090035
- public const int abc_dialog_list_padding_top_no_title = 2131296309;
+ // aapt resource value: 0x7f0a0035
+ public const int abc_dialog_list_padding_top_no_title = 2131361845;
- // aapt resource value: 0x7f090018
- public const int abc_dialog_min_width_major = 2131296280;
+ // aapt resource value: 0x7f0a0018
+ public const int abc_dialog_min_width_major = 2131361816;
- // aapt resource value: 0x7f090019
- public const int abc_dialog_min_width_minor = 2131296281;
+ // aapt resource value: 0x7f0a0019
+ public const int abc_dialog_min_width_minor = 2131361817;
- // aapt resource value: 0x7f090036
- public const int abc_dialog_padding_material = 2131296310;
+ // aapt resource value: 0x7f0a0036
+ public const int abc_dialog_padding_material = 2131361846;
- // aapt resource value: 0x7f090037
- public const int abc_dialog_padding_top_material = 2131296311;
+ // aapt resource value: 0x7f0a0037
+ public const int abc_dialog_padding_top_material = 2131361847;
- // aapt resource value: 0x7f090038
- public const int abc_dialog_title_divider_material = 2131296312;
+ // aapt resource value: 0x7f0a0038
+ public const int abc_dialog_title_divider_material = 2131361848;
- // aapt resource value: 0x7f090039
- public const int abc_disabled_alpha_material_dark = 2131296313;
+ // aapt resource value: 0x7f0a0039
+ public const int abc_disabled_alpha_material_dark = 2131361849;
- // aapt resource value: 0x7f09003a
- public const int abc_disabled_alpha_material_light = 2131296314;
+ // aapt resource value: 0x7f0a003a
+ public const int abc_disabled_alpha_material_light = 2131361850;
- // aapt resource value: 0x7f09003b
- public const int abc_dropdownitem_icon_width = 2131296315;
+ // aapt resource value: 0x7f0a003b
+ public const int abc_dropdownitem_icon_width = 2131361851;
- // aapt resource value: 0x7f09003c
- public const int abc_dropdownitem_text_padding_left = 2131296316;
+ // aapt resource value: 0x7f0a003c
+ public const int abc_dropdownitem_text_padding_left = 2131361852;
- // aapt resource value: 0x7f09003d
- public const int abc_dropdownitem_text_padding_right = 2131296317;
+ // aapt resource value: 0x7f0a003d
+ public const int abc_dropdownitem_text_padding_right = 2131361853;
- // aapt resource value: 0x7f09003e
- public const int abc_edit_text_inset_bottom_material = 2131296318;
+ // aapt resource value: 0x7f0a003e
+ public const int abc_edit_text_inset_bottom_material = 2131361854;
- // aapt resource value: 0x7f09003f
- public const int abc_edit_text_inset_horizontal_material = 2131296319;
+ // aapt resource value: 0x7f0a003f
+ public const int abc_edit_text_inset_horizontal_material = 2131361855;
- // aapt resource value: 0x7f090040
- public const int abc_edit_text_inset_top_material = 2131296320;
+ // aapt resource value: 0x7f0a0040
+ public const int abc_edit_text_inset_top_material = 2131361856;
- // aapt resource value: 0x7f090041
- public const int abc_floating_window_z = 2131296321;
+ // aapt resource value: 0x7f0a0041
+ public const int abc_floating_window_z = 2131361857;
- // aapt resource value: 0x7f090042
- public const int abc_list_item_padding_horizontal_material = 2131296322;
+ // aapt resource value: 0x7f0a0042
+ public const int abc_list_item_padding_horizontal_material = 2131361858;
- // aapt resource value: 0x7f090043
- public const int abc_panel_menu_list_width = 2131296323;
+ // aapt resource value: 0x7f0a0043
+ public const int abc_panel_menu_list_width = 2131361859;
- // aapt resource value: 0x7f090044
- public const int abc_progress_bar_height_material = 2131296324;
+ // aapt resource value: 0x7f0a0044
+ public const int abc_progress_bar_height_material = 2131361860;
- // aapt resource value: 0x7f090045
- public const int abc_search_view_preferred_height = 2131296325;
+ // aapt resource value: 0x7f0a0045
+ public const int abc_search_view_preferred_height = 2131361861;
- // aapt resource value: 0x7f090046
- public const int abc_search_view_preferred_width = 2131296326;
+ // aapt resource value: 0x7f0a0046
+ public const int abc_search_view_preferred_width = 2131361862;
- // aapt resource value: 0x7f090047
- public const int abc_seekbar_track_background_height_material = 2131296327;
+ // aapt resource value: 0x7f0a0047
+ public const int abc_seekbar_track_background_height_material = 2131361863;
- // aapt resource value: 0x7f090048
- public const int abc_seekbar_track_progress_height_material = 2131296328;
+ // aapt resource value: 0x7f0a0048
+ public const int abc_seekbar_track_progress_height_material = 2131361864;
- // aapt resource value: 0x7f090049
- public const int abc_select_dialog_padding_start_material = 2131296329;
+ // aapt resource value: 0x7f0a0049
+ public const int abc_select_dialog_padding_start_material = 2131361865;
- // aapt resource value: 0x7f09001e
- public const int abc_switch_padding = 2131296286;
+ // aapt resource value: 0x7f0a001e
+ public const int abc_switch_padding = 2131361822;
- // aapt resource value: 0x7f09004a
- public const int abc_text_size_body_1_material = 2131296330;
+ // aapt resource value: 0x7f0a004a
+ public const int abc_text_size_body_1_material = 2131361866;
- // aapt resource value: 0x7f09004b
- public const int abc_text_size_body_2_material = 2131296331;
+ // aapt resource value: 0x7f0a004b
+ public const int abc_text_size_body_2_material = 2131361867;
- // aapt resource value: 0x7f09004c
- public const int abc_text_size_button_material = 2131296332;
+ // aapt resource value: 0x7f0a004c
+ public const int abc_text_size_button_material = 2131361868;
- // aapt resource value: 0x7f09004d
- public const int abc_text_size_caption_material = 2131296333;
+ // aapt resource value: 0x7f0a004d
+ public const int abc_text_size_caption_material = 2131361869;
- // aapt resource value: 0x7f09004e
- public const int abc_text_size_display_1_material = 2131296334;
+ // aapt resource value: 0x7f0a004e
+ public const int abc_text_size_display_1_material = 2131361870;
- // aapt resource value: 0x7f09004f
- public const int abc_text_size_display_2_material = 2131296335;
+ // aapt resource value: 0x7f0a004f
+ public const int abc_text_size_display_2_material = 2131361871;
- // aapt resource value: 0x7f090050
- public const int abc_text_size_display_3_material = 2131296336;
+ // aapt resource value: 0x7f0a0050
+ public const int abc_text_size_display_3_material = 2131361872;
- // aapt resource value: 0x7f090051
- public const int abc_text_size_display_4_material = 2131296337;
+ // aapt resource value: 0x7f0a0051
+ public const int abc_text_size_display_4_material = 2131361873;
- // aapt resource value: 0x7f090052
- public const int abc_text_size_headline_material = 2131296338;
+ // aapt resource value: 0x7f0a0052
+ public const int abc_text_size_headline_material = 2131361874;
- // aapt resource value: 0x7f090053
- public const int abc_text_size_large_material = 2131296339;
+ // aapt resource value: 0x7f0a0053
+ public const int abc_text_size_large_material = 2131361875;
- // aapt resource value: 0x7f090054
- public const int abc_text_size_medium_material = 2131296340;
+ // aapt resource value: 0x7f0a0054
+ public const int abc_text_size_medium_material = 2131361876;
- // aapt resource value: 0x7f090055
- public const int abc_text_size_menu_header_material = 2131296341;
+ // aapt resource value: 0x7f0a0055
+ public const int abc_text_size_menu_header_material = 2131361877;
- // aapt resource value: 0x7f090056
- public const int abc_text_size_menu_material = 2131296342;
+ // aapt resource value: 0x7f0a0056
+ public const int abc_text_size_menu_material = 2131361878;
- // aapt resource value: 0x7f090057
- public const int abc_text_size_small_material = 2131296343;
+ // aapt resource value: 0x7f0a0057
+ public const int abc_text_size_small_material = 2131361879;
- // aapt resource value: 0x7f090058
- public const int abc_text_size_subhead_material = 2131296344;
+ // aapt resource value: 0x7f0a0058
+ public const int abc_text_size_subhead_material = 2131361880;
- // aapt resource value: 0x7f090011
- public const int abc_text_size_subtitle_material_toolbar = 2131296273;
+ // aapt resource value: 0x7f0a0011
+ public const int abc_text_size_subtitle_material_toolbar = 2131361809;
- // aapt resource value: 0x7f090059
- public const int abc_text_size_title_material = 2131296345;
+ // aapt resource value: 0x7f0a0059
+ public const int abc_text_size_title_material = 2131361881;
- // aapt resource value: 0x7f090012
- public const int abc_text_size_title_material_toolbar = 2131296274;
+ // aapt resource value: 0x7f0a0012
+ public const int abc_text_size_title_material_toolbar = 2131361810;
- // aapt resource value: 0x7f0900cb
- public const int browser_actions_context_menu_max_width = 2131296459;
+ // aapt resource value: 0x7f0a00cb
+ public const int browser_actions_context_menu_max_width = 2131361995;
- // aapt resource value: 0x7f0900cc
- public const int browser_actions_context_menu_min_padding = 2131296460;
+ // aapt resource value: 0x7f0a00cc
+ public const int browser_actions_context_menu_min_padding = 2131361996;
- // aapt resource value: 0x7f09000c
- public const int cardview_compat_inset_shadow = 2131296268;
+ // aapt resource value: 0x7f0a000c
+ public const int cardview_compat_inset_shadow = 2131361804;
- // aapt resource value: 0x7f09000d
- public const int cardview_default_elevation = 2131296269;
+ // aapt resource value: 0x7f0a000d
+ public const int cardview_default_elevation = 2131361805;
- // aapt resource value: 0x7f09000e
- public const int cardview_default_radius = 2131296270;
+ // aapt resource value: 0x7f0a000e
+ public const int cardview_default_radius = 2131361806;
- // aapt resource value: 0x7f0900d1
- public const int compat_button_inset_horizontal_material = 2131296465;
+ // aapt resource value: 0x7f0a00d1
+ public const int compat_button_inset_horizontal_material = 2131362001;
- // aapt resource value: 0x7f0900d2
- public const int compat_button_inset_vertical_material = 2131296466;
+ // aapt resource value: 0x7f0a00d2
+ public const int compat_button_inset_vertical_material = 2131362002;
- // aapt resource value: 0x7f0900d3
- public const int compat_button_padding_horizontal_material = 2131296467;
+ // aapt resource value: 0x7f0a00d3
+ public const int compat_button_padding_horizontal_material = 2131362003;
- // aapt resource value: 0x7f0900d4
- public const int compat_button_padding_vertical_material = 2131296468;
+ // aapt resource value: 0x7f0a00d4
+ public const int compat_button_padding_vertical_material = 2131362004;
- // aapt resource value: 0x7f0900d5
- public const int compat_control_corner_material = 2131296469;
+ // aapt resource value: 0x7f0a00d5
+ public const int compat_control_corner_material = 2131362005;
- // aapt resource value: 0x7f0900d6
- public const int compat_notification_large_icon_max_height = 2131296470;
+ // aapt resource value: 0x7f0a00d6
+ public const int compat_notification_large_icon_max_height = 2131362006;
- // aapt resource value: 0x7f0900d7
- public const int compat_notification_large_icon_max_width = 2131296471;
+ // aapt resource value: 0x7f0a00d7
+ public const int compat_notification_large_icon_max_width = 2131362007;
- // aapt resource value: 0x7f090077
- public const int design_appbar_elevation = 2131296375;
+ // aapt resource value: 0x7f0a0077
+ public const int design_appbar_elevation = 2131361911;
- // aapt resource value: 0x7f090078
- public const int design_bottom_navigation_active_item_max_width = 2131296376;
+ // aapt resource value: 0x7f0a0078
+ public const int design_bottom_navigation_active_item_max_width = 2131361912;
- // aapt resource value: 0x7f090079
- public const int design_bottom_navigation_active_item_min_width = 2131296377;
+ // aapt resource value: 0x7f0a0079
+ public const int design_bottom_navigation_active_item_min_width = 2131361913;
- // aapt resource value: 0x7f09007a
- public const int design_bottom_navigation_active_text_size = 2131296378;
+ // aapt resource value: 0x7f0a007a
+ public const int design_bottom_navigation_active_text_size = 2131361914;
- // aapt resource value: 0x7f09007b
- public const int design_bottom_navigation_elevation = 2131296379;
+ // aapt resource value: 0x7f0a007b
+ public const int design_bottom_navigation_elevation = 2131361915;
- // aapt resource value: 0x7f09007c
- public const int design_bottom_navigation_height = 2131296380;
+ // aapt resource value: 0x7f0a007c
+ public const int design_bottom_navigation_height = 2131361916;
- // aapt resource value: 0x7f09007d
- public const int design_bottom_navigation_icon_size = 2131296381;
+ // aapt resource value: 0x7f0a007d
+ public const int design_bottom_navigation_icon_size = 2131361917;
- // aapt resource value: 0x7f09007e
- public const int design_bottom_navigation_item_max_width = 2131296382;
+ // aapt resource value: 0x7f0a007e
+ public const int design_bottom_navigation_item_max_width = 2131361918;
- // aapt resource value: 0x7f09007f
- public const int design_bottom_navigation_item_min_width = 2131296383;
+ // aapt resource value: 0x7f0a007f
+ public const int design_bottom_navigation_item_min_width = 2131361919;
- // aapt resource value: 0x7f090080
- public const int design_bottom_navigation_margin = 2131296384;
+ // aapt resource value: 0x7f0a0080
+ public const int design_bottom_navigation_margin = 2131361920;
- // aapt resource value: 0x7f090081
- public const int design_bottom_navigation_shadow_height = 2131296385;
+ // aapt resource value: 0x7f0a0081
+ public const int design_bottom_navigation_shadow_height = 2131361921;
- // aapt resource value: 0x7f090082
- public const int design_bottom_navigation_text_size = 2131296386;
+ // aapt resource value: 0x7f0a0082
+ public const int design_bottom_navigation_text_size = 2131361922;
- // aapt resource value: 0x7f090083
- public const int design_bottom_sheet_modal_elevation = 2131296387;
+ // aapt resource value: 0x7f0a0083
+ public const int design_bottom_sheet_modal_elevation = 2131361923;
- // aapt resource value: 0x7f090084
- public const int design_bottom_sheet_peek_height_min = 2131296388;
+ // aapt resource value: 0x7f0a0084
+ public const int design_bottom_sheet_peek_height_min = 2131361924;
- // aapt resource value: 0x7f090085
- public const int design_fab_border_width = 2131296389;
+ // aapt resource value: 0x7f0a0085
+ public const int design_fab_border_width = 2131361925;
- // aapt resource value: 0x7f090086
- public const int design_fab_elevation = 2131296390;
+ // aapt resource value: 0x7f0a0086
+ public const int design_fab_elevation = 2131361926;
- // aapt resource value: 0x7f090087
- public const int design_fab_image_size = 2131296391;
+ // aapt resource value: 0x7f0a0087
+ public const int design_fab_image_size = 2131361927;
- // aapt resource value: 0x7f090088
- public const int design_fab_size_mini = 2131296392;
+ // aapt resource value: 0x7f0a0088
+ public const int design_fab_size_mini = 2131361928;
- // aapt resource value: 0x7f090089
- public const int design_fab_size_normal = 2131296393;
+ // aapt resource value: 0x7f0a0089
+ public const int design_fab_size_normal = 2131361929;
- // aapt resource value: 0x7f09008a
- public const int design_fab_translation_z_hovered_focused = 2131296394;
+ // aapt resource value: 0x7f0a008a
+ public const int design_fab_translation_z_hovered_focused = 2131361930;
- // aapt resource value: 0x7f09008b
- public const int design_fab_translation_z_pressed = 2131296395;
+ // aapt resource value: 0x7f0a008b
+ public const int design_fab_translation_z_pressed = 2131361931;
- // aapt resource value: 0x7f09008c
- public const int design_navigation_elevation = 2131296396;
+ // aapt resource value: 0x7f0a008c
+ public const int design_navigation_elevation = 2131361932;
- // aapt resource value: 0x7f09008d
- public const int design_navigation_icon_padding = 2131296397;
+ // aapt resource value: 0x7f0a008d
+ public const int design_navigation_icon_padding = 2131361933;
- // aapt resource value: 0x7f09008e
- public const int design_navigation_icon_size = 2131296398;
+ // aapt resource value: 0x7f0a008e
+ public const int design_navigation_icon_size = 2131361934;
- // aapt resource value: 0x7f09008f
- public const int design_navigation_item_horizontal_padding = 2131296399;
+ // aapt resource value: 0x7f0a008f
+ public const int design_navigation_item_horizontal_padding = 2131361935;
- // aapt resource value: 0x7f090090
- public const int design_navigation_item_icon_padding = 2131296400;
+ // aapt resource value: 0x7f0a0090
+ public const int design_navigation_item_icon_padding = 2131361936;
- // aapt resource value: 0x7f09006f
- public const int design_navigation_max_width = 2131296367;
+ // aapt resource value: 0x7f0a006f
+ public const int design_navigation_max_width = 2131361903;
- // aapt resource value: 0x7f090091
- public const int design_navigation_padding_bottom = 2131296401;
+ // aapt resource value: 0x7f0a0091
+ public const int design_navigation_padding_bottom = 2131361937;
- // aapt resource value: 0x7f090092
- public const int design_navigation_separator_vertical_padding = 2131296402;
+ // aapt resource value: 0x7f0a0092
+ public const int design_navigation_separator_vertical_padding = 2131361938;
- // aapt resource value: 0x7f090070
- public const int design_snackbar_action_inline_max_width = 2131296368;
+ // aapt resource value: 0x7f0a0070
+ public const int design_snackbar_action_inline_max_width = 2131361904;
- // aapt resource value: 0x7f090071
- public const int design_snackbar_background_corner_radius = 2131296369;
+ // aapt resource value: 0x7f0a0071
+ public const int design_snackbar_background_corner_radius = 2131361905;
- // aapt resource value: 0x7f090093
- public const int design_snackbar_elevation = 2131296403;
+ // aapt resource value: 0x7f0a0093
+ public const int design_snackbar_elevation = 2131361939;
- // aapt resource value: 0x7f090072
- public const int design_snackbar_extra_spacing_horizontal = 2131296370;
+ // aapt resource value: 0x7f0a0072
+ public const int design_snackbar_extra_spacing_horizontal = 2131361906;
- // aapt resource value: 0x7f090073
- public const int design_snackbar_max_width = 2131296371;
+ // aapt resource value: 0x7f0a0073
+ public const int design_snackbar_max_width = 2131361907;
- // aapt resource value: 0x7f090074
- public const int design_snackbar_min_width = 2131296372;
+ // aapt resource value: 0x7f0a0074
+ public const int design_snackbar_min_width = 2131361908;
- // aapt resource value: 0x7f090094
- public const int design_snackbar_padding_horizontal = 2131296404;
+ // aapt resource value: 0x7f0a0094
+ public const int design_snackbar_padding_horizontal = 2131361940;
- // aapt resource value: 0x7f090095
- public const int design_snackbar_padding_vertical = 2131296405;
+ // aapt resource value: 0x7f0a0095
+ public const int design_snackbar_padding_vertical = 2131361941;
- // aapt resource value: 0x7f090075
- public const int design_snackbar_padding_vertical_2lines = 2131296373;
+ // aapt resource value: 0x7f0a0075
+ public const int design_snackbar_padding_vertical_2lines = 2131361909;
- // aapt resource value: 0x7f090096
- public const int design_snackbar_text_size = 2131296406;
+ // aapt resource value: 0x7f0a0096
+ public const int design_snackbar_text_size = 2131361942;
- // aapt resource value: 0x7f090097
- public const int design_tab_max_width = 2131296407;
+ // aapt resource value: 0x7f0a0097
+ public const int design_tab_max_width = 2131361943;
- // aapt resource value: 0x7f090076
- public const int design_tab_scrollable_min_width = 2131296374;
+ // aapt resource value: 0x7f0a0076
+ public const int design_tab_scrollable_min_width = 2131361910;
- // aapt resource value: 0x7f090098
- public const int design_tab_text_size = 2131296408;
+ // aapt resource value: 0x7f0a0098
+ public const int design_tab_text_size = 2131361944;
- // aapt resource value: 0x7f090099
- public const int design_tab_text_size_2line = 2131296409;
+ // aapt resource value: 0x7f0a0099
+ public const int design_tab_text_size_2line = 2131361945;
- // aapt resource value: 0x7f09009a
- public const int design_textinput_caption_translate_y = 2131296410;
+ // aapt resource value: 0x7f0a009a
+ public const int design_textinput_caption_translate_y = 2131361946;
- // aapt resource value: 0x7f09005a
- public const int disabled_alpha_material_dark = 2131296346;
+ // aapt resource value: 0x7f0a005a
+ public const int disabled_alpha_material_dark = 2131361882;
- // aapt resource value: 0x7f09005b
- public const int disabled_alpha_material_light = 2131296347;
+ // aapt resource value: 0x7f0a005b
+ public const int disabled_alpha_material_light = 2131361883;
- // aapt resource value: 0x7f090000
- public const int fastscroll_default_thickness = 2131296256;
+ // aapt resource value: 0x7f0a0000
+ public const int fastscroll_default_thickness = 2131361792;
- // aapt resource value: 0x7f090001
- public const int fastscroll_margin = 2131296257;
+ // aapt resource value: 0x7f0a0001
+ public const int fastscroll_margin = 2131361793;
- // aapt resource value: 0x7f090002
- public const int fastscroll_minimum_range = 2131296258;
+ // aapt resource value: 0x7f0a0002
+ public const int fastscroll_minimum_range = 2131361794;
- // aapt resource value: 0x7f09005c
- public const int highlight_alpha_material_colored = 2131296348;
+ // aapt resource value: 0x7f0a005c
+ public const int highlight_alpha_material_colored = 2131361884;
- // aapt resource value: 0x7f09005d
- public const int highlight_alpha_material_dark = 2131296349;
+ // aapt resource value: 0x7f0a005d
+ public const int highlight_alpha_material_dark = 2131361885;
- // aapt resource value: 0x7f09005e
- public const int highlight_alpha_material_light = 2131296350;
+ // aapt resource value: 0x7f0a005e
+ public const int highlight_alpha_material_light = 2131361886;
- // aapt resource value: 0x7f09005f
- public const int hint_alpha_material_dark = 2131296351;
+ // aapt resource value: 0x7f0a005f
+ public const int hint_alpha_material_dark = 2131361887;
- // aapt resource value: 0x7f090060
- public const int hint_alpha_material_light = 2131296352;
+ // aapt resource value: 0x7f0a0060
+ public const int hint_alpha_material_light = 2131361888;
- // aapt resource value: 0x7f090061
- public const int hint_pressed_alpha_material_dark = 2131296353;
+ // aapt resource value: 0x7f0a0061
+ public const int hint_pressed_alpha_material_dark = 2131361889;
- // aapt resource value: 0x7f090062
- public const int hint_pressed_alpha_material_light = 2131296354;
+ // aapt resource value: 0x7f0a0062
+ public const int hint_pressed_alpha_material_light = 2131361890;
- // aapt resource value: 0x7f090003
- public const int item_touch_helper_max_drag_scroll_per_frame = 2131296259;
+ // aapt resource value: 0x7f0a0003
+ public const int item_touch_helper_max_drag_scroll_per_frame = 2131361795;
- // aapt resource value: 0x7f090004
- public const int item_touch_helper_swipe_escape_max_velocity = 2131296260;
+ // aapt resource value: 0x7f0a0004
+ public const int item_touch_helper_swipe_escape_max_velocity = 2131361796;
- // aapt resource value: 0x7f090005
- public const int item_touch_helper_swipe_escape_velocity = 2131296261;
+ // aapt resource value: 0x7f0a0005
+ public const int item_touch_helper_swipe_escape_velocity = 2131361797;
- // aapt resource value: 0x7f090006
- public const int mr_controller_volume_group_list_item_height = 2131296262;
+ // aapt resource value: 0x7f0a0006
+ public const int mr_controller_volume_group_list_item_height = 2131361798;
- // aapt resource value: 0x7f090007
- public const int mr_controller_volume_group_list_item_icon_size = 2131296263;
+ // aapt resource value: 0x7f0a0007
+ public const int mr_controller_volume_group_list_item_icon_size = 2131361799;
- // aapt resource value: 0x7f090008
- public const int mr_controller_volume_group_list_max_height = 2131296264;
+ // aapt resource value: 0x7f0a0008
+ public const int mr_controller_volume_group_list_max_height = 2131361800;
- // aapt resource value: 0x7f09000b
- public const int mr_controller_volume_group_list_padding_top = 2131296267;
+ // aapt resource value: 0x7f0a000b
+ public const int mr_controller_volume_group_list_padding_top = 2131361803;
- // aapt resource value: 0x7f090009
- public const int mr_dialog_fixed_width_major = 2131296265;
+ // aapt resource value: 0x7f0a0009
+ public const int mr_dialog_fixed_width_major = 2131361801;
- // aapt resource value: 0x7f09000a
- public const int mr_dialog_fixed_width_minor = 2131296266;
+ // aapt resource value: 0x7f0a000a
+ public const int mr_dialog_fixed_width_minor = 2131361802;
- // aapt resource value: 0x7f09009b
- public const int mtrl_bottomappbar_fabOffsetEndMode = 2131296411;
+ // aapt resource value: 0x7f0a009b
+ public const int mtrl_bottomappbar_fabOffsetEndMode = 2131361947;
- // aapt resource value: 0x7f09009c
- public const int mtrl_bottomappbar_fab_cradle_margin = 2131296412;
+ // aapt resource value: 0x7f0a009c
+ public const int mtrl_bottomappbar_fab_cradle_margin = 2131361948;
- // aapt resource value: 0x7f09009d
- public const int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 2131296413;
+ // aapt resource value: 0x7f0a009d
+ public const int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 2131361949;
- // aapt resource value: 0x7f09009e
- public const int mtrl_bottomappbar_fab_cradle_vertical_offset = 2131296414;
+ // aapt resource value: 0x7f0a009e
+ public const int mtrl_bottomappbar_fab_cradle_vertical_offset = 2131361950;
- // aapt resource value: 0x7f09009f
- public const int mtrl_bottomappbar_height = 2131296415;
+ // aapt resource value: 0x7f0a009f
+ public const int mtrl_bottomappbar_height = 2131361951;
- // aapt resource value: 0x7f0900a0
- public const int mtrl_btn_corner_radius = 2131296416;
+ // aapt resource value: 0x7f0a00a0
+ public const int mtrl_btn_corner_radius = 2131361952;
- // aapt resource value: 0x7f0900a1
- public const int mtrl_btn_dialog_btn_min_width = 2131296417;
+ // aapt resource value: 0x7f0a00a1
+ public const int mtrl_btn_dialog_btn_min_width = 2131361953;
- // aapt resource value: 0x7f0900a2
- public const int mtrl_btn_disabled_elevation = 2131296418;
+ // aapt resource value: 0x7f0a00a2
+ public const int mtrl_btn_disabled_elevation = 2131361954;
- // aapt resource value: 0x7f0900a3
- public const int mtrl_btn_disabled_z = 2131296419;
+ // aapt resource value: 0x7f0a00a3
+ public const int mtrl_btn_disabled_z = 2131361955;
- // aapt resource value: 0x7f0900a4
- public const int mtrl_btn_elevation = 2131296420;
+ // aapt resource value: 0x7f0a00a4
+ public const int mtrl_btn_elevation = 2131361956;
- // aapt resource value: 0x7f0900a5
- public const int mtrl_btn_focused_z = 2131296421;
+ // aapt resource value: 0x7f0a00a5
+ public const int mtrl_btn_focused_z = 2131361957;
- // aapt resource value: 0x7f0900a6
- public const int mtrl_btn_hovered_z = 2131296422;
+ // aapt resource value: 0x7f0a00a6
+ public const int mtrl_btn_hovered_z = 2131361958;
- // aapt resource value: 0x7f0900a7
- public const int mtrl_btn_icon_btn_padding_left = 2131296423;
+ // aapt resource value: 0x7f0a00a7
+ public const int mtrl_btn_icon_btn_padding_left = 2131361959;
- // aapt resource value: 0x7f0900a8
- public const int mtrl_btn_icon_padding = 2131296424;
+ // aapt resource value: 0x7f0a00a8
+ public const int mtrl_btn_icon_padding = 2131361960;
- // aapt resource value: 0x7f0900a9
- public const int mtrl_btn_inset = 2131296425;
+ // aapt resource value: 0x7f0a00a9
+ public const int mtrl_btn_inset = 2131361961;
- // aapt resource value: 0x7f0900aa
- public const int mtrl_btn_letter_spacing = 2131296426;
+ // aapt resource value: 0x7f0a00aa
+ public const int mtrl_btn_letter_spacing = 2131361962;
- // aapt resource value: 0x7f0900ab
- public const int mtrl_btn_padding_bottom = 2131296427;
+ // aapt resource value: 0x7f0a00ab
+ public const int mtrl_btn_padding_bottom = 2131361963;
- // aapt resource value: 0x7f0900ac
- public const int mtrl_btn_padding_left = 2131296428;
+ // aapt resource value: 0x7f0a00ac
+ public const int mtrl_btn_padding_left = 2131361964;
- // aapt resource value: 0x7f0900ad
- public const int mtrl_btn_padding_right = 2131296429;
+ // aapt resource value: 0x7f0a00ad
+ public const int mtrl_btn_padding_right = 2131361965;
- // aapt resource value: 0x7f0900ae
- public const int mtrl_btn_padding_top = 2131296430;
+ // aapt resource value: 0x7f0a00ae
+ public const int mtrl_btn_padding_top = 2131361966;
- // aapt resource value: 0x7f0900af
- public const int mtrl_btn_pressed_z = 2131296431;
+ // aapt resource value: 0x7f0a00af
+ public const int mtrl_btn_pressed_z = 2131361967;
- // aapt resource value: 0x7f0900b0
- public const int mtrl_btn_stroke_size = 2131296432;
+ // aapt resource value: 0x7f0a00b0
+ public const int mtrl_btn_stroke_size = 2131361968;
- // aapt resource value: 0x7f0900b1
- public const int mtrl_btn_text_btn_icon_padding = 2131296433;
+ // aapt resource value: 0x7f0a00b1
+ public const int mtrl_btn_text_btn_icon_padding = 2131361969;
- // aapt resource value: 0x7f0900b2
- public const int mtrl_btn_text_btn_padding_left = 2131296434;
+ // aapt resource value: 0x7f0a00b2
+ public const int mtrl_btn_text_btn_padding_left = 2131361970;
- // aapt resource value: 0x7f0900b3
- public const int mtrl_btn_text_btn_padding_right = 2131296435;
+ // aapt resource value: 0x7f0a00b3
+ public const int mtrl_btn_text_btn_padding_right = 2131361971;
- // aapt resource value: 0x7f0900b4
- public const int mtrl_btn_text_size = 2131296436;
+ // aapt resource value: 0x7f0a00b4
+ public const int mtrl_btn_text_size = 2131361972;
- // aapt resource value: 0x7f0900b5
- public const int mtrl_btn_z = 2131296437;
+ // aapt resource value: 0x7f0a00b5
+ public const int mtrl_btn_z = 2131361973;
- // aapt resource value: 0x7f0900b6
- public const int mtrl_card_elevation = 2131296438;
+ // aapt resource value: 0x7f0a00b6
+ public const int mtrl_card_elevation = 2131361974;
- // aapt resource value: 0x7f0900b7
- public const int mtrl_card_spacing = 2131296439;
+ // aapt resource value: 0x7f0a00b7
+ public const int mtrl_card_spacing = 2131361975;
- // aapt resource value: 0x7f0900b8
- public const int mtrl_chip_pressed_translation_z = 2131296440;
+ // aapt resource value: 0x7f0a00b8
+ public const int mtrl_chip_pressed_translation_z = 2131361976;
- // aapt resource value: 0x7f0900b9
- public const int mtrl_chip_text_size = 2131296441;
+ // aapt resource value: 0x7f0a00b9
+ public const int mtrl_chip_text_size = 2131361977;
- // aapt resource value: 0x7f0900ba
- public const int mtrl_fab_elevation = 2131296442;
+ // aapt resource value: 0x7f0a00ba
+ public const int mtrl_fab_elevation = 2131361978;
- // aapt resource value: 0x7f0900bb
- public const int mtrl_fab_translation_z_hovered_focused = 2131296443;
+ // aapt resource value: 0x7f0a00bb
+ public const int mtrl_fab_translation_z_hovered_focused = 2131361979;
- // aapt resource value: 0x7f0900bc
- public const int mtrl_fab_translation_z_pressed = 2131296444;
+ // aapt resource value: 0x7f0a00bc
+ public const int mtrl_fab_translation_z_pressed = 2131361980;
- // aapt resource value: 0x7f0900bd
- public const int mtrl_navigation_elevation = 2131296445;
+ // aapt resource value: 0x7f0a00bd
+ public const int mtrl_navigation_elevation = 2131361981;
- // aapt resource value: 0x7f0900be
- public const int mtrl_navigation_item_horizontal_padding = 2131296446;
+ // aapt resource value: 0x7f0a00be
+ public const int mtrl_navigation_item_horizontal_padding = 2131361982;
- // aapt resource value: 0x7f0900bf
- public const int mtrl_navigation_item_icon_padding = 2131296447;
+ // aapt resource value: 0x7f0a00bf
+ public const int mtrl_navigation_item_icon_padding = 2131361983;
- // aapt resource value: 0x7f0900c0
- public const int mtrl_snackbar_background_corner_radius = 2131296448;
+ // aapt resource value: 0x7f0a00c0
+ public const int mtrl_snackbar_background_corner_radius = 2131361984;
- // aapt resource value: 0x7f0900c1
- public const int mtrl_snackbar_margin = 2131296449;
+ // aapt resource value: 0x7f0a00c1
+ public const int mtrl_snackbar_margin = 2131361985;
- // aapt resource value: 0x7f0900c2
- public const int mtrl_textinput_box_bottom_offset = 2131296450;
+ // aapt resource value: 0x7f0a00c2
+ public const int mtrl_textinput_box_bottom_offset = 2131361986;
- // aapt resource value: 0x7f0900c3
- public const int mtrl_textinput_box_corner_radius_medium = 2131296451;
+ // aapt resource value: 0x7f0a00c3
+ public const int mtrl_textinput_box_corner_radius_medium = 2131361987;
- // aapt resource value: 0x7f0900c4
- public const int mtrl_textinput_box_corner_radius_small = 2131296452;
+ // aapt resource value: 0x7f0a00c4
+ public const int mtrl_textinput_box_corner_radius_small = 2131361988;
- // aapt resource value: 0x7f0900c5
- public const int mtrl_textinput_box_label_cutout_padding = 2131296453;
+ // aapt resource value: 0x7f0a00c5
+ public const int mtrl_textinput_box_label_cutout_padding = 2131361989;
- // aapt resource value: 0x7f0900c6
- public const int mtrl_textinput_box_padding_end = 2131296454;
+ // aapt resource value: 0x7f0a00c6
+ public const int mtrl_textinput_box_padding_end = 2131361990;
- // aapt resource value: 0x7f0900c7
- public const int mtrl_textinput_box_stroke_width_default = 2131296455;
+ // aapt resource value: 0x7f0a00c7
+ public const int mtrl_textinput_box_stroke_width_default = 2131361991;
- // aapt resource value: 0x7f0900c8
- public const int mtrl_textinput_box_stroke_width_focused = 2131296456;
+ // aapt resource value: 0x7f0a00c8
+ public const int mtrl_textinput_box_stroke_width_focused = 2131361992;
- // aapt resource value: 0x7f0900c9
- public const int mtrl_textinput_outline_box_expanded_padding = 2131296457;
+ // aapt resource value: 0x7f0a00c9
+ public const int mtrl_textinput_outline_box_expanded_padding = 2131361993;
- // aapt resource value: 0x7f0900ca
- public const int mtrl_toolbar_default_height = 2131296458;
+ // aapt resource value: 0x7f0a00ca
+ public const int mtrl_toolbar_default_height = 2131361994;
- // aapt resource value: 0x7f0900d8
- public const int notification_action_icon_size = 2131296472;
+ // aapt resource value: 0x7f0a00d8
+ public const int notification_action_icon_size = 2131362008;
- // aapt resource value: 0x7f0900d9
- public const int notification_action_text_size = 2131296473;
+ // aapt resource value: 0x7f0a00d9
+ public const int notification_action_text_size = 2131362009;
- // aapt resource value: 0x7f0900da
- public const int notification_big_circle_margin = 2131296474;
+ // aapt resource value: 0x7f0a00da
+ public const int notification_big_circle_margin = 2131362010;
- // aapt resource value: 0x7f0900ce
- public const int notification_content_margin_start = 2131296462;
+ // aapt resource value: 0x7f0a00ce
+ public const int notification_content_margin_start = 2131361998;
- // aapt resource value: 0x7f0900db
- public const int notification_large_icon_height = 2131296475;
+ // aapt resource value: 0x7f0a00db
+ public const int notification_large_icon_height = 2131362011;
- // aapt resource value: 0x7f0900dc
- public const int notification_large_icon_width = 2131296476;
+ // aapt resource value: 0x7f0a00dc
+ public const int notification_large_icon_width = 2131362012;
- // aapt resource value: 0x7f0900cf
- public const int notification_main_column_padding_top = 2131296463;
+ // aapt resource value: 0x7f0a00cf
+ public const int notification_main_column_padding_top = 2131361999;
- // aapt resource value: 0x7f0900d0
- public const int notification_media_narrow_margin = 2131296464;
+ // aapt resource value: 0x7f0a00d0
+ public const int notification_media_narrow_margin = 2131362000;
- // aapt resource value: 0x7f0900dd
- public const int notification_right_icon_size = 2131296477;
+ // aapt resource value: 0x7f0a00dd
+ public const int notification_right_icon_size = 2131362013;
- // aapt resource value: 0x7f0900cd
- public const int notification_right_side_padding_top = 2131296461;
+ // aapt resource value: 0x7f0a00cd
+ public const int notification_right_side_padding_top = 2131361997;
- // aapt resource value: 0x7f0900de
- public const int notification_small_icon_background_padding = 2131296478;
+ // aapt resource value: 0x7f0a00de
+ public const int notification_small_icon_background_padding = 2131362014;
- // aapt resource value: 0x7f0900df
- public const int notification_small_icon_size_as_large = 2131296479;
+ // aapt resource value: 0x7f0a00df
+ public const int notification_small_icon_size_as_large = 2131362015;
- // aapt resource value: 0x7f0900e0
- public const int notification_subtext_size = 2131296480;
+ // aapt resource value: 0x7f0a00e0
+ public const int notification_subtext_size = 2131362016;
- // aapt resource value: 0x7f0900e1
- public const int notification_top_pad = 2131296481;
+ // aapt resource value: 0x7f0a00e1
+ public const int notification_top_pad = 2131362017;
- // aapt resource value: 0x7f0900e2
- public const int notification_top_pad_large_text = 2131296482;
+ // aapt resource value: 0x7f0a00e2
+ public const int notification_top_pad_large_text = 2131362018;
- // aapt resource value: 0x7f09006b
- public const int subtitle_corner_radius = 2131296363;
+ // aapt resource value: 0x7f0a006b
+ public const int subtitle_corner_radius = 2131361899;
- // aapt resource value: 0x7f09006c
- public const int subtitle_outline_width = 2131296364;
+ // aapt resource value: 0x7f0a006c
+ public const int subtitle_outline_width = 2131361900;
- // aapt resource value: 0x7f09006d
- public const int subtitle_shadow_offset = 2131296365;
+ // aapt resource value: 0x7f0a006d
+ public const int subtitle_shadow_offset = 2131361901;
- // aapt resource value: 0x7f09006e
- public const int subtitle_shadow_radius = 2131296366;
+ // aapt resource value: 0x7f0a006e
+ public const int subtitle_shadow_radius = 2131361902;
- // aapt resource value: 0x7f090063
- public const int tooltip_corner_radius = 2131296355;
+ // aapt resource value: 0x7f0a0063
+ public const int tooltip_corner_radius = 2131361891;
- // aapt resource value: 0x7f090064
- public const int tooltip_horizontal_padding = 2131296356;
+ // aapt resource value: 0x7f0a0064
+ public const int tooltip_horizontal_padding = 2131361892;
- // aapt resource value: 0x7f090065
- public const int tooltip_margin = 2131296357;
+ // aapt resource value: 0x7f0a0065
+ public const int tooltip_margin = 2131361893;
- // aapt resource value: 0x7f090066
- public const int tooltip_precise_anchor_extra_offset = 2131296358;
+ // aapt resource value: 0x7f0a0066
+ public const int tooltip_precise_anchor_extra_offset = 2131361894;
- // aapt resource value: 0x7f090067
- public const int tooltip_precise_anchor_threshold = 2131296359;
+ // aapt resource value: 0x7f0a0067
+ public const int tooltip_precise_anchor_threshold = 2131361895;
- // aapt resource value: 0x7f090068
- public const int tooltip_vertical_padding = 2131296360;
+ // aapt resource value: 0x7f0a0068
+ public const int tooltip_vertical_padding = 2131361896;
- // aapt resource value: 0x7f090069
- public const int tooltip_y_offset_non_touch = 2131296361;
+ // aapt resource value: 0x7f0a0069
+ public const int tooltip_y_offset_non_touch = 2131361897;
- // aapt resource value: 0x7f09006a
- public const int tooltip_y_offset_touch = 2131296362;
+ // aapt resource value: 0x7f0a006a
+ public const int tooltip_y_offset_touch = 2131361898;
static Dimension()
{
@@ -9180,776 +9180,807 @@ namespace AideDeJeu.Droid
}
}
+ public partial class Font
+ {
+
+ // aapt resource value: 0x7f030000
+ public const int cinzel_black = 2130903040;
+
+ // aapt resource value: 0x7f030001
+ public const int cinzel_bold = 2130903041;
+
+ // aapt resource value: 0x7f030002
+ public const int cinzel_regular = 2130903042;
+
+ // aapt resource value: 0x7f030003
+ public const int cinzeldecorative_black = 2130903043;
+
+ // aapt resource value: 0x7f030004
+ public const int cinzeldecorative_bold = 2130903044;
+
+ // aapt resource value: 0x7f030005
+ public const int cinzeldecorative_regular = 2130903045;
+
+ static Font()
+ {
+ global::Android.Runtime.ResourceIdManager.UpdateIdValues();
+ }
+
+ private Font()
+ {
+ }
+ }
+
public partial class Id
{
- // aapt resource value: 0x7f0a0039
- public const int ALT = 2131361849;
+ // aapt resource value: 0x7f0b0039
+ public const int ALT = 2131427385;
- // aapt resource value: 0x7f0a003a
- public const int CTRL = 2131361850;
+ // aapt resource value: 0x7f0b003a
+ public const int CTRL = 2131427386;
- // aapt resource value: 0x7f0a003b
- public const int FUNCTION = 2131361851;
+ // aapt resource value: 0x7f0b003b
+ public const int FUNCTION = 2131427387;
- // aapt resource value: 0x7f0a003c
- public const int META = 2131361852;
+ // aapt resource value: 0x7f0b003c
+ public const int META = 2131427388;
- // aapt resource value: 0x7f0a003d
- public const int SHIFT = 2131361853;
+ // aapt resource value: 0x7f0b003d
+ public const int SHIFT = 2131427389;
- // aapt resource value: 0x7f0a003e
- public const int SYM = 2131361854;
+ // aapt resource value: 0x7f0b003e
+ public const int SYM = 2131427390;
- // aapt resource value: 0x7f0a00e5
- public const int action0 = 2131362021;
+ // aapt resource value: 0x7f0b00e5
+ public const int action0 = 2131427557;
- // aapt resource value: 0x7f0a008d
- public const int action_bar = 2131361933;
+ // aapt resource value: 0x7f0b008d
+ public const int action_bar = 2131427469;
- // aapt resource value: 0x7f0a0001
- public const int action_bar_activity_content = 2131361793;
+ // aapt resource value: 0x7f0b0001
+ public const int action_bar_activity_content = 2131427329;
- // aapt resource value: 0x7f0a008c
- public const int action_bar_container = 2131361932;
+ // aapt resource value: 0x7f0b008c
+ public const int action_bar_container = 2131427468;
- // aapt resource value: 0x7f0a0088
- public const int action_bar_root = 2131361928;
+ // aapt resource value: 0x7f0b0088
+ public const int action_bar_root = 2131427464;
- // aapt resource value: 0x7f0a0002
- public const int action_bar_spinner = 2131361794;
+ // aapt resource value: 0x7f0b0002
+ public const int action_bar_spinner = 2131427330;
- // aapt resource value: 0x7f0a006a
- public const int action_bar_subtitle = 2131361898;
+ // aapt resource value: 0x7f0b006a
+ public const int action_bar_subtitle = 2131427434;
- // aapt resource value: 0x7f0a0069
- public const int action_bar_title = 2131361897;
+ // aapt resource value: 0x7f0b0069
+ public const int action_bar_title = 2131427433;
- // aapt resource value: 0x7f0a00e2
- public const int action_container = 2131362018;
+ // aapt resource value: 0x7f0b00e2
+ public const int action_container = 2131427554;
- // aapt resource value: 0x7f0a008e
- public const int action_context_bar = 2131361934;
+ // aapt resource value: 0x7f0b008e
+ public const int action_context_bar = 2131427470;
- // aapt resource value: 0x7f0a00e9
- public const int action_divider = 2131362025;
+ // aapt resource value: 0x7f0b00e9
+ public const int action_divider = 2131427561;
- // aapt resource value: 0x7f0a00e3
- public const int action_image = 2131362019;
+ // aapt resource value: 0x7f0b00e3
+ public const int action_image = 2131427555;
- // aapt resource value: 0x7f0a0003
- public const int action_menu_divider = 2131361795;
+ // aapt resource value: 0x7f0b0003
+ public const int action_menu_divider = 2131427331;
- // aapt resource value: 0x7f0a0004
- public const int action_menu_presenter = 2131361796;
+ // aapt resource value: 0x7f0b0004
+ public const int action_menu_presenter = 2131427332;
- // aapt resource value: 0x7f0a008a
- public const int action_mode_bar = 2131361930;
+ // aapt resource value: 0x7f0b008a
+ public const int action_mode_bar = 2131427466;
- // aapt resource value: 0x7f0a0089
- public const int action_mode_bar_stub = 2131361929;
+ // aapt resource value: 0x7f0b0089
+ public const int action_mode_bar_stub = 2131427465;
- // aapt resource value: 0x7f0a006b
- public const int action_mode_close_button = 2131361899;
+ // aapt resource value: 0x7f0b006b
+ public const int action_mode_close_button = 2131427435;
- // aapt resource value: 0x7f0a00e4
- public const int action_text = 2131362020;
+ // aapt resource value: 0x7f0b00e4
+ public const int action_text = 2131427556;
- // aapt resource value: 0x7f0a00f2
- public const int actions = 2131362034;
+ // aapt resource value: 0x7f0b00f2
+ public const int actions = 2131427570;
- // aapt resource value: 0x7f0a006c
- public const int activity_chooser_view_content = 2131361900;
+ // aapt resource value: 0x7f0b006c
+ public const int activity_chooser_view_content = 2131427436;
- // aapt resource value: 0x7f0a002e
- public const int add = 2131361838;
+ // aapt resource value: 0x7f0b002e
+ public const int add = 2131427374;
- // aapt resource value: 0x7f0a007f
- public const int alertTitle = 2131361919;
+ // aapt resource value: 0x7f0b007f
+ public const int alertTitle = 2131427455;
- // aapt resource value: 0x7f0a0064
- public const int all = 2131361892;
+ // aapt resource value: 0x7f0b0064
+ public const int all = 2131427428;
- // aapt resource value: 0x7f0a003f
- public const int always = 2131361855;
+ // aapt resource value: 0x7f0b003f
+ public const int always = 2131427391;
- // aapt resource value: 0x7f0a0065
- public const int async = 2131361893;
+ // aapt resource value: 0x7f0b0065
+ public const int async = 2131427429;
- // aapt resource value: 0x7f0a004d
- public const int auto = 2131361869;
+ // aapt resource value: 0x7f0b004d
+ public const int auto = 2131427405;
- // aapt resource value: 0x7f0a0036
- public const int beginning = 2131361846;
+ // aapt resource value: 0x7f0b0036
+ public const int beginning = 2131427382;
- // aapt resource value: 0x7f0a0066
- public const int blocking = 2131361894;
+ // aapt resource value: 0x7f0b0066
+ public const int blocking = 2131427430;
- // aapt resource value: 0x7f0a0044
- public const int bottom = 2131361860;
+ // aapt resource value: 0x7f0b0044
+ public const int bottom = 2131427396;
- // aapt resource value: 0x7f0a009d
- public const int bottomtab_navarea = 2131361949;
+ // aapt resource value: 0x7f0b009d
+ public const int bottomtab_navarea = 2131427485;
- // aapt resource value: 0x7f0a009e
- public const int bottomtab_tabbar = 2131361950;
+ // aapt resource value: 0x7f0b009e
+ public const int bottomtab_tabbar = 2131427486;
- // aapt resource value: 0x7f0a00a0
- public const int browser_actions_header_text = 2131361952;
+ // aapt resource value: 0x7f0b00a0
+ public const int browser_actions_header_text = 2131427488;
- // aapt resource value: 0x7f0a00a2
- public const int browser_actions_menu_item_icon = 2131361954;
+ // aapt resource value: 0x7f0b00a2
+ public const int browser_actions_menu_item_icon = 2131427490;
- // aapt resource value: 0x7f0a00a3
- public const int browser_actions_menu_item_text = 2131361955;
+ // aapt resource value: 0x7f0b00a3
+ public const int browser_actions_menu_item_text = 2131427491;
- // aapt resource value: 0x7f0a00a1
- public const int browser_actions_menu_items = 2131361953;
+ // aapt resource value: 0x7f0b00a1
+ public const int browser_actions_menu_items = 2131427489;
- // aapt resource value: 0x7f0a009f
- public const int browser_actions_menu_view = 2131361951;
+ // aapt resource value: 0x7f0b009f
+ public const int browser_actions_menu_view = 2131427487;
- // aapt resource value: 0x7f0a0072
- public const int buttonPanel = 2131361906;
+ // aapt resource value: 0x7f0b0072
+ public const int buttonPanel = 2131427442;
- // aapt resource value: 0x7f0a00e6
- public const int cancel_action = 2131362022;
+ // aapt resource value: 0x7f0b00e6
+ public const int cancel_action = 2131427558;
- // aapt resource value: 0x7f0a004c
- public const int center = 2131361868;
+ // aapt resource value: 0x7f0b004c
+ public const int center = 2131427404;
- // aapt resource value: 0x7f0a0051
- public const int center_horizontal = 2131361873;
+ // aapt resource value: 0x7f0b0051
+ public const int center_horizontal = 2131427409;
- // aapt resource value: 0x7f0a0052
- public const int center_vertical = 2131361874;
+ // aapt resource value: 0x7f0b0052
+ public const int center_vertical = 2131427410;
- // aapt resource value: 0x7f0a0086
- public const int checkbox = 2131361926;
+ // aapt resource value: 0x7f0b0086
+ public const int checkbox = 2131427462;
- // aapt resource value: 0x7f0a00ee
- public const int chronometer = 2131362030;
+ // aapt resource value: 0x7f0b00ee
+ public const int chronometer = 2131427566;
- // aapt resource value: 0x7f0a0061
- public const int clip_horizontal = 2131361889;
+ // aapt resource value: 0x7f0b0061
+ public const int clip_horizontal = 2131427425;
- // aapt resource value: 0x7f0a0062
- public const int clip_vertical = 2131361890;
+ // aapt resource value: 0x7f0b0062
+ public const int clip_vertical = 2131427426;
- // aapt resource value: 0x7f0a0040
- public const int collapseActionView = 2131361856;
+ // aapt resource value: 0x7f0b0040
+ public const int collapseActionView = 2131427392;
- // aapt resource value: 0x7f0a00a6
- public const int container = 2131361958;
+ // aapt resource value: 0x7f0b00a6
+ public const int container = 2131427494;
- // aapt resource value: 0x7f0a0082
- public const int content = 2131361922;
+ // aapt resource value: 0x7f0b0082
+ public const int content = 2131427458;
- // aapt resource value: 0x7f0a0075
- public const int contentPanel = 2131361909;
+ // aapt resource value: 0x7f0b0075
+ public const int contentPanel = 2131427445;
- // aapt resource value: 0x7f0a00a7
- public const int coordinator = 2131361959;
+ // aapt resource value: 0x7f0b00a7
+ public const int coordinator = 2131427495;
- // aapt resource value: 0x7f0a007c
- public const int custom = 2131361916;
+ // aapt resource value: 0x7f0b007c
+ public const int custom = 2131427452;
- // aapt resource value: 0x7f0a007b
- public const int customPanel = 2131361915;
+ // aapt resource value: 0x7f0b007b
+ public const int customPanel = 2131427451;
- // aapt resource value: 0x7f0a008b
- public const int decor_content_parent = 2131361931;
+ // aapt resource value: 0x7f0b008b
+ public const int decor_content_parent = 2131427467;
- // aapt resource value: 0x7f0a006f
- public const int default_activity_button = 2131361903;
+ // aapt resource value: 0x7f0b006f
+ public const int default_activity_button = 2131427439;
- // aapt resource value: 0x7f0a00a9
- public const int design_bottom_sheet = 2131361961;
+ // aapt resource value: 0x7f0b00a9
+ public const int design_bottom_sheet = 2131427497;
- // aapt resource value: 0x7f0a00ae
- public const int design_menu_item_action_area = 2131361966;
+ // aapt resource value: 0x7f0b00ae
+ public const int design_menu_item_action_area = 2131427502;
- // aapt resource value: 0x7f0a00ad
- public const int design_menu_item_action_area_stub = 2131361965;
+ // aapt resource value: 0x7f0b00ad
+ public const int design_menu_item_action_area_stub = 2131427501;
- // aapt resource value: 0x7f0a00ac
- public const int design_menu_item_text = 2131361964;
+ // aapt resource value: 0x7f0b00ac
+ public const int design_menu_item_text = 2131427500;
- // aapt resource value: 0x7f0a00ab
- public const int design_navigation_view = 2131361963;
+ // aapt resource value: 0x7f0b00ab
+ public const int design_navigation_view = 2131427499;
- // aapt resource value: 0x7f0a0027
- public const int disableHome = 2131361831;
+ // aapt resource value: 0x7f0b0027
+ public const int disableHome = 2131427367;
- // aapt resource value: 0x7f0a008f
- public const int edit_query = 2131361935;
+ // aapt resource value: 0x7f0b008f
+ public const int edit_query = 2131427471;
- // aapt resource value: 0x7f0a0037
- public const int end = 2131361847;
+ // aapt resource value: 0x7f0b0037
+ public const int end = 2131427383;
- // aapt resource value: 0x7f0a00f4
- public const int end_padder = 2131362036;
+ // aapt resource value: 0x7f0b00f4
+ public const int end_padder = 2131427572;
- // aapt resource value: 0x7f0a0046
- public const int enterAlways = 2131361862;
+ // aapt resource value: 0x7f0b0046
+ public const int enterAlways = 2131427398;
- // aapt resource value: 0x7f0a0047
- public const int enterAlwaysCollapsed = 2131361863;
+ // aapt resource value: 0x7f0b0047
+ public const int enterAlwaysCollapsed = 2131427399;
- // aapt resource value: 0x7f0a0048
- public const int exitUntilCollapsed = 2131361864;
+ // aapt resource value: 0x7f0b0048
+ public const int exitUntilCollapsed = 2131427400;
- // aapt resource value: 0x7f0a006d
- public const int expand_activities_button = 2131361901;
+ // aapt resource value: 0x7f0b006d
+ public const int expand_activities_button = 2131427437;
- // aapt resource value: 0x7f0a0085
- public const int expanded_menu = 2131361925;
+ // aapt resource value: 0x7f0b0085
+ public const int expanded_menu = 2131427461;
- // aapt resource value: 0x7f0a005e
- public const int fill = 2131361886;
+ // aapt resource value: 0x7f0b005e
+ public const int fill = 2131427422;
- // aapt resource value: 0x7f0a0063
- public const int fill_horizontal = 2131361891;
+ // aapt resource value: 0x7f0b0063
+ public const int fill_horizontal = 2131427427;
- // aapt resource value: 0x7f0a0053
- public const int fill_vertical = 2131361875;
+ // aapt resource value: 0x7f0b0053
+ public const int fill_vertical = 2131427411;
- // aapt resource value: 0x7f0a005f
- public const int filled = 2131361887;
+ // aapt resource value: 0x7f0b005f
+ public const int filled = 2131427423;
- // aapt resource value: 0x7f0a005c
- public const int @fixed = 2131361884;
+ // aapt resource value: 0x7f0b005c
+ public const int @fixed = 2131427420;
- // aapt resource value: 0x7f0a00b0
- public const int flyoutcontent_appbar = 2131361968;
+ // aapt resource value: 0x7f0b00b0
+ public const int flyoutcontent_appbar = 2131427504;
- // aapt resource value: 0x7f0a00b1
- public const int flyoutcontent_recycler = 2131361969;
+ // aapt resource value: 0x7f0b00b1
+ public const int flyoutcontent_recycler = 2131427505;
- // aapt resource value: 0x7f0a0067
- public const int forever = 2131361895;
+ // aapt resource value: 0x7f0b0067
+ public const int forever = 2131427431;
- // aapt resource value: 0x7f0a000a
- public const int ghost_view = 2131361802;
+ // aapt resource value: 0x7f0b000a
+ public const int ghost_view = 2131427338;
- // aapt resource value: 0x7f0a0081
- public const int group_divider = 2131361921;
+ // aapt resource value: 0x7f0b0081
+ public const int group_divider = 2131427457;
- // aapt resource value: 0x7f0a0005
- public const int home = 2131361797;
+ // aapt resource value: 0x7f0b0005
+ public const int home = 2131427333;
- // aapt resource value: 0x7f0a0028
- public const int homeAsUp = 2131361832;
+ // aapt resource value: 0x7f0b0028
+ public const int homeAsUp = 2131427368;
- // aapt resource value: 0x7f0a0071
- public const int icon = 2131361905;
+ // aapt resource value: 0x7f0b0071
+ public const int icon = 2131427441;
- // aapt resource value: 0x7f0a00f3
- public const int icon_group = 2131362035;
+ // aapt resource value: 0x7f0b00f3
+ public const int icon_group = 2131427571;
- // aapt resource value: 0x7f0a0041
- public const int ifRoom = 2131361857;
+ // aapt resource value: 0x7f0b0041
+ public const int ifRoom = 2131427393;
- // aapt resource value: 0x7f0a006e
- public const int image = 2131361902;
+ // aapt resource value: 0x7f0b006e
+ public const int image = 2131427438;
- // aapt resource value: 0x7f0a00ef
- public const int info = 2131362031;
+ // aapt resource value: 0x7f0b00ef
+ public const int info = 2131427567;
- // aapt resource value: 0x7f0a0068
- public const int italic = 2131361896;
+ // aapt resource value: 0x7f0b0068
+ public const int italic = 2131427432;
- // aapt resource value: 0x7f0a0000
- public const int item_touch_helper_previous_elevation = 2131361792;
+ // aapt resource value: 0x7f0b0000
+ public const int item_touch_helper_previous_elevation = 2131427328;
- // aapt resource value: 0x7f0a004e
- public const int labeled = 2131361870;
+ // aapt resource value: 0x7f0b004e
+ public const int labeled = 2131427406;
- // aapt resource value: 0x7f0a00a5
- public const int largeLabel = 2131361957;
+ // aapt resource value: 0x7f0b00a5
+ public const int largeLabel = 2131427493;
- // aapt resource value: 0x7f0a0054
- public const int left = 2131361876;
+ // aapt resource value: 0x7f0b0054
+ public const int left = 2131427412;
- // aapt resource value: 0x7f0a001c
- public const int line1 = 2131361820;
+ // aapt resource value: 0x7f0b001c
+ public const int line1 = 2131427356;
- // aapt resource value: 0x7f0a001d
- public const int line3 = 2131361821;
+ // aapt resource value: 0x7f0b001d
+ public const int line3 = 2131427357;
- // aapt resource value: 0x7f0a0024
- public const int listMode = 2131361828;
+ // aapt resource value: 0x7f0b0024
+ public const int listMode = 2131427364;
- // aapt resource value: 0x7f0a0070
- public const int list_item = 2131361904;
+ // aapt resource value: 0x7f0b0070
+ public const int list_item = 2131427440;
- // aapt resource value: 0x7f0a00f5
- public const int main_appbar = 2131362037;
+ // aapt resource value: 0x7f0b00f5
+ public const int main_appbar = 2131427573;
- // aapt resource value: 0x7f0a00f8
- public const int main_scrollview = 2131362040;
+ // aapt resource value: 0x7f0b00f8
+ public const int main_scrollview = 2131427576;
- // aapt resource value: 0x7f0a00f7
- public const int main_tablayout = 2131362039;
+ // aapt resource value: 0x7f0b00f7
+ public const int main_tablayout = 2131427575;
- // aapt resource value: 0x7f0a00f6
- public const int main_toolbar = 2131362038;
+ // aapt resource value: 0x7f0b00f6
+ public const int main_toolbar = 2131427574;
- // aapt resource value: 0x7f0a00ff
- public const int masked = 2131362047;
+ // aapt resource value: 0x7f0b00ff
+ public const int masked = 2131427583;
- // aapt resource value: 0x7f0a00b2
- public const int materialformsedittext = 2131361970;
+ // aapt resource value: 0x7f0b00b2
+ public const int materialformsedittext = 2131427506;
- // aapt resource value: 0x7f0a00e8
- public const int media_actions = 2131362024;
+ // aapt resource value: 0x7f0b00e8
+ public const int media_actions = 2131427560;
- // aapt resource value: 0x7f0a009c
- public const int message = 2131361948;
+ // aapt resource value: 0x7f0b009c
+ public const int message = 2131427484;
- // aapt resource value: 0x7f0a0038
- public const int middle = 2131361848;
+ // aapt resource value: 0x7f0b0038
+ public const int middle = 2131427384;
- // aapt resource value: 0x7f0a0059
- public const int mini = 2131361881;
+ // aapt resource value: 0x7f0b0059
+ public const int mini = 2131427417;
- // aapt resource value: 0x7f0a00cf
- public const int mr_art = 2131361999;
+ // aapt resource value: 0x7f0b00cf
+ public const int mr_art = 2131427535;
- // aapt resource value: 0x7f0a00c0
- public const int mr_cast_checkbox = 2131361984;
+ // aapt resource value: 0x7f0b00c0
+ public const int mr_cast_checkbox = 2131427520;
- // aapt resource value: 0x7f0a00b9
- public const int mr_cast_close_button = 2131361977;
+ // aapt resource value: 0x7f0b00b9
+ public const int mr_cast_close_button = 2131427513;
- // aapt resource value: 0x7f0a00b4
- public const int mr_cast_group_icon = 2131361972;
+ // aapt resource value: 0x7f0b00b4
+ public const int mr_cast_group_icon = 2131427508;
- // aapt resource value: 0x7f0a00b5
- public const int mr_cast_group_name = 2131361973;
+ // aapt resource value: 0x7f0b00b5
+ public const int mr_cast_group_name = 2131427509;
- // aapt resource value: 0x7f0a00b3
- public const int mr_cast_list = 2131361971;
+ // aapt resource value: 0x7f0b00b3
+ public const int mr_cast_list = 2131427507;
- // aapt resource value: 0x7f0a00b8
- public const int mr_cast_meta = 2131361976;
+ // aapt resource value: 0x7f0b00b8
+ public const int mr_cast_meta = 2131427512;
- // aapt resource value: 0x7f0a00ba
- public const int mr_cast_meta_art = 2131361978;
+ // aapt resource value: 0x7f0b00ba
+ public const int mr_cast_meta_art = 2131427514;
- // aapt resource value: 0x7f0a00bc
- public const int mr_cast_meta_subtitle = 2131361980;
+ // aapt resource value: 0x7f0b00bc
+ public const int mr_cast_meta_subtitle = 2131427516;
- // aapt resource value: 0x7f0a00bb
- public const int mr_cast_meta_title = 2131361979;
+ // aapt resource value: 0x7f0b00bb
+ public const int mr_cast_meta_title = 2131427515;
- // aapt resource value: 0x7f0a00be
- public const int mr_cast_route_icon = 2131361982;
+ // aapt resource value: 0x7f0b00be
+ public const int mr_cast_route_icon = 2131427518;
- // aapt resource value: 0x7f0a00bf
- public const int mr_cast_route_name = 2131361983;
+ // aapt resource value: 0x7f0b00bf
+ public const int mr_cast_route_name = 2131427519;
- // aapt resource value: 0x7f0a00bd
- public const int mr_cast_stop_button = 2131361981;
+ // aapt resource value: 0x7f0b00bd
+ public const int mr_cast_stop_button = 2131427517;
- // aapt resource value: 0x7f0a00c1
- public const int mr_cast_volume_layout = 2131361985;
+ // aapt resource value: 0x7f0b00c1
+ public const int mr_cast_volume_layout = 2131427521;
- // aapt resource value: 0x7f0a00c2
- public const int mr_cast_volume_slider = 2131361986;
+ // aapt resource value: 0x7f0b00c2
+ public const int mr_cast_volume_slider = 2131427522;
- // aapt resource value: 0x7f0a00c4
- public const int mr_chooser_list = 2131361988;
+ // aapt resource value: 0x7f0b00c4
+ public const int mr_chooser_list = 2131427524;
- // aapt resource value: 0x7f0a00c7
- public const int mr_chooser_route_desc = 2131361991;
+ // aapt resource value: 0x7f0b00c7
+ public const int mr_chooser_route_desc = 2131427527;
- // aapt resource value: 0x7f0a00c5
- public const int mr_chooser_route_icon = 2131361989;
+ // aapt resource value: 0x7f0b00c5
+ public const int mr_chooser_route_icon = 2131427525;
- // aapt resource value: 0x7f0a00c6
- public const int mr_chooser_route_name = 2131361990;
+ // aapt resource value: 0x7f0b00c6
+ public const int mr_chooser_route_name = 2131427526;
- // aapt resource value: 0x7f0a00c3
- public const int mr_chooser_title = 2131361987;
+ // aapt resource value: 0x7f0b00c3
+ public const int mr_chooser_title = 2131427523;
- // aapt resource value: 0x7f0a00cc
- public const int mr_close = 2131361996;
+ // aapt resource value: 0x7f0b00cc
+ public const int mr_close = 2131427532;
- // aapt resource value: 0x7f0a00d2
- public const int mr_control_divider = 2131362002;
+ // aapt resource value: 0x7f0b00d2
+ public const int mr_control_divider = 2131427538;
- // aapt resource value: 0x7f0a00dd
- public const int mr_control_playback_ctrl = 2131362013;
+ // aapt resource value: 0x7f0b00dd
+ public const int mr_control_playback_ctrl = 2131427549;
- // aapt resource value: 0x7f0a00e0
- public const int mr_control_subtitle = 2131362016;
+ // aapt resource value: 0x7f0b00e0
+ public const int mr_control_subtitle = 2131427552;
- // aapt resource value: 0x7f0a00df
- public const int mr_control_title = 2131362015;
+ // aapt resource value: 0x7f0b00df
+ public const int mr_control_title = 2131427551;
- // aapt resource value: 0x7f0a00de
- public const int mr_control_title_container = 2131362014;
+ // aapt resource value: 0x7f0b00de
+ public const int mr_control_title_container = 2131427550;
- // aapt resource value: 0x7f0a00cd
- public const int mr_custom_control = 2131361997;
+ // aapt resource value: 0x7f0b00cd
+ public const int mr_custom_control = 2131427533;
- // aapt resource value: 0x7f0a00ce
- public const int mr_default_control = 2131361998;
+ // aapt resource value: 0x7f0b00ce
+ public const int mr_default_control = 2131427534;
- // aapt resource value: 0x7f0a00c9
- public const int mr_dialog_area = 2131361993;
+ // aapt resource value: 0x7f0b00c9
+ public const int mr_dialog_area = 2131427529;
- // aapt resource value: 0x7f0a00d8
- public const int mr_dialog_header_name = 2131362008;
+ // aapt resource value: 0x7f0b00d8
+ public const int mr_dialog_header_name = 2131427544;
- // aapt resource value: 0x7f0a00c8
- public const int mr_expandable_area = 2131361992;
+ // aapt resource value: 0x7f0b00c8
+ public const int mr_expandable_area = 2131427528;
- // aapt resource value: 0x7f0a00e1
- public const int mr_group_expand_collapse = 2131362017;
+ // aapt resource value: 0x7f0b00e1
+ public const int mr_group_expand_collapse = 2131427553;
- // aapt resource value: 0x7f0a00b6
- public const int mr_group_volume_route_name = 2131361974;
+ // aapt resource value: 0x7f0b00b6
+ public const int mr_group_volume_route_name = 2131427510;
- // aapt resource value: 0x7f0a00b7
- public const int mr_group_volume_slider = 2131361975;
+ // aapt resource value: 0x7f0b00b7
+ public const int mr_group_volume_slider = 2131427511;
- // aapt resource value: 0x7f0a00d0
- public const int mr_media_main_control = 2131362000;
+ // aapt resource value: 0x7f0b00d0
+ public const int mr_media_main_control = 2131427536;
- // aapt resource value: 0x7f0a00cb
- public const int mr_name = 2131361995;
+ // aapt resource value: 0x7f0b00cb
+ public const int mr_name = 2131427531;
- // aapt resource value: 0x7f0a00d9
- public const int mr_picker_close_button = 2131362009;
+ // aapt resource value: 0x7f0b00d9
+ public const int mr_picker_close_button = 2131427545;
- // aapt resource value: 0x7f0a00da
- public const int mr_picker_list = 2131362010;
+ // aapt resource value: 0x7f0b00da
+ public const int mr_picker_list = 2131427546;
- // aapt resource value: 0x7f0a00db
- public const int mr_picker_route_icon = 2131362011;
+ // aapt resource value: 0x7f0b00db
+ public const int mr_picker_route_icon = 2131427547;
- // aapt resource value: 0x7f0a00dc
- public const int mr_picker_route_name = 2131362012;
+ // aapt resource value: 0x7f0b00dc
+ public const int mr_picker_route_name = 2131427548;
- // aapt resource value: 0x7f0a00d1
- public const int mr_playback_control = 2131362001;
+ // aapt resource value: 0x7f0b00d1
+ public const int mr_playback_control = 2131427537;
- // aapt resource value: 0x7f0a00ca
- public const int mr_title_bar = 2131361994;
+ // aapt resource value: 0x7f0b00ca
+ public const int mr_title_bar = 2131427530;
- // aapt resource value: 0x7f0a00d3
- public const int mr_volume_control = 2131362003;
+ // aapt resource value: 0x7f0b00d3
+ public const int mr_volume_control = 2131427539;
- // aapt resource value: 0x7f0a00d4
- public const int mr_volume_group_list = 2131362004;
+ // aapt resource value: 0x7f0b00d4
+ public const int mr_volume_group_list = 2131427540;
- // aapt resource value: 0x7f0a00d6
- public const int mr_volume_item_icon = 2131362006;
+ // aapt resource value: 0x7f0b00d6
+ public const int mr_volume_item_icon = 2131427542;
- // aapt resource value: 0x7f0a00d7
- public const int mr_volume_slider = 2131362007;
+ // aapt resource value: 0x7f0b00d7
+ public const int mr_volume_slider = 2131427543;
- // aapt resource value: 0x7f0a0014
- public const int mtrl_child_content_container = 2131361812;
+ // aapt resource value: 0x7f0b0014
+ public const int mtrl_child_content_container = 2131427348;
- // aapt resource value: 0x7f0a0015
- public const int mtrl_internal_children_alpha_tag = 2131361813;
+ // aapt resource value: 0x7f0b0015
+ public const int mtrl_internal_children_alpha_tag = 2131427349;
- // aapt resource value: 0x7f0a002f
- public const int multiply = 2131361839;
+ // aapt resource value: 0x7f0b002f
+ public const int multiply = 2131427375;
- // aapt resource value: 0x7f0a00aa
- public const int navigation_header_container = 2131361962;
+ // aapt resource value: 0x7f0b00aa
+ public const int navigation_header_container = 2131427498;
- // aapt resource value: 0x7f0a0042
- public const int never = 2131361858;
+ // aapt resource value: 0x7f0b0042
+ public const int never = 2131427394;
- // aapt resource value: 0x7f0a0029
- public const int none = 2131361833;
+ // aapt resource value: 0x7f0b0029
+ public const int none = 2131427369;
- // aapt resource value: 0x7f0a0025
- public const int normal = 2131361829;
+ // aapt resource value: 0x7f0b0025
+ public const int normal = 2131427365;
- // aapt resource value: 0x7f0a00f1
- public const int notification_background = 2131362033;
+ // aapt resource value: 0x7f0b00f1
+ public const int notification_background = 2131427569;
- // aapt resource value: 0x7f0a00eb
- public const int notification_main_column = 2131362027;
+ // aapt resource value: 0x7f0b00eb
+ public const int notification_main_column = 2131427563;
- // aapt resource value: 0x7f0a00ea
- public const int notification_main_column_container = 2131362026;
+ // aapt resource value: 0x7f0b00ea
+ public const int notification_main_column_container = 2131427562;
- // aapt resource value: 0x7f0a0060
- public const int outline = 2131361888;
+ // aapt resource value: 0x7f0b0060
+ public const int outline = 2131427424;
- // aapt resource value: 0x7f0a0057
- public const int parallax = 2131361879;
+ // aapt resource value: 0x7f0b0057
+ public const int parallax = 2131427415;
- // aapt resource value: 0x7f0a0074
- public const int parentPanel = 2131361908;
+ // aapt resource value: 0x7f0b0074
+ public const int parentPanel = 2131427444;
- // aapt resource value: 0x7f0a000b
- public const int parent_matrix = 2131361803;
+ // aapt resource value: 0x7f0b000b
+ public const int parent_matrix = 2131427339;
- // aapt resource value: 0x7f0a0058
- public const int pin = 2131361880;
+ // aapt resource value: 0x7f0b0058
+ public const int pin = 2131427416;
- // aapt resource value: 0x7f0a0006
- public const int progress_circular = 2131361798;
+ // aapt resource value: 0x7f0b0006
+ public const int progress_circular = 2131427334;
- // aapt resource value: 0x7f0a0007
- public const int progress_horizontal = 2131361799;
+ // aapt resource value: 0x7f0b0007
+ public const int progress_horizontal = 2131427335;
- // aapt resource value: 0x7f0a0087
- public const int radio = 2131361927;
+ // aapt resource value: 0x7f0b0087
+ public const int radio = 2131427463;
- // aapt resource value: 0x7f0a0055
- public const int right = 2131361877;
+ // aapt resource value: 0x7f0b0055
+ public const int right = 2131427413;
- // aapt resource value: 0x7f0a00f0
- public const int right_icon = 2131362032;
+ // aapt resource value: 0x7f0b00f0
+ public const int right_icon = 2131427568;
- // aapt resource value: 0x7f0a00ec
- public const int right_side = 2131362028;
+ // aapt resource value: 0x7f0b00ec
+ public const int right_side = 2131427564;
- // aapt resource value: 0x7f0a000c
- public const int save_image_matrix = 2131361804;
+ // aapt resource value: 0x7f0b000c
+ public const int save_image_matrix = 2131427340;
- // aapt resource value: 0x7f0a000d
- public const int save_non_transition_alpha = 2131361805;
+ // aapt resource value: 0x7f0b000d
+ public const int save_non_transition_alpha = 2131427341;
- // aapt resource value: 0x7f0a000e
- public const int save_scale_type = 2131361806;
+ // aapt resource value: 0x7f0b000e
+ public const int save_scale_type = 2131427342;
- // aapt resource value: 0x7f0a0030
- public const int screen = 2131361840;
+ // aapt resource value: 0x7f0b0030
+ public const int screen = 2131427376;
- // aapt resource value: 0x7f0a0049
- public const int scroll = 2131361865;
+ // aapt resource value: 0x7f0b0049
+ public const int scroll = 2131427401;
- // aapt resource value: 0x7f0a007a
- public const int scrollIndicatorDown = 2131361914;
+ // aapt resource value: 0x7f0b007a
+ public const int scrollIndicatorDown = 2131427450;
- // aapt resource value: 0x7f0a0076
- public const int scrollIndicatorUp = 2131361910;
+ // aapt resource value: 0x7f0b0076
+ public const int scrollIndicatorUp = 2131427446;
- // aapt resource value: 0x7f0a0077
- public const int scrollView = 2131361911;
+ // aapt resource value: 0x7f0b0077
+ public const int scrollView = 2131427447;
- // aapt resource value: 0x7f0a005d
- public const int scrollable = 2131361885;
+ // aapt resource value: 0x7f0b005d
+ public const int scrollable = 2131427421;
- // aapt resource value: 0x7f0a0091
- public const int search_badge = 2131361937;
+ // aapt resource value: 0x7f0b0091
+ public const int search_badge = 2131427473;
- // aapt resource value: 0x7f0a0090
- public const int search_bar = 2131361936;
+ // aapt resource value: 0x7f0b0090
+ public const int search_bar = 2131427472;
- // aapt resource value: 0x7f0a0092
- public const int search_button = 2131361938;
+ // aapt resource value: 0x7f0b0092
+ public const int search_button = 2131427474;
- // aapt resource value: 0x7f0a0097
- public const int search_close_btn = 2131361943;
+ // aapt resource value: 0x7f0b0097
+ public const int search_close_btn = 2131427479;
- // aapt resource value: 0x7f0a0093
- public const int search_edit_frame = 2131361939;
+ // aapt resource value: 0x7f0b0093
+ public const int search_edit_frame = 2131427475;
- // aapt resource value: 0x7f0a0099
- public const int search_go_btn = 2131361945;
+ // aapt resource value: 0x7f0b0099
+ public const int search_go_btn = 2131427481;
- // aapt resource value: 0x7f0a0094
- public const int search_mag_icon = 2131361940;
+ // aapt resource value: 0x7f0b0094
+ public const int search_mag_icon = 2131427476;
- // aapt resource value: 0x7f0a0095
- public const int search_plate = 2131361941;
+ // aapt resource value: 0x7f0b0095
+ public const int search_plate = 2131427477;
- // aapt resource value: 0x7f0a0096
- public const int search_src_text = 2131361942;
+ // aapt resource value: 0x7f0b0096
+ public const int search_src_text = 2131427478;
- // aapt resource value: 0x7f0a009a
- public const int search_voice_btn = 2131361946;
+ // aapt resource value: 0x7f0b009a
+ public const int search_voice_btn = 2131427482;
- // aapt resource value: 0x7f0a009b
- public const int select_dialog_listview = 2131361947;
+ // aapt resource value: 0x7f0b009b
+ public const int select_dialog_listview = 2131427483;
- // aapt resource value: 0x7f0a004f
- public const int selected = 2131361871;
+ // aapt resource value: 0x7f0b004f
+ public const int selected = 2131427407;
- // aapt resource value: 0x7f0a00f9
- public const int shellcontent_appbar = 2131362041;
+ // aapt resource value: 0x7f0b00f9
+ public const int shellcontent_appbar = 2131427577;
- // aapt resource value: 0x7f0a00fb
- public const int shellcontent_scrollview = 2131362043;
+ // aapt resource value: 0x7f0b00fb
+ public const int shellcontent_scrollview = 2131427579;
- // aapt resource value: 0x7f0a00fa
- public const int shellcontent_toolbar = 2131362042;
+ // aapt resource value: 0x7f0b00fa
+ public const int shellcontent_toolbar = 2131427578;
- // aapt resource value: 0x7f0a0083
- public const int shortcut = 2131361923;
+ // aapt resource value: 0x7f0b0083
+ public const int shortcut = 2131427459;
- // aapt resource value: 0x7f0a002a
- public const int showCustom = 2131361834;
+ // aapt resource value: 0x7f0b002a
+ public const int showCustom = 2131427370;
- // aapt resource value: 0x7f0a002b
- public const int showHome = 2131361835;
+ // aapt resource value: 0x7f0b002b
+ public const int showHome = 2131427371;
- // aapt resource value: 0x7f0a002c
- public const int showTitle = 2131361836;
+ // aapt resource value: 0x7f0b002c
+ public const int showTitle = 2131427372;
- // aapt resource value: 0x7f0a00fc
- public const int sliding_tabs = 2131362044;
+ // aapt resource value: 0x7f0b00fc
+ public const int sliding_tabs = 2131427580;
- // aapt resource value: 0x7f0a00a4
- public const int smallLabel = 2131361956;
+ // aapt resource value: 0x7f0b00a4
+ public const int smallLabel = 2131427492;
- // aapt resource value: 0x7f0a0016
- public const int snackbar_action = 2131361814;
+ // aapt resource value: 0x7f0b0016
+ public const int snackbar_action = 2131427350;
- // aapt resource value: 0x7f0a0017
- public const int snackbar_text = 2131361815;
+ // aapt resource value: 0x7f0b0017
+ public const int snackbar_text = 2131427351;
- // aapt resource value: 0x7f0a004a
- public const int snap = 2131361866;
+ // aapt resource value: 0x7f0b004a
+ public const int snap = 2131427402;
- // aapt resource value: 0x7f0a004b
- public const int snapMargins = 2131361867;
+ // aapt resource value: 0x7f0b004b
+ public const int snapMargins = 2131427403;
- // aapt resource value: 0x7f0a0073
- public const int spacer = 2131361907;
+ // aapt resource value: 0x7f0b0073
+ public const int spacer = 2131427443;
- // aapt resource value: 0x7f0a0008
- public const int split_action_bar = 2131361800;
+ // aapt resource value: 0x7f0b0008
+ public const int split_action_bar = 2131427336;
- // aapt resource value: 0x7f0a0031
- public const int src_atop = 2131361841;
+ // aapt resource value: 0x7f0b0031
+ public const int src_atop = 2131427377;
- // aapt resource value: 0x7f0a0032
- public const int src_in = 2131361842;
+ // aapt resource value: 0x7f0b0032
+ public const int src_in = 2131427378;
- // aapt resource value: 0x7f0a0033
- public const int src_over = 2131361843;
+ // aapt resource value: 0x7f0b0033
+ public const int src_over = 2131427379;
- // aapt resource value: 0x7f0a0056
- public const int start = 2131361878;
+ // aapt resource value: 0x7f0b0056
+ public const int start = 2131427414;
- // aapt resource value: 0x7f0a00e7
- public const int status_bar_latest_event_content = 2131362023;
+ // aapt resource value: 0x7f0b00e7
+ public const int status_bar_latest_event_content = 2131427559;
- // aapt resource value: 0x7f0a005b
- public const int stretch = 2131361883;
+ // aapt resource value: 0x7f0b005b
+ public const int stretch = 2131427419;
- // aapt resource value: 0x7f0a0084
- public const int submenuarrow = 2131361924;
+ // aapt resource value: 0x7f0b0084
+ public const int submenuarrow = 2131427460;
- // aapt resource value: 0x7f0a0098
- public const int submit_area = 2131361944;
+ // aapt resource value: 0x7f0b0098
+ public const int submit_area = 2131427480;
- // aapt resource value: 0x7f0a0026
- public const int tabMode = 2131361830;
+ // aapt resource value: 0x7f0b0026
+ public const int tabMode = 2131427366;
- // aapt resource value: 0x7f0a001e
- public const int tag_transition_group = 2131361822;
+ // aapt resource value: 0x7f0b001e
+ public const int tag_transition_group = 2131427358;
- // aapt resource value: 0x7f0a001f
- public const int tag_unhandled_key_event_manager = 2131361823;
+ // aapt resource value: 0x7f0b001f
+ public const int tag_unhandled_key_event_manager = 2131427359;
- // aapt resource value: 0x7f0a0020
- public const int tag_unhandled_key_listeners = 2131361824;
+ // aapt resource value: 0x7f0b0020
+ public const int tag_unhandled_key_listeners = 2131427360;
- // aapt resource value: 0x7f0a0021
- public const int text = 2131361825;
+ // aapt resource value: 0x7f0b0021
+ public const int text = 2131427361;
- // aapt resource value: 0x7f0a0022
- public const int text2 = 2131361826;
+ // aapt resource value: 0x7f0b0022
+ public const int text2 = 2131427362;
- // aapt resource value: 0x7f0a0079
- public const int textSpacerNoButtons = 2131361913;
+ // aapt resource value: 0x7f0b0079
+ public const int textSpacerNoButtons = 2131427449;
- // aapt resource value: 0x7f0a0078
- public const int textSpacerNoTitle = 2131361912;
+ // aapt resource value: 0x7f0b0078
+ public const int textSpacerNoTitle = 2131427448;
- // aapt resource value: 0x7f0a005a
- public const int textStart = 2131361882;
+ // aapt resource value: 0x7f0b005a
+ public const int textStart = 2131427418;
- // aapt resource value: 0x7f0a00af
- public const int text_input_password_toggle = 2131361967;
+ // aapt resource value: 0x7f0b00af
+ public const int text_input_password_toggle = 2131427503;
- // aapt resource value: 0x7f0a0018
- public const int textinput_counter = 2131361816;
+ // aapt resource value: 0x7f0b0018
+ public const int textinput_counter = 2131427352;
- // aapt resource value: 0x7f0a0019
- public const int textinput_error = 2131361817;
+ // aapt resource value: 0x7f0b0019
+ public const int textinput_error = 2131427353;
- // aapt resource value: 0x7f0a001a
- public const int textinput_helper_text = 2131361818;
+ // aapt resource value: 0x7f0b001a
+ public const int textinput_helper_text = 2131427354;
- // aapt resource value: 0x7f0a00ed
- public const int time = 2131362029;
+ // aapt resource value: 0x7f0b00ed
+ public const int time = 2131427565;
- // aapt resource value: 0x7f0a0023
- public const int title = 2131361827;
+ // aapt resource value: 0x7f0b0023
+ public const int title = 2131427363;
- // aapt resource value: 0x7f0a0080
- public const int titleDividerNoCustom = 2131361920;
+ // aapt resource value: 0x7f0b0080
+ public const int titleDividerNoCustom = 2131427456;
- // aapt resource value: 0x7f0a007e
- public const int title_template = 2131361918;
+ // aapt resource value: 0x7f0b007e
+ public const int title_template = 2131427454;
- // aapt resource value: 0x7f0a00fd
- public const int toolbar = 2131362045;
+ // aapt resource value: 0x7f0b00fd
+ public const int toolbar = 2131427581;
- // aapt resource value: 0x7f0a0045
- public const int top = 2131361861;
+ // aapt resource value: 0x7f0b0045
+ public const int top = 2131427397;
- // aapt resource value: 0x7f0a007d
- public const int topPanel = 2131361917;
+ // aapt resource value: 0x7f0b007d
+ public const int topPanel = 2131427453;
- // aapt resource value: 0x7f0a00a8
- public const int touch_outside = 2131361960;
+ // aapt resource value: 0x7f0b00a8
+ public const int touch_outside = 2131427496;
- // aapt resource value: 0x7f0a000f
- public const int transition_current_scene = 2131361807;
+ // aapt resource value: 0x7f0b000f
+ public const int transition_current_scene = 2131427343;
- // aapt resource value: 0x7f0a0010
- public const int transition_layout_save = 2131361808;
+ // aapt resource value: 0x7f0b0010
+ public const int transition_layout_save = 2131427344;
- // aapt resource value: 0x7f0a0011
- public const int transition_position = 2131361809;
+ // aapt resource value: 0x7f0b0011
+ public const int transition_position = 2131427345;
- // aapt resource value: 0x7f0a0012
- public const int transition_scene_layoutid_cache = 2131361810;
+ // aapt resource value: 0x7f0b0012
+ public const int transition_scene_layoutid_cache = 2131427346;
- // aapt resource value: 0x7f0a0013
- public const int transition_transform = 2131361811;
+ // aapt resource value: 0x7f0b0013
+ public const int transition_transform = 2131427347;
- // aapt resource value: 0x7f0a0034
- public const int uniform = 2131361844;
+ // aapt resource value: 0x7f0b0034
+ public const int uniform = 2131427380;
- // aapt resource value: 0x7f0a0050
- public const int unlabeled = 2131361872;
+ // aapt resource value: 0x7f0b0050
+ public const int unlabeled = 2131427408;
- // aapt resource value: 0x7f0a0009
- public const int up = 2131361801;
+ // aapt resource value: 0x7f0b0009
+ public const int up = 2131427337;
- // aapt resource value: 0x7f0a002d
- public const int useLogo = 2131361837;
+ // aapt resource value: 0x7f0b002d
+ public const int useLogo = 2131427373;
- // aapt resource value: 0x7f0a001b
- public const int view_offset_helper = 2131361819;
+ // aapt resource value: 0x7f0b001b
+ public const int view_offset_helper = 2131427355;
- // aapt resource value: 0x7f0a00fe
- public const int visible = 2131362046;
+ // aapt resource value: 0x7f0b00fe
+ public const int visible = 2131427582;
- // aapt resource value: 0x7f0a00d5
- public const int volume_item_container = 2131362005;
+ // aapt resource value: 0x7f0b00d5
+ public const int volume_item_container = 2131427541;
- // aapt resource value: 0x7f0a0043
- public const int withText = 2131361859;
+ // aapt resource value: 0x7f0b0043
+ public const int withText = 2131427395;
- // aapt resource value: 0x7f0a0035
- public const int wrap_content = 2131361845;
+ // aapt resource value: 0x7f0b0035
+ public const int wrap_content = 2131427381;
static Id()
{
@@ -9964,62 +9995,62 @@ namespace AideDeJeu.Droid
public partial class Integer
{
- // aapt resource value: 0x7f0c0004
- public const int abc_config_activityDefaultDur = 2131492868;
+ // aapt resource value: 0x7f0d0004
+ public const int abc_config_activityDefaultDur = 2131558404;
- // aapt resource value: 0x7f0c0005
- public const int abc_config_activityShortDur = 2131492869;
+ // aapt resource value: 0x7f0d0005
+ public const int abc_config_activityShortDur = 2131558405;
- // aapt resource value: 0x7f0c0009
- public const int app_bar_elevation_anim_duration = 2131492873;
+ // aapt resource value: 0x7f0d0009
+ public const int app_bar_elevation_anim_duration = 2131558409;
- // aapt resource value: 0x7f0c000a
- public const int bottom_sheet_slide_duration = 2131492874;
+ // aapt resource value: 0x7f0d000a
+ public const int bottom_sheet_slide_duration = 2131558410;
- // aapt resource value: 0x7f0c0006
- public const int cancel_button_image_alpha = 2131492870;
+ // aapt resource value: 0x7f0d0006
+ public const int cancel_button_image_alpha = 2131558406;
- // aapt resource value: 0x7f0c0007
- public const int config_tooltipAnimTime = 2131492871;
+ // aapt resource value: 0x7f0d0007
+ public const int config_tooltipAnimTime = 2131558407;
- // aapt resource value: 0x7f0c0008
- public const int design_snackbar_text_max_lines = 2131492872;
+ // aapt resource value: 0x7f0d0008
+ public const int design_snackbar_text_max_lines = 2131558408;
- // aapt resource value: 0x7f0c000b
- public const int design_tab_indicator_anim_duration_ms = 2131492875;
+ // aapt resource value: 0x7f0d000b
+ public const int design_tab_indicator_anim_duration_ms = 2131558411;
- // aapt resource value: 0x7f0c000c
- public const int hide_password_duration = 2131492876;
+ // aapt resource value: 0x7f0d000c
+ public const int hide_password_duration = 2131558412;
- // aapt resource value: 0x7f0c0000
- public const int mr_controller_volume_group_list_animation_duration_ms = 2131492864;
+ // aapt resource value: 0x7f0d0000
+ public const int mr_controller_volume_group_list_animation_duration_ms = 2131558400;
- // aapt resource value: 0x7f0c0001
- public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131492865;
+ // aapt resource value: 0x7f0d0001
+ public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131558401;
- // aapt resource value: 0x7f0c0002
- public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131492866;
+ // aapt resource value: 0x7f0d0002
+ public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131558402;
- // aapt resource value: 0x7f0c0003
- public const int mr_update_routes_delay_ms = 2131492867;
+ // aapt resource value: 0x7f0d0003
+ public const int mr_update_routes_delay_ms = 2131558403;
- // aapt resource value: 0x7f0c000d
- public const int mtrl_btn_anim_delay_ms = 2131492877;
+ // aapt resource value: 0x7f0d000d
+ public const int mtrl_btn_anim_delay_ms = 2131558413;
- // aapt resource value: 0x7f0c000e
- public const int mtrl_btn_anim_duration_ms = 2131492878;
+ // aapt resource value: 0x7f0d000e
+ public const int mtrl_btn_anim_duration_ms = 2131558414;
- // aapt resource value: 0x7f0c000f
- public const int mtrl_chip_anim_duration = 2131492879;
+ // aapt resource value: 0x7f0d000f
+ public const int mtrl_chip_anim_duration = 2131558415;
- // aapt resource value: 0x7f0c0010
- public const int mtrl_tab_indicator_anim_duration_ms = 2131492880;
+ // aapt resource value: 0x7f0d0010
+ public const int mtrl_tab_indicator_anim_duration_ms = 2131558416;
- // aapt resource value: 0x7f0c0011
- public const int show_password_duration = 2131492881;
+ // aapt resource value: 0x7f0d0011
+ public const int show_password_duration = 2131558417;
- // aapt resource value: 0x7f0c0012
- public const int status_bar_notification_info_maxnum = 2131492882;
+ // aapt resource value: 0x7f0d0012
+ public const int status_bar_notification_info_maxnum = 2131558418;
static Integer()
{
@@ -10034,23 +10065,23 @@ namespace AideDeJeu.Droid
public partial class Interpolator
{
- // aapt resource value: 0x7f060000
- public const int mr_fast_out_slow_in = 2131099648;
+ // aapt resource value: 0x7f070000
+ public const int mr_fast_out_slow_in = 2131165184;
- // aapt resource value: 0x7f060001
- public const int mr_linear_out_slow_in = 2131099649;
+ // aapt resource value: 0x7f070001
+ public const int mr_linear_out_slow_in = 2131165185;
- // aapt resource value: 0x7f060002
- public const int mtrl_fast_out_linear_in = 2131099650;
+ // aapt resource value: 0x7f070002
+ public const int mtrl_fast_out_linear_in = 2131165186;
- // aapt resource value: 0x7f060003
- public const int mtrl_fast_out_slow_in = 2131099651;
+ // aapt resource value: 0x7f070003
+ public const int mtrl_fast_out_slow_in = 2131165187;
- // aapt resource value: 0x7f060004
- public const int mtrl_linear = 2131099652;
+ // aapt resource value: 0x7f070004
+ public const int mtrl_linear = 2131165188;
- // aapt resource value: 0x7f060005
- public const int mtrl_linear_out_slow_in = 2131099653;
+ // aapt resource value: 0x7f070005
+ public const int mtrl_linear_out_slow_in = 2131165189;
static Interpolator()
{
@@ -10065,266 +10096,266 @@ namespace AideDeJeu.Droid
public partial class Layout
{
- // aapt resource value: 0x7f030000
- public const int abc_action_bar_title_item = 2130903040;
+ // aapt resource value: 0x7f040000
+ public const int abc_action_bar_title_item = 2130968576;
- // aapt resource value: 0x7f030001
- public const int abc_action_bar_up_container = 2130903041;
+ // aapt resource value: 0x7f040001
+ public const int abc_action_bar_up_container = 2130968577;
- // aapt resource value: 0x7f030002
- public const int abc_action_menu_item_layout = 2130903042;
+ // aapt resource value: 0x7f040002
+ public const int abc_action_menu_item_layout = 2130968578;
- // aapt resource value: 0x7f030003
- public const int abc_action_menu_layout = 2130903043;
+ // aapt resource value: 0x7f040003
+ public const int abc_action_menu_layout = 2130968579;
- // aapt resource value: 0x7f030004
- public const int abc_action_mode_bar = 2130903044;
+ // aapt resource value: 0x7f040004
+ public const int abc_action_mode_bar = 2130968580;
- // aapt resource value: 0x7f030005
- public const int abc_action_mode_close_item_material = 2130903045;
+ // aapt resource value: 0x7f040005
+ public const int abc_action_mode_close_item_material = 2130968581;
- // aapt resource value: 0x7f030006
- public const int abc_activity_chooser_view = 2130903046;
+ // aapt resource value: 0x7f040006
+ public const int abc_activity_chooser_view = 2130968582;
- // aapt resource value: 0x7f030007
- public const int abc_activity_chooser_view_list_item = 2130903047;
+ // aapt resource value: 0x7f040007
+ public const int abc_activity_chooser_view_list_item = 2130968583;
- // aapt resource value: 0x7f030008
- public const int abc_alert_dialog_button_bar_material = 2130903048;
+ // aapt resource value: 0x7f040008
+ public const int abc_alert_dialog_button_bar_material = 2130968584;
- // aapt resource value: 0x7f030009
- public const int abc_alert_dialog_material = 2130903049;
+ // aapt resource value: 0x7f040009
+ public const int abc_alert_dialog_material = 2130968585;
- // aapt resource value: 0x7f03000a
- public const int abc_alert_dialog_title_material = 2130903050;
+ // aapt resource value: 0x7f04000a
+ public const int abc_alert_dialog_title_material = 2130968586;
- // aapt resource value: 0x7f03000b
- public const int abc_cascading_menu_item_layout = 2130903051;
+ // aapt resource value: 0x7f04000b
+ public const int abc_cascading_menu_item_layout = 2130968587;
- // aapt resource value: 0x7f03000c
- public const int abc_dialog_title_material = 2130903052;
+ // aapt resource value: 0x7f04000c
+ public const int abc_dialog_title_material = 2130968588;
- // aapt resource value: 0x7f03000d
- public const int abc_expanded_menu_layout = 2130903053;
+ // aapt resource value: 0x7f04000d
+ public const int abc_expanded_menu_layout = 2130968589;
- // aapt resource value: 0x7f03000e
- public const int abc_list_menu_item_checkbox = 2130903054;
+ // aapt resource value: 0x7f04000e
+ public const int abc_list_menu_item_checkbox = 2130968590;
- // aapt resource value: 0x7f03000f
- public const int abc_list_menu_item_icon = 2130903055;
+ // aapt resource value: 0x7f04000f
+ public const int abc_list_menu_item_icon = 2130968591;
- // aapt resource value: 0x7f030010
- public const int abc_list_menu_item_layout = 2130903056;
+ // aapt resource value: 0x7f040010
+ public const int abc_list_menu_item_layout = 2130968592;
- // aapt resource value: 0x7f030011
- public const int abc_list_menu_item_radio = 2130903057;
+ // aapt resource value: 0x7f040011
+ public const int abc_list_menu_item_radio = 2130968593;
- // aapt resource value: 0x7f030012
- public const int abc_popup_menu_header_item_layout = 2130903058;
+ // aapt resource value: 0x7f040012
+ public const int abc_popup_menu_header_item_layout = 2130968594;
- // aapt resource value: 0x7f030013
- public const int abc_popup_menu_item_layout = 2130903059;
+ // aapt resource value: 0x7f040013
+ public const int abc_popup_menu_item_layout = 2130968595;
- // aapt resource value: 0x7f030014
- public const int abc_screen_content_include = 2130903060;
+ // aapt resource value: 0x7f040014
+ public const int abc_screen_content_include = 2130968596;
- // aapt resource value: 0x7f030015
- public const int abc_screen_simple = 2130903061;
+ // aapt resource value: 0x7f040015
+ public const int abc_screen_simple = 2130968597;
- // aapt resource value: 0x7f030016
- public const int abc_screen_simple_overlay_action_mode = 2130903062;
+ // aapt resource value: 0x7f040016
+ public const int abc_screen_simple_overlay_action_mode = 2130968598;
- // aapt resource value: 0x7f030017
- public const int abc_screen_toolbar = 2130903063;
+ // aapt resource value: 0x7f040017
+ public const int abc_screen_toolbar = 2130968599;
- // aapt resource value: 0x7f030018
- public const int abc_search_dropdown_item_icons_2line = 2130903064;
+ // aapt resource value: 0x7f040018
+ public const int abc_search_dropdown_item_icons_2line = 2130968600;
- // aapt resource value: 0x7f030019
- public const int abc_search_view = 2130903065;
+ // aapt resource value: 0x7f040019
+ public const int abc_search_view = 2130968601;
- // aapt resource value: 0x7f03001a
- public const int abc_select_dialog_material = 2130903066;
+ // aapt resource value: 0x7f04001a
+ public const int abc_select_dialog_material = 2130968602;
- // aapt resource value: 0x7f03001b
- public const int abc_tooltip = 2130903067;
+ // aapt resource value: 0x7f04001b
+ public const int abc_tooltip = 2130968603;
- // aapt resource value: 0x7f03001c
- public const int BottomTabLayout = 2130903068;
+ // aapt resource value: 0x7f04001c
+ public const int BottomTabLayout = 2130968604;
- // aapt resource value: 0x7f03001d
- public const int browser_actions_context_menu_page = 2130903069;
+ // aapt resource value: 0x7f04001d
+ public const int browser_actions_context_menu_page = 2130968605;
- // aapt resource value: 0x7f03001e
- public const int browser_actions_context_menu_row = 2130903070;
+ // aapt resource value: 0x7f04001e
+ public const int browser_actions_context_menu_row = 2130968606;
- // aapt resource value: 0x7f03001f
- public const int design_bottom_navigation_item = 2130903071;
+ // aapt resource value: 0x7f04001f
+ public const int design_bottom_navigation_item = 2130968607;
- // aapt resource value: 0x7f030020
- public const int design_bottom_sheet_dialog = 2130903072;
+ // aapt resource value: 0x7f040020
+ public const int design_bottom_sheet_dialog = 2130968608;
- // aapt resource value: 0x7f030021
- public const int design_layout_snackbar = 2130903073;
+ // aapt resource value: 0x7f040021
+ public const int design_layout_snackbar = 2130968609;
- // aapt resource value: 0x7f030022
- public const int design_layout_snackbar_include = 2130903074;
+ // aapt resource value: 0x7f040022
+ public const int design_layout_snackbar_include = 2130968610;
- // aapt resource value: 0x7f030023
- public const int design_layout_tab_icon = 2130903075;
+ // aapt resource value: 0x7f040023
+ public const int design_layout_tab_icon = 2130968611;
- // aapt resource value: 0x7f030024
- public const int design_layout_tab_text = 2130903076;
+ // aapt resource value: 0x7f040024
+ public const int design_layout_tab_text = 2130968612;
- // aapt resource value: 0x7f030025
- public const int design_menu_item_action_area = 2130903077;
+ // aapt resource value: 0x7f040025
+ public const int design_menu_item_action_area = 2130968613;
- // aapt resource value: 0x7f030026
- public const int design_navigation_item = 2130903078;
+ // aapt resource value: 0x7f040026
+ public const int design_navigation_item = 2130968614;
- // aapt resource value: 0x7f030027
- public const int design_navigation_item_header = 2130903079;
+ // aapt resource value: 0x7f040027
+ public const int design_navigation_item_header = 2130968615;
- // aapt resource value: 0x7f030028
- public const int design_navigation_item_separator = 2130903080;
+ // aapt resource value: 0x7f040028
+ public const int design_navigation_item_separator = 2130968616;
- // aapt resource value: 0x7f030029
- public const int design_navigation_item_subheader = 2130903081;
+ // aapt resource value: 0x7f040029
+ public const int design_navigation_item_subheader = 2130968617;
- // aapt resource value: 0x7f03002a
- public const int design_navigation_menu = 2130903082;
+ // aapt resource value: 0x7f04002a
+ public const int design_navigation_menu = 2130968618;
- // aapt resource value: 0x7f03002b
- public const int design_navigation_menu_item = 2130903083;
+ // aapt resource value: 0x7f04002b
+ public const int design_navigation_menu_item = 2130968619;
- // aapt resource value: 0x7f03002c
- public const int design_text_input_password_icon = 2130903084;
+ // aapt resource value: 0x7f04002c
+ public const int design_text_input_password_icon = 2130968620;
- // aapt resource value: 0x7f03002d
- public const int FlyoutContent = 2130903085;
+ // aapt resource value: 0x7f04002d
+ public const int FlyoutContent = 2130968621;
- // aapt resource value: 0x7f03002e
- public const int MaterialPickerTextInput = 2130903086;
+ // aapt resource value: 0x7f04002e
+ public const int MaterialPickerTextInput = 2130968622;
- // aapt resource value: 0x7f03002f
- public const int mr_cast_dialog = 2130903087;
+ // aapt resource value: 0x7f04002f
+ public const int mr_cast_dialog = 2130968623;
- // aapt resource value: 0x7f030030
- public const int mr_cast_group_item = 2130903088;
+ // aapt resource value: 0x7f040030
+ public const int mr_cast_group_item = 2130968624;
- // aapt resource value: 0x7f030031
- public const int mr_cast_group_volume_item = 2130903089;
+ // aapt resource value: 0x7f040031
+ public const int mr_cast_group_volume_item = 2130968625;
- // aapt resource value: 0x7f030032
- public const int mr_cast_media_metadata = 2130903090;
+ // aapt resource value: 0x7f040032
+ public const int mr_cast_media_metadata = 2130968626;
- // aapt resource value: 0x7f030033
- public const int mr_cast_route_item = 2130903091;
+ // aapt resource value: 0x7f040033
+ public const int mr_cast_route_item = 2130968627;
- // aapt resource value: 0x7f030034
- public const int mr_chooser_dialog = 2130903092;
+ // aapt resource value: 0x7f040034
+ public const int mr_chooser_dialog = 2130968628;
- // aapt resource value: 0x7f030035
- public const int mr_chooser_list_item = 2130903093;
+ // aapt resource value: 0x7f040035
+ public const int mr_chooser_list_item = 2130968629;
- // aapt resource value: 0x7f030036
- public const int mr_controller_material_dialog_b = 2130903094;
+ // aapt resource value: 0x7f040036
+ public const int mr_controller_material_dialog_b = 2130968630;
- // aapt resource value: 0x7f030037
- public const int mr_controller_volume_item = 2130903095;
+ // aapt resource value: 0x7f040037
+ public const int mr_controller_volume_item = 2130968631;
- // aapt resource value: 0x7f030038
- public const int mr_dialog_header_item = 2130903096;
+ // aapt resource value: 0x7f040038
+ public const int mr_dialog_header_item = 2130968632;
- // aapt resource value: 0x7f030039
- public const int mr_picker_dialog = 2130903097;
+ // aapt resource value: 0x7f040039
+ public const int mr_picker_dialog = 2130968633;
- // aapt resource value: 0x7f03003a
- public const int mr_picker_route_item = 2130903098;
+ // aapt resource value: 0x7f04003a
+ public const int mr_picker_route_item = 2130968634;
- // aapt resource value: 0x7f03003b
- public const int mr_playback_control = 2130903099;
+ // aapt resource value: 0x7f04003b
+ public const int mr_playback_control = 2130968635;
- // aapt resource value: 0x7f03003c
- public const int mr_volume_control = 2130903100;
+ // aapt resource value: 0x7f04003c
+ public const int mr_volume_control = 2130968636;
- // aapt resource value: 0x7f03003d
- public const int mtrl_layout_snackbar = 2130903101;
+ // aapt resource value: 0x7f04003d
+ public const int mtrl_layout_snackbar = 2130968637;
- // aapt resource value: 0x7f03003e
- public const int mtrl_layout_snackbar_include = 2130903102;
+ // aapt resource value: 0x7f04003e
+ public const int mtrl_layout_snackbar_include = 2130968638;
- // aapt resource value: 0x7f03003f
- public const int notification_action = 2130903103;
+ // aapt resource value: 0x7f04003f
+ public const int notification_action = 2130968639;
- // aapt resource value: 0x7f030040
- public const int notification_action_tombstone = 2130903104;
+ // aapt resource value: 0x7f040040
+ public const int notification_action_tombstone = 2130968640;
- // aapt resource value: 0x7f030041
- public const int notification_media_action = 2130903105;
+ // aapt resource value: 0x7f040041
+ public const int notification_media_action = 2130968641;
- // aapt resource value: 0x7f030042
- public const int notification_media_cancel_action = 2130903106;
+ // aapt resource value: 0x7f040042
+ public const int notification_media_cancel_action = 2130968642;
- // aapt resource value: 0x7f030043
- public const int notification_template_big_media = 2130903107;
+ // aapt resource value: 0x7f040043
+ public const int notification_template_big_media = 2130968643;
- // aapt resource value: 0x7f030044
- public const int notification_template_big_media_custom = 2130903108;
+ // aapt resource value: 0x7f040044
+ public const int notification_template_big_media_custom = 2130968644;
- // aapt resource value: 0x7f030045
- public const int notification_template_big_media_narrow = 2130903109;
+ // aapt resource value: 0x7f040045
+ public const int notification_template_big_media_narrow = 2130968645;
- // aapt resource value: 0x7f030046
- public const int notification_template_big_media_narrow_custom = 2130903110;
+ // aapt resource value: 0x7f040046
+ public const int notification_template_big_media_narrow_custom = 2130968646;
- // aapt resource value: 0x7f030047
- public const int notification_template_custom_big = 2130903111;
+ // aapt resource value: 0x7f040047
+ public const int notification_template_custom_big = 2130968647;
- // aapt resource value: 0x7f030048
- public const int notification_template_icon_group = 2130903112;
+ // aapt resource value: 0x7f040048
+ public const int notification_template_icon_group = 2130968648;
- // aapt resource value: 0x7f030049
- public const int notification_template_lines_media = 2130903113;
+ // aapt resource value: 0x7f040049
+ public const int notification_template_lines_media = 2130968649;
- // aapt resource value: 0x7f03004a
- public const int notification_template_media = 2130903114;
+ // aapt resource value: 0x7f04004a
+ public const int notification_template_media = 2130968650;
- // aapt resource value: 0x7f03004b
- public const int notification_template_media_custom = 2130903115;
+ // aapt resource value: 0x7f04004b
+ public const int notification_template_media_custom = 2130968651;
- // aapt resource value: 0x7f03004c
- public const int notification_template_part_chronometer = 2130903116;
+ // aapt resource value: 0x7f04004c
+ public const int notification_template_part_chronometer = 2130968652;
- // aapt resource value: 0x7f03004d
- public const int notification_template_part_time = 2130903117;
+ // aapt resource value: 0x7f04004d
+ public const int notification_template_part_time = 2130968653;
- // aapt resource value: 0x7f03004e
- public const int RootLayout = 2130903118;
+ // aapt resource value: 0x7f04004e
+ public const int RootLayout = 2130968654;
- // aapt resource value: 0x7f03004f
- public const int select_dialog_item_material = 2130903119;
+ // aapt resource value: 0x7f04004f
+ public const int select_dialog_item_material = 2130968655;
- // aapt resource value: 0x7f030050
- public const int select_dialog_multichoice_material = 2130903120;
+ // aapt resource value: 0x7f040050
+ public const int select_dialog_multichoice_material = 2130968656;
- // aapt resource value: 0x7f030051
- public const int select_dialog_singlechoice_material = 2130903121;
+ // aapt resource value: 0x7f040051
+ public const int select_dialog_singlechoice_material = 2130968657;
- // aapt resource value: 0x7f030052
- public const int ShellContent = 2130903122;
+ // aapt resource value: 0x7f040052
+ public const int ShellContent = 2130968658;
- // aapt resource value: 0x7f030053
- public const int support_simple_spinner_dropdown_item = 2130903123;
+ // aapt resource value: 0x7f040053
+ public const int support_simple_spinner_dropdown_item = 2130968659;
- // aapt resource value: 0x7f030054
- public const int Tabbar = 2130903124;
+ // aapt resource value: 0x7f040054
+ public const int Tabbar = 2130968660;
- // aapt resource value: 0x7f030055
- public const int TextInputLayoutFilledBox = 2130903125;
+ // aapt resource value: 0x7f040055
+ public const int TextInputLayoutFilledBox = 2130968661;
- // aapt resource value: 0x7f030056
- public const int Toolbar = 2130903126;
+ // aapt resource value: 0x7f040056
+ public const int Toolbar = 2130968662;
static Layout()
{
@@ -10339,239 +10370,239 @@ namespace AideDeJeu.Droid
public partial class String
{
- // aapt resource value: 0x7f0b0018
- public const int abc_action_bar_home_description = 2131427352;
+ // aapt resource value: 0x7f0c0018
+ public const int abc_action_bar_home_description = 2131492888;
- // aapt resource value: 0x7f0b0019
- public const int abc_action_bar_up_description = 2131427353;
+ // aapt resource value: 0x7f0c0019
+ public const int abc_action_bar_up_description = 2131492889;
- // aapt resource value: 0x7f0b001a
- public const int abc_action_menu_overflow_description = 2131427354;
+ // aapt resource value: 0x7f0c001a
+ public const int abc_action_menu_overflow_description = 2131492890;
- // aapt resource value: 0x7f0b001b
- public const int abc_action_mode_done = 2131427355;
+ // aapt resource value: 0x7f0c001b
+ public const int abc_action_mode_done = 2131492891;
- // aapt resource value: 0x7f0b001c
- public const int abc_activity_chooser_view_see_all = 2131427356;
+ // aapt resource value: 0x7f0c001c
+ public const int abc_activity_chooser_view_see_all = 2131492892;
- // aapt resource value: 0x7f0b001d
- public const int abc_activitychooserview_choose_application = 2131427357;
+ // aapt resource value: 0x7f0c001d
+ public const int abc_activitychooserview_choose_application = 2131492893;
- // aapt resource value: 0x7f0b001e
- public const int abc_capital_off = 2131427358;
+ // aapt resource value: 0x7f0c001e
+ public const int abc_capital_off = 2131492894;
- // aapt resource value: 0x7f0b001f
- public const int abc_capital_on = 2131427359;
+ // aapt resource value: 0x7f0c001f
+ public const int abc_capital_on = 2131492895;
- // aapt resource value: 0x7f0b0034
- public const int abc_font_family_body_1_material = 2131427380;
+ // aapt resource value: 0x7f0c0034
+ public const int abc_font_family_body_1_material = 2131492916;
- // aapt resource value: 0x7f0b0035
- public const int abc_font_family_body_2_material = 2131427381;
+ // aapt resource value: 0x7f0c0035
+ public const int abc_font_family_body_2_material = 2131492917;
- // aapt resource value: 0x7f0b0036
- public const int abc_font_family_button_material = 2131427382;
+ // aapt resource value: 0x7f0c0036
+ public const int abc_font_family_button_material = 2131492918;
- // aapt resource value: 0x7f0b0037
- public const int abc_font_family_caption_material = 2131427383;
+ // aapt resource value: 0x7f0c0037
+ public const int abc_font_family_caption_material = 2131492919;
- // aapt resource value: 0x7f0b0038
- public const int abc_font_family_display_1_material = 2131427384;
+ // aapt resource value: 0x7f0c0038
+ public const int abc_font_family_display_1_material = 2131492920;
- // aapt resource value: 0x7f0b0039
- public const int abc_font_family_display_2_material = 2131427385;
+ // aapt resource value: 0x7f0c0039
+ public const int abc_font_family_display_2_material = 2131492921;
- // aapt resource value: 0x7f0b003a
- public const int abc_font_family_display_3_material = 2131427386;
+ // aapt resource value: 0x7f0c003a
+ public const int abc_font_family_display_3_material = 2131492922;
- // aapt resource value: 0x7f0b003b
- public const int abc_font_family_display_4_material = 2131427387;
+ // aapt resource value: 0x7f0c003b
+ public const int abc_font_family_display_4_material = 2131492923;
- // aapt resource value: 0x7f0b003c
- public const int abc_font_family_headline_material = 2131427388;
+ // aapt resource value: 0x7f0c003c
+ public const int abc_font_family_headline_material = 2131492924;
- // aapt resource value: 0x7f0b003d
- public const int abc_font_family_menu_material = 2131427389;
+ // aapt resource value: 0x7f0c003d
+ public const int abc_font_family_menu_material = 2131492925;
- // aapt resource value: 0x7f0b003e
- public const int abc_font_family_subhead_material = 2131427390;
+ // aapt resource value: 0x7f0c003e
+ public const int abc_font_family_subhead_material = 2131492926;
- // aapt resource value: 0x7f0b003f
- public const int abc_font_family_title_material = 2131427391;
+ // aapt resource value: 0x7f0c003f
+ public const int abc_font_family_title_material = 2131492927;
- // aapt resource value: 0x7f0b0020
- public const int abc_menu_alt_shortcut_label = 2131427360;
+ // aapt resource value: 0x7f0c0020
+ public const int abc_menu_alt_shortcut_label = 2131492896;
- // aapt resource value: 0x7f0b0021
- public const int abc_menu_ctrl_shortcut_label = 2131427361;
+ // aapt resource value: 0x7f0c0021
+ public const int abc_menu_ctrl_shortcut_label = 2131492897;
- // aapt resource value: 0x7f0b0022
- public const int abc_menu_delete_shortcut_label = 2131427362;
+ // aapt resource value: 0x7f0c0022
+ public const int abc_menu_delete_shortcut_label = 2131492898;
- // aapt resource value: 0x7f0b0023
- public const int abc_menu_enter_shortcut_label = 2131427363;
+ // aapt resource value: 0x7f0c0023
+ public const int abc_menu_enter_shortcut_label = 2131492899;
- // aapt resource value: 0x7f0b0024
- public const int abc_menu_function_shortcut_label = 2131427364;
+ // aapt resource value: 0x7f0c0024
+ public const int abc_menu_function_shortcut_label = 2131492900;
- // aapt resource value: 0x7f0b0025
- public const int abc_menu_meta_shortcut_label = 2131427365;
+ // aapt resource value: 0x7f0c0025
+ public const int abc_menu_meta_shortcut_label = 2131492901;
- // aapt resource value: 0x7f0b0026
- public const int abc_menu_shift_shortcut_label = 2131427366;
+ // aapt resource value: 0x7f0c0026
+ public const int abc_menu_shift_shortcut_label = 2131492902;
- // aapt resource value: 0x7f0b0027
- public const int abc_menu_space_shortcut_label = 2131427367;
+ // aapt resource value: 0x7f0c0027
+ public const int abc_menu_space_shortcut_label = 2131492903;
- // aapt resource value: 0x7f0b0028
- public const int abc_menu_sym_shortcut_label = 2131427368;
+ // aapt resource value: 0x7f0c0028
+ public const int abc_menu_sym_shortcut_label = 2131492904;
- // aapt resource value: 0x7f0b0029
- public const int abc_prepend_shortcut_label = 2131427369;
+ // aapt resource value: 0x7f0c0029
+ public const int abc_prepend_shortcut_label = 2131492905;
- // aapt resource value: 0x7f0b002a
- public const int abc_search_hint = 2131427370;
+ // aapt resource value: 0x7f0c002a
+ public const int abc_search_hint = 2131492906;
- // aapt resource value: 0x7f0b002b
- public const int abc_searchview_description_clear = 2131427371;
+ // aapt resource value: 0x7f0c002b
+ public const int abc_searchview_description_clear = 2131492907;
- // aapt resource value: 0x7f0b002c
- public const int abc_searchview_description_query = 2131427372;
+ // aapt resource value: 0x7f0c002c
+ public const int abc_searchview_description_query = 2131492908;
- // aapt resource value: 0x7f0b002d
- public const int abc_searchview_description_search = 2131427373;
+ // aapt resource value: 0x7f0c002d
+ public const int abc_searchview_description_search = 2131492909;
- // aapt resource value: 0x7f0b002e
- public const int abc_searchview_description_submit = 2131427374;
+ // aapt resource value: 0x7f0c002e
+ public const int abc_searchview_description_submit = 2131492910;
- // aapt resource value: 0x7f0b002f
- public const int abc_searchview_description_voice = 2131427375;
+ // aapt resource value: 0x7f0c002f
+ public const int abc_searchview_description_voice = 2131492911;
- // aapt resource value: 0x7f0b0030
- public const int abc_shareactionprovider_share_with = 2131427376;
+ // aapt resource value: 0x7f0c0030
+ public const int abc_shareactionprovider_share_with = 2131492912;
- // aapt resource value: 0x7f0b0031
- public const int abc_shareactionprovider_share_with_application = 2131427377;
+ // aapt resource value: 0x7f0c0031
+ public const int abc_shareactionprovider_share_with_application = 2131492913;
- // aapt resource value: 0x7f0b0032
- public const int abc_toolbar_collapse_description = 2131427378;
+ // aapt resource value: 0x7f0c0032
+ public const int abc_toolbar_collapse_description = 2131492914;
- // aapt resource value: 0x7f0b0040
- public const int appbar_scrolling_view_behavior = 2131427392;
+ // aapt resource value: 0x7f0c0040
+ public const int appbar_scrolling_view_behavior = 2131492928;
- // aapt resource value: 0x7f0b0041
- public const int bottom_sheet_behavior = 2131427393;
+ // aapt resource value: 0x7f0c0041
+ public const int bottom_sheet_behavior = 2131492929;
- // aapt resource value: 0x7f0b0042
- public const int character_counter_content_description = 2131427394;
+ // aapt resource value: 0x7f0c0042
+ public const int character_counter_content_description = 2131492930;
- // aapt resource value: 0x7f0b0043
- public const int character_counter_pattern = 2131427395;
+ // aapt resource value: 0x7f0c0043
+ public const int character_counter_pattern = 2131492931;
- // aapt resource value: 0x7f0b0044
- public const int fab_transformation_scrim_behavior = 2131427396;
+ // aapt resource value: 0x7f0c0044
+ public const int fab_transformation_scrim_behavior = 2131492932;
- // aapt resource value: 0x7f0b0045
- public const int fab_transformation_sheet_behavior = 2131427397;
+ // aapt resource value: 0x7f0c0045
+ public const int fab_transformation_sheet_behavior = 2131492933;
- // aapt resource value: 0x7f0b0046
- public const int hide_bottom_view_on_scroll_behavior = 2131427398;
+ // aapt resource value: 0x7f0c0046
+ public const int hide_bottom_view_on_scroll_behavior = 2131492934;
- // aapt resource value: 0x7f0b0000
- public const int mr_button_content_description = 2131427328;
+ // aapt resource value: 0x7f0c0000
+ public const int mr_button_content_description = 2131492864;
- // aapt resource value: 0x7f0b0001
- public const int mr_cast_button_connected = 2131427329;
+ // aapt resource value: 0x7f0c0001
+ public const int mr_cast_button_connected = 2131492865;
- // aapt resource value: 0x7f0b0002
- public const int mr_cast_button_connecting = 2131427330;
+ // aapt resource value: 0x7f0c0002
+ public const int mr_cast_button_connecting = 2131492866;
- // aapt resource value: 0x7f0b0003
- public const int mr_cast_button_disconnected = 2131427331;
+ // aapt resource value: 0x7f0c0003
+ public const int mr_cast_button_disconnected = 2131492867;
- // aapt resource value: 0x7f0b0015
- public const int mr_cast_dialog_title_view_placeholder = 2131427349;
+ // aapt resource value: 0x7f0c0015
+ public const int mr_cast_dialog_title_view_placeholder = 2131492885;
- // aapt resource value: 0x7f0b0004
- public const int mr_chooser_searching = 2131427332;
+ // aapt resource value: 0x7f0c0004
+ public const int mr_chooser_searching = 2131492868;
- // aapt resource value: 0x7f0b0005
- public const int mr_chooser_title = 2131427333;
+ // aapt resource value: 0x7f0c0005
+ public const int mr_chooser_title = 2131492869;
- // aapt resource value: 0x7f0b0006
- public const int mr_controller_album_art = 2131427334;
+ // aapt resource value: 0x7f0c0006
+ public const int mr_controller_album_art = 2131492870;
- // aapt resource value: 0x7f0b0007
- public const int mr_controller_casting_screen = 2131427335;
+ // aapt resource value: 0x7f0c0007
+ public const int mr_controller_casting_screen = 2131492871;
- // aapt resource value: 0x7f0b0008
- public const int mr_controller_close_description = 2131427336;
+ // aapt resource value: 0x7f0c0008
+ public const int mr_controller_close_description = 2131492872;
- // aapt resource value: 0x7f0b0009
- public const int mr_controller_collapse_group = 2131427337;
+ // aapt resource value: 0x7f0c0009
+ public const int mr_controller_collapse_group = 2131492873;
- // aapt resource value: 0x7f0b000a
- public const int mr_controller_disconnect = 2131427338;
+ // aapt resource value: 0x7f0c000a
+ public const int mr_controller_disconnect = 2131492874;
- // aapt resource value: 0x7f0b000b
- public const int mr_controller_expand_group = 2131427339;
+ // aapt resource value: 0x7f0c000b
+ public const int mr_controller_expand_group = 2131492875;
- // aapt resource value: 0x7f0b000c
- public const int mr_controller_no_info_available = 2131427340;
+ // aapt resource value: 0x7f0c000c
+ public const int mr_controller_no_info_available = 2131492876;
- // aapt resource value: 0x7f0b000d
- public const int mr_controller_no_media_selected = 2131427341;
+ // aapt resource value: 0x7f0c000d
+ public const int mr_controller_no_media_selected = 2131492877;
- // aapt resource value: 0x7f0b000e
- public const int mr_controller_pause = 2131427342;
+ // aapt resource value: 0x7f0c000e
+ public const int mr_controller_pause = 2131492878;
- // aapt resource value: 0x7f0b000f
- public const int mr_controller_play = 2131427343;
+ // aapt resource value: 0x7f0c000f
+ public const int mr_controller_play = 2131492879;
- // aapt resource value: 0x7f0b0010
- public const int mr_controller_stop = 2131427344;
+ // aapt resource value: 0x7f0c0010
+ public const int mr_controller_stop = 2131492880;
- // aapt resource value: 0x7f0b0011
- public const int mr_controller_stop_casting = 2131427345;
+ // aapt resource value: 0x7f0c0011
+ public const int mr_controller_stop_casting = 2131492881;
- // aapt resource value: 0x7f0b0012
- public const int mr_controller_volume_slider = 2131427346;
+ // aapt resource value: 0x7f0c0012
+ public const int mr_controller_volume_slider = 2131492882;
- // aapt resource value: 0x7f0b0016
- public const int mr_dialog_device_header = 2131427350;
+ // aapt resource value: 0x7f0c0016
+ public const int mr_dialog_device_header = 2131492886;
- // aapt resource value: 0x7f0b0017
- public const int mr_dialog_route_header = 2131427351;
+ // aapt resource value: 0x7f0c0017
+ public const int mr_dialog_route_header = 2131492887;
- // aapt resource value: 0x7f0b0013
- public const int mr_system_route_name = 2131427347;
+ // aapt resource value: 0x7f0c0013
+ public const int mr_system_route_name = 2131492883;
- // aapt resource value: 0x7f0b0014
- public const int mr_user_route_category_name = 2131427348;
+ // aapt resource value: 0x7f0c0014
+ public const int mr_user_route_category_name = 2131492884;
- // aapt resource value: 0x7f0b0047
- public const int mtrl_chip_close_icon_content_description = 2131427399;
+ // aapt resource value: 0x7f0c0047
+ public const int mtrl_chip_close_icon_content_description = 2131492935;
- // aapt resource value: 0x7f0b0048
- public const int password_toggle_content_description = 2131427400;
+ // aapt resource value: 0x7f0c0048
+ public const int password_toggle_content_description = 2131492936;
- // aapt resource value: 0x7f0b0049
- public const int path_password_eye = 2131427401;
+ // aapt resource value: 0x7f0c0049
+ public const int path_password_eye = 2131492937;
- // aapt resource value: 0x7f0b004a
- public const int path_password_eye_mask_strike_through = 2131427402;
+ // aapt resource value: 0x7f0c004a
+ public const int path_password_eye_mask_strike_through = 2131492938;
- // aapt resource value: 0x7f0b004b
- public const int path_password_eye_mask_visible = 2131427403;
+ // aapt resource value: 0x7f0c004b
+ public const int path_password_eye_mask_visible = 2131492939;
- // aapt resource value: 0x7f0b004c
- public const int path_password_strike_through = 2131427404;
+ // aapt resource value: 0x7f0c004c
+ public const int path_password_strike_through = 2131492940;
- // aapt resource value: 0x7f0b0033
- public const int search_menu_title = 2131427379;
+ // aapt resource value: 0x7f0c0033
+ public const int search_menu_title = 2131492915;
- // aapt resource value: 0x7f0b004d
- public const int status_bar_notification_info_overflow = 2131427405;
+ // aapt resource value: 0x7f0c004d
+ public const int status_bar_notification_info_overflow = 2131492941;
static String()
{
@@ -10586,1574 +10617,1580 @@ namespace AideDeJeu.Droid
public partial class Style
{
- // aapt resource value: 0x7f08009f
- public const int AlertDialog_AppCompat = 2131230879;
+ // aapt resource value: 0x7f09009f
+ public const int AlertDialog_AppCompat = 2131296415;
- // aapt resource value: 0x7f0800a0
- public const int AlertDialog_AppCompat_Light = 2131230880;
+ // aapt resource value: 0x7f0900a0
+ public const int AlertDialog_AppCompat_Light = 2131296416;
- // aapt resource value: 0x7f0800a1
- public const int Animation_AppCompat_Dialog = 2131230881;
+ // aapt resource value: 0x7f0900a1
+ public const int Animation_AppCompat_Dialog = 2131296417;
- // aapt resource value: 0x7f0800a2
- public const int Animation_AppCompat_DropDownUp = 2131230882;
+ // aapt resource value: 0x7f0900a2
+ public const int Animation_AppCompat_DropDownUp = 2131296418;
- // aapt resource value: 0x7f0800a3
- public const int Animation_AppCompat_Tooltip = 2131230883;
+ // aapt resource value: 0x7f0900a3
+ public const int Animation_AppCompat_Tooltip = 2131296419;
- // aapt resource value: 0x7f080174
- public const int Animation_Design_BottomSheetDialog = 2131231092;
+ // aapt resource value: 0x7f090174
+ public const int Animation_Design_BottomSheetDialog = 2131296628;
- // aapt resource value: 0x7f080209
- public const int AppCompatDialogStyle = 2131231241;
+ // aapt resource value: 0x7f090209
+ public const int AppCompatDialogStyle = 2131296777;
- // aapt resource value: 0x7f0800a4
- public const int Base_AlertDialog_AppCompat = 2131230884;
+ // aapt resource value: 0x7f0900a4
+ public const int Base_AlertDialog_AppCompat = 2131296420;
- // aapt resource value: 0x7f0800a5
- public const int Base_AlertDialog_AppCompat_Light = 2131230885;
+ // aapt resource value: 0x7f0900a5
+ public const int Base_AlertDialog_AppCompat_Light = 2131296421;
- // aapt resource value: 0x7f0800a6
- public const int Base_Animation_AppCompat_Dialog = 2131230886;
+ // aapt resource value: 0x7f0900a6
+ public const int Base_Animation_AppCompat_Dialog = 2131296422;
- // aapt resource value: 0x7f0800a7
- public const int Base_Animation_AppCompat_DropDownUp = 2131230887;
+ // aapt resource value: 0x7f0900a7
+ public const int Base_Animation_AppCompat_DropDownUp = 2131296423;
- // aapt resource value: 0x7f0800a8
- public const int Base_Animation_AppCompat_Tooltip = 2131230888;
+ // aapt resource value: 0x7f0900a8
+ public const int Base_Animation_AppCompat_Tooltip = 2131296424;
- // aapt resource value: 0x7f080013
- public const int Base_CardView = 2131230739;
+ // aapt resource value: 0x7f090013
+ public const int Base_CardView = 2131296275;
- // aapt resource value: 0x7f0800a9
- public const int Base_DialogWindowTitle_AppCompat = 2131230889;
+ // aapt resource value: 0x7f0900a9
+ public const int Base_DialogWindowTitle_AppCompat = 2131296425;
- // aapt resource value: 0x7f0800aa
- public const int Base_DialogWindowTitleBackground_AppCompat = 2131230890;
+ // aapt resource value: 0x7f0900aa
+ public const int Base_DialogWindowTitleBackground_AppCompat = 2131296426;
- // aapt resource value: 0x7f080033
- public const int Base_TextAppearance_AppCompat = 2131230771;
+ // aapt resource value: 0x7f090033
+ public const int Base_TextAppearance_AppCompat = 2131296307;
- // aapt resource value: 0x7f080034
- public const int Base_TextAppearance_AppCompat_Body1 = 2131230772;
+ // aapt resource value: 0x7f090034
+ public const int Base_TextAppearance_AppCompat_Body1 = 2131296308;
- // aapt resource value: 0x7f080035
- public const int Base_TextAppearance_AppCompat_Body2 = 2131230773;
+ // aapt resource value: 0x7f090035
+ public const int Base_TextAppearance_AppCompat_Body2 = 2131296309;
- // aapt resource value: 0x7f080036
- public const int Base_TextAppearance_AppCompat_Button = 2131230774;
+ // aapt resource value: 0x7f090036
+ public const int Base_TextAppearance_AppCompat_Button = 2131296310;
- // aapt resource value: 0x7f080037
- public const int Base_TextAppearance_AppCompat_Caption = 2131230775;
+ // aapt resource value: 0x7f090037
+ public const int Base_TextAppearance_AppCompat_Caption = 2131296311;
- // aapt resource value: 0x7f080038
- public const int Base_TextAppearance_AppCompat_Display1 = 2131230776;
+ // aapt resource value: 0x7f090038
+ public const int Base_TextAppearance_AppCompat_Display1 = 2131296312;
- // aapt resource value: 0x7f080039
- public const int Base_TextAppearance_AppCompat_Display2 = 2131230777;
+ // aapt resource value: 0x7f090039
+ public const int Base_TextAppearance_AppCompat_Display2 = 2131296313;
- // aapt resource value: 0x7f08003a
- public const int Base_TextAppearance_AppCompat_Display3 = 2131230778;
+ // aapt resource value: 0x7f09003a
+ public const int Base_TextAppearance_AppCompat_Display3 = 2131296314;
- // aapt resource value: 0x7f08003b
- public const int Base_TextAppearance_AppCompat_Display4 = 2131230779;
+ // aapt resource value: 0x7f09003b
+ public const int Base_TextAppearance_AppCompat_Display4 = 2131296315;
- // aapt resource value: 0x7f08003c
- public const int Base_TextAppearance_AppCompat_Headline = 2131230780;
+ // aapt resource value: 0x7f09003c
+ public const int Base_TextAppearance_AppCompat_Headline = 2131296316;
- // aapt resource value: 0x7f08003d
- public const int Base_TextAppearance_AppCompat_Inverse = 2131230781;
+ // aapt resource value: 0x7f09003d
+ public const int Base_TextAppearance_AppCompat_Inverse = 2131296317;
- // aapt resource value: 0x7f08003e
- public const int Base_TextAppearance_AppCompat_Large = 2131230782;
+ // aapt resource value: 0x7f09003e
+ public const int Base_TextAppearance_AppCompat_Large = 2131296318;
- // aapt resource value: 0x7f08003f
- public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131230783;
+ // aapt resource value: 0x7f09003f
+ public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131296319;
- // aapt resource value: 0x7f080040
- public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131230784;
+ // aapt resource value: 0x7f090040
+ public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131296320;
- // aapt resource value: 0x7f080041
- public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131230785;
+ // aapt resource value: 0x7f090041
+ public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131296321;
- // aapt resource value: 0x7f080042
- public const int Base_TextAppearance_AppCompat_Medium = 2131230786;
+ // aapt resource value: 0x7f090042
+ public const int Base_TextAppearance_AppCompat_Medium = 2131296322;
- // aapt resource value: 0x7f080043
- public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131230787;
+ // aapt resource value: 0x7f090043
+ public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131296323;
- // aapt resource value: 0x7f080044
- public const int Base_TextAppearance_AppCompat_Menu = 2131230788;
+ // aapt resource value: 0x7f090044
+ public const int Base_TextAppearance_AppCompat_Menu = 2131296324;
- // aapt resource value: 0x7f0800ab
- public const int Base_TextAppearance_AppCompat_SearchResult = 2131230891;
+ // aapt resource value: 0x7f0900ab
+ public const int Base_TextAppearance_AppCompat_SearchResult = 2131296427;
- // aapt resource value: 0x7f080045
- public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131230789;
+ // aapt resource value: 0x7f090045
+ public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131296325;
- // aapt resource value: 0x7f080046
- public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131230790;
+ // aapt resource value: 0x7f090046
+ public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131296326;
- // aapt resource value: 0x7f080047
- public const int Base_TextAppearance_AppCompat_Small = 2131230791;
+ // aapt resource value: 0x7f090047
+ public const int Base_TextAppearance_AppCompat_Small = 2131296327;
- // aapt resource value: 0x7f080048
- public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131230792;
+ // aapt resource value: 0x7f090048
+ public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131296328;
- // aapt resource value: 0x7f080049
- public const int Base_TextAppearance_AppCompat_Subhead = 2131230793;
+ // aapt resource value: 0x7f090049
+ public const int Base_TextAppearance_AppCompat_Subhead = 2131296329;
- // aapt resource value: 0x7f0800ac
- public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131230892;
+ // aapt resource value: 0x7f0900ac
+ public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131296428;
- // aapt resource value: 0x7f08004a
- public const int Base_TextAppearance_AppCompat_Title = 2131230794;
+ // aapt resource value: 0x7f09004a
+ public const int Base_TextAppearance_AppCompat_Title = 2131296330;
- // aapt resource value: 0x7f0800ad
- public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131230893;
+ // aapt resource value: 0x7f0900ad
+ public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131296429;
- // aapt resource value: 0x7f0800ae
- public const int Base_TextAppearance_AppCompat_Tooltip = 2131230894;
+ // aapt resource value: 0x7f0900ae
+ public const int Base_TextAppearance_AppCompat_Tooltip = 2131296430;
- // aapt resource value: 0x7f08008e
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131230862;
+ // aapt resource value: 0x7f09008e
+ public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131296398;
- // aapt resource value: 0x7f08004b
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131230795;
+ // aapt resource value: 0x7f09004b
+ public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131296331;
- // aapt resource value: 0x7f08004c
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131230796;
+ // aapt resource value: 0x7f09004c
+ public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131296332;
- // aapt resource value: 0x7f08004d
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131230797;
+ // aapt resource value: 0x7f09004d
+ public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131296333;
- // aapt resource value: 0x7f08004e
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131230798;
+ // aapt resource value: 0x7f09004e
+ public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131296334;
- // aapt resource value: 0x7f08004f
- public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131230799;
+ // aapt resource value: 0x7f09004f
+ public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131296335;
- // aapt resource value: 0x7f080050
- public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131230800;
+ // aapt resource value: 0x7f090050
+ public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131296336;
- // aapt resource value: 0x7f080051
- public const int Base_TextAppearance_AppCompat_Widget_Button = 2131230801;
+ // aapt resource value: 0x7f090051
+ public const int Base_TextAppearance_AppCompat_Widget_Button = 2131296337;
- // aapt resource value: 0x7f080095
- public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131230869;
+ // aapt resource value: 0x7f090095
+ public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131296405;
- // aapt resource value: 0x7f080096
- public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131230870;
+ // aapt resource value: 0x7f090096
+ public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131296406;
- // aapt resource value: 0x7f08008f
- public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131230863;
+ // aapt resource value: 0x7f09008f
+ public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131296399;
- // aapt resource value: 0x7f0800af
- public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131230895;
+ // aapt resource value: 0x7f0900af
+ public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131296431;
- // aapt resource value: 0x7f080052
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131230802;
+ // aapt resource value: 0x7f090052
+ public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131296338;
- // aapt resource value: 0x7f080053
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131230803;
+ // aapt resource value: 0x7f090053
+ public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131296339;
- // aapt resource value: 0x7f080054
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131230804;
+ // aapt resource value: 0x7f090054
+ public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131296340;
- // aapt resource value: 0x7f080055
- public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131230805;
+ // aapt resource value: 0x7f090055
+ public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131296341;
- // aapt resource value: 0x7f080056
- public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131230806;
+ // aapt resource value: 0x7f090056
+ public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131296342;
- // aapt resource value: 0x7f0800b0
- public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131230896;
+ // aapt resource value: 0x7f0900b0
+ public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131296432;
- // aapt resource value: 0x7f080057
- public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131230807;
+ // aapt resource value: 0x7f090057
+ public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131296343;
- // aapt resource value: 0x7f080058
- public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131230808;
+ // aapt resource value: 0x7f090058
+ public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131296344;
- // aapt resource value: 0x7f080059
- public const int Base_Theme_AppCompat = 2131230809;
+ // aapt resource value: 0x7f090059
+ public const int Base_Theme_AppCompat = 2131296345;
- // aapt resource value: 0x7f0800b1
- public const int Base_Theme_AppCompat_CompactMenu = 2131230897;
+ // aapt resource value: 0x7f0900b1
+ public const int Base_Theme_AppCompat_CompactMenu = 2131296433;
- // aapt resource value: 0x7f08005a
- public const int Base_Theme_AppCompat_Dialog = 2131230810;
+ // aapt resource value: 0x7f09005a
+ public const int Base_Theme_AppCompat_Dialog = 2131296346;
- // aapt resource value: 0x7f0800b2
- public const int Base_Theme_AppCompat_Dialog_Alert = 2131230898;
+ // aapt resource value: 0x7f0900b2
+ public const int Base_Theme_AppCompat_Dialog_Alert = 2131296434;
- // aapt resource value: 0x7f0800b3
- public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131230899;
+ // aapt resource value: 0x7f0900b3
+ public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131296435;
- // aapt resource value: 0x7f0800b4
- public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131230900;
+ // aapt resource value: 0x7f0900b4
+ public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131296436;
- // aapt resource value: 0x7f080017
- public const int Base_Theme_AppCompat_DialogWhenLarge = 2131230743;
+ // aapt resource value: 0x7f090017
+ public const int Base_Theme_AppCompat_DialogWhenLarge = 2131296279;
- // aapt resource value: 0x7f08005b
- public const int Base_Theme_AppCompat_Light = 2131230811;
+ // aapt resource value: 0x7f09005b
+ public const int Base_Theme_AppCompat_Light = 2131296347;
- // aapt resource value: 0x7f0800b5
- public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131230901;
+ // aapt resource value: 0x7f0900b5
+ public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131296437;
- // aapt resource value: 0x7f08005c
- public const int Base_Theme_AppCompat_Light_Dialog = 2131230812;
+ // aapt resource value: 0x7f09005c
+ public const int Base_Theme_AppCompat_Light_Dialog = 2131296348;
- // aapt resource value: 0x7f0800b6
- public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131230902;
+ // aapt resource value: 0x7f0900b6
+ public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131296438;
- // aapt resource value: 0x7f0800b7
- public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131230903;
+ // aapt resource value: 0x7f0900b7
+ public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131296439;
- // aapt resource value: 0x7f0800b8
- public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131230904;
+ // aapt resource value: 0x7f0900b8
+ public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131296440;
- // aapt resource value: 0x7f080018
- public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131230744;
+ // aapt resource value: 0x7f090018
+ public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131296280;
- // aapt resource value: 0x7f080175
- public const int Base_Theme_MaterialComponents = 2131231093;
+ // aapt resource value: 0x7f090175
+ public const int Base_Theme_MaterialComponents = 2131296629;
- // aapt resource value: 0x7f080176
- public const int Base_Theme_MaterialComponents_Bridge = 2131231094;
+ // aapt resource value: 0x7f090176
+ public const int Base_Theme_MaterialComponents_Bridge = 2131296630;
- // aapt resource value: 0x7f080177
- public const int Base_Theme_MaterialComponents_CompactMenu = 2131231095;
+ // aapt resource value: 0x7f090177
+ public const int Base_Theme_MaterialComponents_CompactMenu = 2131296631;
- // aapt resource value: 0x7f080178
- public const int Base_Theme_MaterialComponents_Dialog = 2131231096;
+ // aapt resource value: 0x7f090178
+ public const int Base_Theme_MaterialComponents_Dialog = 2131296632;
- // aapt resource value: 0x7f080179
- public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131231097;
+ // aapt resource value: 0x7f090179
+ public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131296633;
- // aapt resource value: 0x7f08017a
- public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131231098;
+ // aapt resource value: 0x7f09017a
+ public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131296634;
- // aapt resource value: 0x7f08017b
- public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131231099;
+ // aapt resource value: 0x7f09017b
+ public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131296635;
- // aapt resource value: 0x7f08016e
- public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131231086;
+ // aapt resource value: 0x7f09016e
+ public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131296622;
- // aapt resource value: 0x7f08017c
- public const int Base_Theme_MaterialComponents_Light = 2131231100;
+ // aapt resource value: 0x7f09017c
+ public const int Base_Theme_MaterialComponents_Light = 2131296636;
- // aapt resource value: 0x7f08017d
- public const int Base_Theme_MaterialComponents_Light_Bridge = 2131231101;
+ // aapt resource value: 0x7f09017d
+ public const int Base_Theme_MaterialComponents_Light_Bridge = 2131296637;
- // aapt resource value: 0x7f08017e
- public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131231102;
+ // aapt resource value: 0x7f09017e
+ public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131296638;
- // aapt resource value: 0x7f08017f
- public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131231103;
+ // aapt resource value: 0x7f09017f
+ public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131296639;
- // aapt resource value: 0x7f080180
- public const int Base_Theme_MaterialComponents_Light_Dialog = 2131231104;
+ // aapt resource value: 0x7f090180
+ public const int Base_Theme_MaterialComponents_Light_Dialog = 2131296640;
- // aapt resource value: 0x7f080181
- public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131231105;
+ // aapt resource value: 0x7f090181
+ public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131296641;
- // aapt resource value: 0x7f080182
- public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131231106;
+ // aapt resource value: 0x7f090182
+ public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131296642;
- // aapt resource value: 0x7f080183
- public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131231107;
+ // aapt resource value: 0x7f090183
+ public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131296643;
- // aapt resource value: 0x7f08016f
- public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131231087;
+ // aapt resource value: 0x7f09016f
+ public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131296623;
- // aapt resource value: 0x7f0800b9
- public const int Base_ThemeOverlay_AppCompat = 2131230905;
+ // aapt resource value: 0x7f0900b9
+ public const int Base_ThemeOverlay_AppCompat = 2131296441;
- // aapt resource value: 0x7f0800ba
- public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131230906;
+ // aapt resource value: 0x7f0900ba
+ public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131296442;
- // aapt resource value: 0x7f0800bb
- public const int Base_ThemeOverlay_AppCompat_Dark = 2131230907;
+ // aapt resource value: 0x7f0900bb
+ public const int Base_ThemeOverlay_AppCompat_Dark = 2131296443;
- // aapt resource value: 0x7f0800bc
- public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131230908;
+ // aapt resource value: 0x7f0900bc
+ public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131296444;
- // aapt resource value: 0x7f08005d
- public const int Base_ThemeOverlay_AppCompat_Dialog = 2131230813;
+ // aapt resource value: 0x7f09005d
+ public const int Base_ThemeOverlay_AppCompat_Dialog = 2131296349;
- // aapt resource value: 0x7f0800bd
- public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131230909;
+ // aapt resource value: 0x7f0900bd
+ public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131296445;
- // aapt resource value: 0x7f0800be
- public const int Base_ThemeOverlay_AppCompat_Light = 2131230910;
+ // aapt resource value: 0x7f0900be
+ public const int Base_ThemeOverlay_AppCompat_Light = 2131296446;
- // aapt resource value: 0x7f080184
- public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131231108;
+ // aapt resource value: 0x7f090184
+ public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131296644;
- // aapt resource value: 0x7f080185
- public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131231109;
+ // aapt resource value: 0x7f090185
+ public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131296645;
- // aapt resource value: 0x7f080186
- public const int Base_V14_Theme_MaterialComponents = 2131231110;
+ // aapt resource value: 0x7f090186
+ public const int Base_V14_Theme_MaterialComponents = 2131296646;
- // aapt resource value: 0x7f080187
- public const int Base_V14_Theme_MaterialComponents_Bridge = 2131231111;
+ // aapt resource value: 0x7f090187
+ public const int Base_V14_Theme_MaterialComponents_Bridge = 2131296647;
- // aapt resource value: 0x7f080188
- public const int Base_V14_Theme_MaterialComponents_Dialog = 2131231112;
+ // aapt resource value: 0x7f090188
+ public const int Base_V14_Theme_MaterialComponents_Dialog = 2131296648;
- // aapt resource value: 0x7f080189
- public const int Base_V14_Theme_MaterialComponents_Light = 2131231113;
+ // aapt resource value: 0x7f090189
+ public const int Base_V14_Theme_MaterialComponents_Light = 2131296649;
- // aapt resource value: 0x7f08018a
- public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131231114;
+ // aapt resource value: 0x7f09018a
+ public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131296650;
- // aapt resource value: 0x7f08018b
- public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131231115;
+ // aapt resource value: 0x7f09018b
+ public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131296651;
- // aapt resource value: 0x7f08018c
- public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131231116;
+ // aapt resource value: 0x7f09018c
+ public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131296652;
- // aapt resource value: 0x7f08018d
- public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131231117;
+ // aapt resource value: 0x7f09018d
+ public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131296653;
- // aapt resource value: 0x7f08018e
- public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131231118;
+ // aapt resource value: 0x7f09018e
+ public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131296654;
- // aapt resource value: 0x7f08005e
- public const int Base_V21_Theme_AppCompat = 2131230814;
+ // aapt resource value: 0x7f09005e
+ public const int Base_V21_Theme_AppCompat = 2131296350;
- // aapt resource value: 0x7f08005f
- public const int Base_V21_Theme_AppCompat_Dialog = 2131230815;
+ // aapt resource value: 0x7f09005f
+ public const int Base_V21_Theme_AppCompat_Dialog = 2131296351;
- // aapt resource value: 0x7f080060
- public const int Base_V21_Theme_AppCompat_Light = 2131230816;
+ // aapt resource value: 0x7f090060
+ public const int Base_V21_Theme_AppCompat_Light = 2131296352;
- // aapt resource value: 0x7f080061
- public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131230817;
+ // aapt resource value: 0x7f090061
+ public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131296353;
- // aapt resource value: 0x7f080062
- public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131230818;
+ // aapt resource value: 0x7f090062
+ public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131296354;
- // aapt resource value: 0x7f08008c
- public const int Base_V22_Theme_AppCompat = 2131230860;
+ // aapt resource value: 0x7f09008c
+ public const int Base_V22_Theme_AppCompat = 2131296396;
- // aapt resource value: 0x7f08008d
- public const int Base_V22_Theme_AppCompat_Light = 2131230861;
+ // aapt resource value: 0x7f09008d
+ public const int Base_V22_Theme_AppCompat_Light = 2131296397;
- // aapt resource value: 0x7f080090
- public const int Base_V23_Theme_AppCompat = 2131230864;
+ // aapt resource value: 0x7f090090
+ public const int Base_V23_Theme_AppCompat = 2131296400;
- // aapt resource value: 0x7f080091
- public const int Base_V23_Theme_AppCompat_Light = 2131230865;
+ // aapt resource value: 0x7f090091
+ public const int Base_V23_Theme_AppCompat_Light = 2131296401;
- // aapt resource value: 0x7f080099
- public const int Base_V26_Theme_AppCompat = 2131230873;
+ // aapt resource value: 0x7f090099
+ public const int Base_V26_Theme_AppCompat = 2131296409;
- // aapt resource value: 0x7f08009a
- public const int Base_V26_Theme_AppCompat_Light = 2131230874;
+ // aapt resource value: 0x7f09009a
+ public const int Base_V26_Theme_AppCompat_Light = 2131296410;
- // aapt resource value: 0x7f08009b
- public const int Base_V26_Widget_AppCompat_Toolbar = 2131230875;
+ // aapt resource value: 0x7f09009b
+ public const int Base_V26_Widget_AppCompat_Toolbar = 2131296411;
- // aapt resource value: 0x7f08009d
- public const int Base_V28_Theme_AppCompat = 2131230877;
+ // aapt resource value: 0x7f09009d
+ public const int Base_V28_Theme_AppCompat = 2131296413;
- // aapt resource value: 0x7f08009e
- public const int Base_V28_Theme_AppCompat_Light = 2131230878;
+ // aapt resource value: 0x7f09009e
+ public const int Base_V28_Theme_AppCompat_Light = 2131296414;
- // aapt resource value: 0x7f0800bf
- public const int Base_V7_Theme_AppCompat = 2131230911;
+ // aapt resource value: 0x7f0900bf
+ public const int Base_V7_Theme_AppCompat = 2131296447;
- // aapt resource value: 0x7f0800c0
- public const int Base_V7_Theme_AppCompat_Dialog = 2131230912;
+ // aapt resource value: 0x7f0900c0
+ public const int Base_V7_Theme_AppCompat_Dialog = 2131296448;
- // aapt resource value: 0x7f0800c1
- public const int Base_V7_Theme_AppCompat_Light = 2131230913;
+ // aapt resource value: 0x7f0900c1
+ public const int Base_V7_Theme_AppCompat_Light = 2131296449;
- // aapt resource value: 0x7f0800c2
- public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131230914;
+ // aapt resource value: 0x7f0900c2
+ public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131296450;
- // aapt resource value: 0x7f0800c3
- public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131230915;
+ // aapt resource value: 0x7f0900c3
+ public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131296451;
- // aapt resource value: 0x7f0800c4
- public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131230916;
+ // aapt resource value: 0x7f0900c4
+ public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131296452;
- // aapt resource value: 0x7f0800c5
- public const int Base_V7_Widget_AppCompat_EditText = 2131230917;
+ // aapt resource value: 0x7f0900c5
+ public const int Base_V7_Widget_AppCompat_EditText = 2131296453;
- // aapt resource value: 0x7f0800c6
- public const int Base_V7_Widget_AppCompat_Toolbar = 2131230918;
+ // aapt resource value: 0x7f0900c6
+ public const int Base_V7_Widget_AppCompat_Toolbar = 2131296454;
- // aapt resource value: 0x7f0800c7
- public const int Base_Widget_AppCompat_ActionBar = 2131230919;
+ // aapt resource value: 0x7f0900c7
+ public const int Base_Widget_AppCompat_ActionBar = 2131296455;
- // aapt resource value: 0x7f0800c8
- public const int Base_Widget_AppCompat_ActionBar_Solid = 2131230920;
+ // aapt resource value: 0x7f0900c8
+ public const int Base_Widget_AppCompat_ActionBar_Solid = 2131296456;
- // aapt resource value: 0x7f0800c9
- public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131230921;
+ // aapt resource value: 0x7f0900c9
+ public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131296457;
- // aapt resource value: 0x7f080063
- public const int Base_Widget_AppCompat_ActionBar_TabText = 2131230819;
+ // aapt resource value: 0x7f090063
+ public const int Base_Widget_AppCompat_ActionBar_TabText = 2131296355;
- // aapt resource value: 0x7f080064
- public const int Base_Widget_AppCompat_ActionBar_TabView = 2131230820;
+ // aapt resource value: 0x7f090064
+ public const int Base_Widget_AppCompat_ActionBar_TabView = 2131296356;
- // aapt resource value: 0x7f080065
- public const int Base_Widget_AppCompat_ActionButton = 2131230821;
+ // aapt resource value: 0x7f090065
+ public const int Base_Widget_AppCompat_ActionButton = 2131296357;
- // aapt resource value: 0x7f080066
- public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131230822;
+ // aapt resource value: 0x7f090066
+ public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131296358;
- // aapt resource value: 0x7f080067
- public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131230823;
+ // aapt resource value: 0x7f090067
+ public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131296359;
- // aapt resource value: 0x7f0800ca
- public const int Base_Widget_AppCompat_ActionMode = 2131230922;
+ // aapt resource value: 0x7f0900ca
+ public const int Base_Widget_AppCompat_ActionMode = 2131296458;
- // aapt resource value: 0x7f0800cb
- public const int Base_Widget_AppCompat_ActivityChooserView = 2131230923;
+ // aapt resource value: 0x7f0900cb
+ public const int Base_Widget_AppCompat_ActivityChooserView = 2131296459;
- // aapt resource value: 0x7f080068
- public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131230824;
+ // aapt resource value: 0x7f090068
+ public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131296360;
- // aapt resource value: 0x7f080069
- public const int Base_Widget_AppCompat_Button = 2131230825;
+ // aapt resource value: 0x7f090069
+ public const int Base_Widget_AppCompat_Button = 2131296361;
- // aapt resource value: 0x7f08006a
- public const int Base_Widget_AppCompat_Button_Borderless = 2131230826;
+ // aapt resource value: 0x7f09006a
+ public const int Base_Widget_AppCompat_Button_Borderless = 2131296362;
- // aapt resource value: 0x7f08006b
- public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131230827;
+ // aapt resource value: 0x7f09006b
+ public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131296363;
- // aapt resource value: 0x7f0800cc
- public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131230924;
+ // aapt resource value: 0x7f0900cc
+ public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131296460;
- // aapt resource value: 0x7f080092
- public const int Base_Widget_AppCompat_Button_Colored = 2131230866;
+ // aapt resource value: 0x7f090092
+ public const int Base_Widget_AppCompat_Button_Colored = 2131296402;
- // aapt resource value: 0x7f08006c
- public const int Base_Widget_AppCompat_Button_Small = 2131230828;
+ // aapt resource value: 0x7f09006c
+ public const int Base_Widget_AppCompat_Button_Small = 2131296364;
- // aapt resource value: 0x7f08006d
- public const int Base_Widget_AppCompat_ButtonBar = 2131230829;
+ // aapt resource value: 0x7f09006d
+ public const int Base_Widget_AppCompat_ButtonBar = 2131296365;
- // aapt resource value: 0x7f0800cd
- public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131230925;
+ // aapt resource value: 0x7f0900cd
+ public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131296461;
- // aapt resource value: 0x7f08006e
- public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131230830;
+ // aapt resource value: 0x7f09006e
+ public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131296366;
- // aapt resource value: 0x7f08006f
- public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131230831;
+ // aapt resource value: 0x7f09006f
+ public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131296367;
- // aapt resource value: 0x7f0800ce
- public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131230926;
+ // aapt resource value: 0x7f0900ce
+ public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131296462;
- // aapt resource value: 0x7f080016
- public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131230742;
+ // aapt resource value: 0x7f090016
+ public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131296278;
- // aapt resource value: 0x7f0800cf
- public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131230927;
+ // aapt resource value: 0x7f0900cf
+ public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131296463;
- // aapt resource value: 0x7f080070
- public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131230832;
+ // aapt resource value: 0x7f090070
+ public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131296368;
- // aapt resource value: 0x7f080071
- public const int Base_Widget_AppCompat_EditText = 2131230833;
+ // aapt resource value: 0x7f090071
+ public const int Base_Widget_AppCompat_EditText = 2131296369;
- // aapt resource value: 0x7f080072
- public const int Base_Widget_AppCompat_ImageButton = 2131230834;
+ // aapt resource value: 0x7f090072
+ public const int Base_Widget_AppCompat_ImageButton = 2131296370;
- // aapt resource value: 0x7f0800d0
- public const int Base_Widget_AppCompat_Light_ActionBar = 2131230928;
+ // aapt resource value: 0x7f0900d0
+ public const int Base_Widget_AppCompat_Light_ActionBar = 2131296464;
- // aapt resource value: 0x7f0800d1
- public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131230929;
+ // aapt resource value: 0x7f0900d1
+ public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131296465;
- // aapt resource value: 0x7f0800d2
- public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131230930;
+ // aapt resource value: 0x7f0900d2
+ public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131296466;
- // aapt resource value: 0x7f080073
- public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131230835;
+ // aapt resource value: 0x7f090073
+ public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131296371;
- // aapt resource value: 0x7f080074
- public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131230836;
+ // aapt resource value: 0x7f090074
+ public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131296372;
- // aapt resource value: 0x7f080075
- public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131230837;
+ // aapt resource value: 0x7f090075
+ public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131296373;
- // aapt resource value: 0x7f080076
- public const int Base_Widget_AppCompat_Light_PopupMenu = 2131230838;
+ // aapt resource value: 0x7f090076
+ public const int Base_Widget_AppCompat_Light_PopupMenu = 2131296374;
- // aapt resource value: 0x7f080077
- public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131230839;
+ // aapt resource value: 0x7f090077
+ public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131296375;
- // aapt resource value: 0x7f0800d3
- public const int Base_Widget_AppCompat_ListMenuView = 2131230931;
+ // aapt resource value: 0x7f0900d3
+ public const int Base_Widget_AppCompat_ListMenuView = 2131296467;
- // aapt resource value: 0x7f080078
- public const int Base_Widget_AppCompat_ListPopupWindow = 2131230840;
+ // aapt resource value: 0x7f090078
+ public const int Base_Widget_AppCompat_ListPopupWindow = 2131296376;
- // aapt resource value: 0x7f080079
- public const int Base_Widget_AppCompat_ListView = 2131230841;
+ // aapt resource value: 0x7f090079
+ public const int Base_Widget_AppCompat_ListView = 2131296377;
- // aapt resource value: 0x7f08007a
- public const int Base_Widget_AppCompat_ListView_DropDown = 2131230842;
+ // aapt resource value: 0x7f09007a
+ public const int Base_Widget_AppCompat_ListView_DropDown = 2131296378;
- // aapt resource value: 0x7f08007b
- public const int Base_Widget_AppCompat_ListView_Menu = 2131230843;
+ // aapt resource value: 0x7f09007b
+ public const int Base_Widget_AppCompat_ListView_Menu = 2131296379;
- // aapt resource value: 0x7f08007c
- public const int Base_Widget_AppCompat_PopupMenu = 2131230844;
+ // aapt resource value: 0x7f09007c
+ public const int Base_Widget_AppCompat_PopupMenu = 2131296380;
- // aapt resource value: 0x7f08007d
- public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131230845;
+ // aapt resource value: 0x7f09007d
+ public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131296381;
- // aapt resource value: 0x7f0800d4
- public const int Base_Widget_AppCompat_PopupWindow = 2131230932;
+ // aapt resource value: 0x7f0900d4
+ public const int Base_Widget_AppCompat_PopupWindow = 2131296468;
- // aapt resource value: 0x7f08007e
- public const int Base_Widget_AppCompat_ProgressBar = 2131230846;
+ // aapt resource value: 0x7f09007e
+ public const int Base_Widget_AppCompat_ProgressBar = 2131296382;
- // aapt resource value: 0x7f08007f
- public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131230847;
+ // aapt resource value: 0x7f09007f
+ public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131296383;
- // aapt resource value: 0x7f080080
- public const int Base_Widget_AppCompat_RatingBar = 2131230848;
+ // aapt resource value: 0x7f090080
+ public const int Base_Widget_AppCompat_RatingBar = 2131296384;
- // aapt resource value: 0x7f080093
- public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131230867;
+ // aapt resource value: 0x7f090093
+ public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131296403;
- // aapt resource value: 0x7f080094
- public const int Base_Widget_AppCompat_RatingBar_Small = 2131230868;
+ // aapt resource value: 0x7f090094
+ public const int Base_Widget_AppCompat_RatingBar_Small = 2131296404;
- // aapt resource value: 0x7f0800d5
- public const int Base_Widget_AppCompat_SearchView = 2131230933;
+ // aapt resource value: 0x7f0900d5
+ public const int Base_Widget_AppCompat_SearchView = 2131296469;
- // aapt resource value: 0x7f0800d6
- public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131230934;
+ // aapt resource value: 0x7f0900d6
+ public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131296470;
- // aapt resource value: 0x7f080081
- public const int Base_Widget_AppCompat_SeekBar = 2131230849;
+ // aapt resource value: 0x7f090081
+ public const int Base_Widget_AppCompat_SeekBar = 2131296385;
- // aapt resource value: 0x7f0800d7
- public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131230935;
+ // aapt resource value: 0x7f0900d7
+ public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131296471;
- // aapt resource value: 0x7f080082
- public const int Base_Widget_AppCompat_Spinner = 2131230850;
+ // aapt resource value: 0x7f090082
+ public const int Base_Widget_AppCompat_Spinner = 2131296386;
- // aapt resource value: 0x7f080019
- public const int Base_Widget_AppCompat_Spinner_Underlined = 2131230745;
+ // aapt resource value: 0x7f090019
+ public const int Base_Widget_AppCompat_Spinner_Underlined = 2131296281;
- // aapt resource value: 0x7f080083
- public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131230851;
+ // aapt resource value: 0x7f090083
+ public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131296387;
- // aapt resource value: 0x7f08009c
- public const int Base_Widget_AppCompat_Toolbar = 2131230876;
+ // aapt resource value: 0x7f09009c
+ public const int Base_Widget_AppCompat_Toolbar = 2131296412;
- // aapt resource value: 0x7f080084
- public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131230852;
+ // aapt resource value: 0x7f090084
+ public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131296388;
- // aapt resource value: 0x7f08018f
- public const int Base_Widget_Design_TabLayout = 2131231119;
+ // aapt resource value: 0x7f09018f
+ public const int Base_Widget_Design_TabLayout = 2131296655;
- // aapt resource value: 0x7f080190
- public const int Base_Widget_MaterialComponents_Chip = 2131231120;
+ // aapt resource value: 0x7f090190
+ public const int Base_Widget_MaterialComponents_Chip = 2131296656;
- // aapt resource value: 0x7f080191
- public const int Base_Widget_MaterialComponents_TextInputEditText = 2131231121;
+ // aapt resource value: 0x7f090191
+ public const int Base_Widget_MaterialComponents_TextInputEditText = 2131296657;
- // aapt resource value: 0x7f080192
- public const int Base_Widget_MaterialComponents_TextInputLayout = 2131231122;
+ // aapt resource value: 0x7f090192
+ public const int Base_Widget_MaterialComponents_TextInputLayout = 2131296658;
- // aapt resource value: 0x7f080012
- public const int CardView = 2131230738;
+ // aapt resource value: 0x7f090012
+ public const int CardView = 2131296274;
- // aapt resource value: 0x7f080014
- public const int CardView_Dark = 2131230740;
+ // aapt resource value: 0x7f090014
+ public const int CardView_Dark = 2131296276;
- // aapt resource value: 0x7f080015
- public const int CardView_Light = 2131230741;
+ // aapt resource value: 0x7f090015
+ public const int CardView_Light = 2131296277;
- // aapt resource value: 0x7f080208
- public const int DrawerArrowStyle = 2131231240;
+ // aapt resource value: 0x7f090208
+ public const int DrawerArrowStyle = 2131296776;
- // aapt resource value: 0x7f080206
- public const int MainTheme = 2131231238;
+ // aapt resource value: 0x7f090206
+ public const int MainTheme = 2131296774;
- // aapt resource value: 0x7f080207
- public const int MainTheme_Base = 2131231239;
+ // aapt resource value: 0x7f090207
+ public const int MainTheme_Base = 2131296775;
- // aapt resource value: 0x7f08020a
- public const int MyTheme_Splash = 2131231242;
+ // aapt resource value: 0x7f09020a
+ public const int MyTheme_Splash = 2131296778;
- // aapt resource value: 0x7f080085
- public const int Platform_AppCompat = 2131230853;
+ // aapt resource value: 0x7f090085
+ public const int Platform_AppCompat = 2131296389;
- // aapt resource value: 0x7f080086
- public const int Platform_AppCompat_Light = 2131230854;
+ // aapt resource value: 0x7f090086
+ public const int Platform_AppCompat_Light = 2131296390;
- // aapt resource value: 0x7f080193
- public const int Platform_MaterialComponents = 2131231123;
+ // aapt resource value: 0x7f090193
+ public const int Platform_MaterialComponents = 2131296659;
- // aapt resource value: 0x7f080194
- public const int Platform_MaterialComponents_Dialog = 2131231124;
+ // aapt resource value: 0x7f090194
+ public const int Platform_MaterialComponents_Dialog = 2131296660;
- // aapt resource value: 0x7f080195
- public const int Platform_MaterialComponents_Light = 2131231125;
+ // aapt resource value: 0x7f090195
+ public const int Platform_MaterialComponents_Light = 2131296661;
- // aapt resource value: 0x7f080196
- public const int Platform_MaterialComponents_Light_Dialog = 2131231126;
+ // aapt resource value: 0x7f090196
+ public const int Platform_MaterialComponents_Light_Dialog = 2131296662;
- // aapt resource value: 0x7f080087
- public const int Platform_ThemeOverlay_AppCompat = 2131230855;
+ // aapt resource value: 0x7f090087
+ public const int Platform_ThemeOverlay_AppCompat = 2131296391;
- // aapt resource value: 0x7f080088
- public const int Platform_ThemeOverlay_AppCompat_Dark = 2131230856;
+ // aapt resource value: 0x7f090088
+ public const int Platform_ThemeOverlay_AppCompat_Dark = 2131296392;
- // aapt resource value: 0x7f080089
- public const int Platform_ThemeOverlay_AppCompat_Light = 2131230857;
+ // aapt resource value: 0x7f090089
+ public const int Platform_ThemeOverlay_AppCompat_Light = 2131296393;
- // aapt resource value: 0x7f08008a
- public const int Platform_V21_AppCompat = 2131230858;
+ // aapt resource value: 0x7f09008a
+ public const int Platform_V21_AppCompat = 2131296394;
- // aapt resource value: 0x7f08008b
- public const int Platform_V21_AppCompat_Light = 2131230859;
+ // aapt resource value: 0x7f09008b
+ public const int Platform_V21_AppCompat_Light = 2131296395;
- // aapt resource value: 0x7f080097
- public const int Platform_V25_AppCompat = 2131230871;
+ // aapt resource value: 0x7f090097
+ public const int Platform_V25_AppCompat = 2131296407;
- // aapt resource value: 0x7f080098
- public const int Platform_V25_AppCompat_Light = 2131230872;
+ // aapt resource value: 0x7f090098
+ public const int Platform_V25_AppCompat_Light = 2131296408;
- // aapt resource value: 0x7f0800d8
- public const int Platform_Widget_AppCompat_Spinner = 2131230936;
+ // aapt resource value: 0x7f0900d8
+ public const int Platform_Widget_AppCompat_Spinner = 2131296472;
- // aapt resource value: 0x7f080022
- public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131230754;
+ // aapt resource value: 0x7f090022
+ public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131296290;
- // aapt resource value: 0x7f080023
- public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131230755;
+ // aapt resource value: 0x7f090023
+ public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131296291;
- // aapt resource value: 0x7f080024
- public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131230756;
+ // aapt resource value: 0x7f090024
+ public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131296292;
- // aapt resource value: 0x7f080025
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131230757;
+ // aapt resource value: 0x7f090025
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131296293;
- // aapt resource value: 0x7f080026
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131230758;
+ // aapt resource value: 0x7f090026
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131296294;
- // aapt resource value: 0x7f080027
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131230759;
+ // aapt resource value: 0x7f090027
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131296295;
- // aapt resource value: 0x7f080028
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131230760;
+ // aapt resource value: 0x7f090028
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131296296;
- // aapt resource value: 0x7f080029
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131230761;
+ // aapt resource value: 0x7f090029
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131296297;
- // aapt resource value: 0x7f08002a
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131230762;
+ // aapt resource value: 0x7f09002a
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131296298;
- // aapt resource value: 0x7f08002b
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131230763;
+ // aapt resource value: 0x7f09002b
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131296299;
- // aapt resource value: 0x7f08002c
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131230764;
+ // aapt resource value: 0x7f09002c
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131296300;
- // aapt resource value: 0x7f08002d
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131230765;
+ // aapt resource value: 0x7f09002d
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131296301;
- // aapt resource value: 0x7f08002e
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131230766;
+ // aapt resource value: 0x7f09002e
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131296302;
- // aapt resource value: 0x7f08002f
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131230767;
+ // aapt resource value: 0x7f09002f
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131296303;
- // aapt resource value: 0x7f080030
- public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131230768;
+ // aapt resource value: 0x7f090030
+ public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131296304;
- // aapt resource value: 0x7f080031
- public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131230769;
+ // aapt resource value: 0x7f090031
+ public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131296305;
- // aapt resource value: 0x7f080032
- public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131230770;
+ // aapt resource value: 0x7f090032
+ public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131296306;
- // aapt resource value: 0x7f0800d9
- public const int TextAppearance_AppCompat = 2131230937;
+ // aapt resource value: 0x7f09020c
+ public const int TabBar_TitleText = 2131296780;
- // aapt resource value: 0x7f0800da
- public const int TextAppearance_AppCompat_Body1 = 2131230938;
+ // aapt resource value: 0x7f0900d9
+ public const int TextAppearance_AppCompat = 2131296473;
- // aapt resource value: 0x7f0800db
- public const int TextAppearance_AppCompat_Body2 = 2131230939;
+ // aapt resource value: 0x7f0900da
+ public const int TextAppearance_AppCompat_Body1 = 2131296474;
- // aapt resource value: 0x7f0800dc
- public const int TextAppearance_AppCompat_Button = 2131230940;
+ // aapt resource value: 0x7f0900db
+ public const int TextAppearance_AppCompat_Body2 = 2131296475;
- // aapt resource value: 0x7f0800dd
- public const int TextAppearance_AppCompat_Caption = 2131230941;
+ // aapt resource value: 0x7f0900dc
+ public const int TextAppearance_AppCompat_Button = 2131296476;
- // aapt resource value: 0x7f0800de
- public const int TextAppearance_AppCompat_Display1 = 2131230942;
+ // aapt resource value: 0x7f0900dd
+ public const int TextAppearance_AppCompat_Caption = 2131296477;
- // aapt resource value: 0x7f0800df
- public const int TextAppearance_AppCompat_Display2 = 2131230943;
+ // aapt resource value: 0x7f0900de
+ public const int TextAppearance_AppCompat_Display1 = 2131296478;
- // aapt resource value: 0x7f0800e0
- public const int TextAppearance_AppCompat_Display3 = 2131230944;
+ // aapt resource value: 0x7f0900df
+ public const int TextAppearance_AppCompat_Display2 = 2131296479;
- // aapt resource value: 0x7f0800e1
- public const int TextAppearance_AppCompat_Display4 = 2131230945;
+ // aapt resource value: 0x7f0900e0
+ public const int TextAppearance_AppCompat_Display3 = 2131296480;
- // aapt resource value: 0x7f0800e2
- public const int TextAppearance_AppCompat_Headline = 2131230946;
+ // aapt resource value: 0x7f0900e1
+ public const int TextAppearance_AppCompat_Display4 = 2131296481;
- // aapt resource value: 0x7f0800e3
- public const int TextAppearance_AppCompat_Inverse = 2131230947;
+ // aapt resource value: 0x7f0900e2
+ public const int TextAppearance_AppCompat_Headline = 2131296482;
- // aapt resource value: 0x7f0800e4
- public const int TextAppearance_AppCompat_Large = 2131230948;
+ // aapt resource value: 0x7f0900e3
+ public const int TextAppearance_AppCompat_Inverse = 2131296483;
- // aapt resource value: 0x7f0800e5
- public const int TextAppearance_AppCompat_Large_Inverse = 2131230949;
+ // aapt resource value: 0x7f0900e4
+ public const int TextAppearance_AppCompat_Large = 2131296484;
- // aapt resource value: 0x7f0800e6
- public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131230950;
+ // aapt resource value: 0x7f0900e5
+ public const int TextAppearance_AppCompat_Large_Inverse = 2131296485;
- // aapt resource value: 0x7f0800e7
- public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131230951;
+ // aapt resource value: 0x7f0900e6
+ public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131296486;
- // aapt resource value: 0x7f0800e8
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131230952;
+ // aapt resource value: 0x7f0900e7
+ public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131296487;
- // aapt resource value: 0x7f0800e9
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131230953;
+ // aapt resource value: 0x7f0900e8
+ public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131296488;
- // aapt resource value: 0x7f0800ea
- public const int TextAppearance_AppCompat_Medium = 2131230954;
+ // aapt resource value: 0x7f0900e9
+ public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131296489;
- // aapt resource value: 0x7f0800eb
- public const int TextAppearance_AppCompat_Medium_Inverse = 2131230955;
+ // aapt resource value: 0x7f0900ea
+ public const int TextAppearance_AppCompat_Medium = 2131296490;
- // aapt resource value: 0x7f0800ec
- public const int TextAppearance_AppCompat_Menu = 2131230956;
+ // aapt resource value: 0x7f0900eb
+ public const int TextAppearance_AppCompat_Medium_Inverse = 2131296491;
- // aapt resource value: 0x7f0800ed
- public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131230957;
+ // aapt resource value: 0x7f0900ec
+ public const int TextAppearance_AppCompat_Menu = 2131296492;
- // aapt resource value: 0x7f0800ee
- public const int TextAppearance_AppCompat_SearchResult_Title = 2131230958;
+ // aapt resource value: 0x7f0900ed
+ public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131296493;
- // aapt resource value: 0x7f0800ef
- public const int TextAppearance_AppCompat_Small = 2131230959;
+ // aapt resource value: 0x7f0900ee
+ public const int TextAppearance_AppCompat_SearchResult_Title = 2131296494;
- // aapt resource value: 0x7f0800f0
- public const int TextAppearance_AppCompat_Small_Inverse = 2131230960;
+ // aapt resource value: 0x7f0900ef
+ public const int TextAppearance_AppCompat_Small = 2131296495;
- // aapt resource value: 0x7f0800f1
- public const int TextAppearance_AppCompat_Subhead = 2131230961;
+ // aapt resource value: 0x7f0900f0
+ public const int TextAppearance_AppCompat_Small_Inverse = 2131296496;
- // aapt resource value: 0x7f0800f2
- public const int TextAppearance_AppCompat_Subhead_Inverse = 2131230962;
+ // aapt resource value: 0x7f0900f1
+ public const int TextAppearance_AppCompat_Subhead = 2131296497;
- // aapt resource value: 0x7f0800f3
- public const int TextAppearance_AppCompat_Title = 2131230963;
+ // aapt resource value: 0x7f0900f2
+ public const int TextAppearance_AppCompat_Subhead_Inverse = 2131296498;
- // aapt resource value: 0x7f0800f4
- public const int TextAppearance_AppCompat_Title_Inverse = 2131230964;
+ // aapt resource value: 0x7f0900f3
+ public const int TextAppearance_AppCompat_Title = 2131296499;
- // aapt resource value: 0x7f080021
- public const int TextAppearance_AppCompat_Tooltip = 2131230753;
+ // aapt resource value: 0x7f0900f4
+ public const int TextAppearance_AppCompat_Title_Inverse = 2131296500;
- // aapt resource value: 0x7f0800f5
- public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131230965;
+ // aapt resource value: 0x7f090021
+ public const int TextAppearance_AppCompat_Tooltip = 2131296289;
- // aapt resource value: 0x7f0800f6
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131230966;
+ // aapt resource value: 0x7f0900f5
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131296501;
- // aapt resource value: 0x7f0800f7
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131230967;
+ // aapt resource value: 0x7f0900f6
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131296502;
- // aapt resource value: 0x7f0800f8
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131230968;
+ // aapt resource value: 0x7f0900f7
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131296503;
- // aapt resource value: 0x7f0800f9
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131230969;
+ // aapt resource value: 0x7f0900f8
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131296504;
- // aapt resource value: 0x7f0800fa
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131230970;
+ // aapt resource value: 0x7f0900f9
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131296505;
- // aapt resource value: 0x7f0800fb
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131230971;
+ // aapt resource value: 0x7f0900fa
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131296506;
- // aapt resource value: 0x7f0800fc
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131230972;
+ // aapt resource value: 0x7f0900fb
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131296507;
- // aapt resource value: 0x7f0800fd
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131230973;
+ // aapt resource value: 0x7f0900fc
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131296508;
- // aapt resource value: 0x7f0800fe
- public const int TextAppearance_AppCompat_Widget_Button = 2131230974;
+ // aapt resource value: 0x7f0900fd
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131296509;
- // aapt resource value: 0x7f0800ff
- public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131230975;
+ // aapt resource value: 0x7f0900fe
+ public const int TextAppearance_AppCompat_Widget_Button = 2131296510;
- // aapt resource value: 0x7f080100
- public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131230976;
+ // aapt resource value: 0x7f0900ff
+ public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131296511;
- // aapt resource value: 0x7f080101
- public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131230977;
+ // aapt resource value: 0x7f090100
+ public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131296512;
- // aapt resource value: 0x7f080102
- public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131230978;
+ // aapt resource value: 0x7f090101
+ public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131296513;
- // aapt resource value: 0x7f080103
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131230979;
+ // aapt resource value: 0x7f090102
+ public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131296514;
- // aapt resource value: 0x7f080104
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131230980;
+ // aapt resource value: 0x7f090103
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131296515;
- // aapt resource value: 0x7f080105
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131230981;
+ // aapt resource value: 0x7f090104
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131296516;
- // aapt resource value: 0x7f080106
- public const int TextAppearance_AppCompat_Widget_Switch = 2131230982;
+ // aapt resource value: 0x7f090105
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131296517;
- // aapt resource value: 0x7f080107
- public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131230983;
+ // aapt resource value: 0x7f090106
+ public const int TextAppearance_AppCompat_Widget_Switch = 2131296518;
- // aapt resource value: 0x7f0801ff
- public const int TextAppearance_Compat_Notification = 2131231231;
+ // aapt resource value: 0x7f090107
+ public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131296519;
- // aapt resource value: 0x7f080200
- public const int TextAppearance_Compat_Notification_Info = 2131231232;
+ // aapt resource value: 0x7f0901ff
+ public const int TextAppearance_Compat_Notification = 2131296767;
- // aapt resource value: 0x7f080168
- public const int TextAppearance_Compat_Notification_Info_Media = 2131231080;
+ // aapt resource value: 0x7f090200
+ public const int TextAppearance_Compat_Notification_Info = 2131296768;
- // aapt resource value: 0x7f080205
- public const int TextAppearance_Compat_Notification_Line2 = 2131231237;
+ // aapt resource value: 0x7f090168
+ public const int TextAppearance_Compat_Notification_Info_Media = 2131296616;
- // aapt resource value: 0x7f08016c
- public const int TextAppearance_Compat_Notification_Line2_Media = 2131231084;
+ // aapt resource value: 0x7f090205
+ public const int TextAppearance_Compat_Notification_Line2 = 2131296773;
- // aapt resource value: 0x7f080169
- public const int TextAppearance_Compat_Notification_Media = 2131231081;
+ // aapt resource value: 0x7f09016c
+ public const int TextAppearance_Compat_Notification_Line2_Media = 2131296620;
- // aapt resource value: 0x7f080201
- public const int TextAppearance_Compat_Notification_Time = 2131231233;
+ // aapt resource value: 0x7f090169
+ public const int TextAppearance_Compat_Notification_Media = 2131296617;
- // aapt resource value: 0x7f08016a
- public const int TextAppearance_Compat_Notification_Time_Media = 2131231082;
+ // aapt resource value: 0x7f090201
+ public const int TextAppearance_Compat_Notification_Time = 2131296769;
- // aapt resource value: 0x7f080202
- public const int TextAppearance_Compat_Notification_Title = 2131231234;
+ // aapt resource value: 0x7f09016a
+ public const int TextAppearance_Compat_Notification_Time_Media = 2131296618;
- // aapt resource value: 0x7f08016b
- public const int TextAppearance_Compat_Notification_Title_Media = 2131231083;
+ // aapt resource value: 0x7f090202
+ public const int TextAppearance_Compat_Notification_Title = 2131296770;
- // aapt resource value: 0x7f080197
- public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131231127;
+ // aapt resource value: 0x7f09016b
+ public const int TextAppearance_Compat_Notification_Title_Media = 2131296619;
- // aapt resource value: 0x7f080198
- public const int TextAppearance_Design_Counter = 2131231128;
+ // aapt resource value: 0x7f090197
+ public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131296663;
- // aapt resource value: 0x7f080199
- public const int TextAppearance_Design_Counter_Overflow = 2131231129;
+ // aapt resource value: 0x7f090198
+ public const int TextAppearance_Design_Counter = 2131296664;
- // aapt resource value: 0x7f08019a
- public const int TextAppearance_Design_Error = 2131231130;
+ // aapt resource value: 0x7f090199
+ public const int TextAppearance_Design_Counter_Overflow = 2131296665;
- // aapt resource value: 0x7f08019b
- public const int TextAppearance_Design_HelperText = 2131231131;
+ // aapt resource value: 0x7f09019a
+ public const int TextAppearance_Design_Error = 2131296666;
- // aapt resource value: 0x7f08019c
- public const int TextAppearance_Design_Hint = 2131231132;
+ // aapt resource value: 0x7f09019b
+ public const int TextAppearance_Design_HelperText = 2131296667;
- // aapt resource value: 0x7f08019d
- public const int TextAppearance_Design_Snackbar_Message = 2131231133;
+ // aapt resource value: 0x7f09019c
+ public const int TextAppearance_Design_Hint = 2131296668;
- // aapt resource value: 0x7f08019e
- public const int TextAppearance_Design_Tab = 2131231134;
+ // aapt resource value: 0x7f09019d
+ public const int TextAppearance_Design_Snackbar_Message = 2131296669;
- // aapt resource value: 0x7f08019f
- public const int TextAppearance_MaterialComponents_Body1 = 2131231135;
+ // aapt resource value: 0x7f09019e
+ public const int TextAppearance_Design_Tab = 2131296670;
- // aapt resource value: 0x7f0801a0
- public const int TextAppearance_MaterialComponents_Body2 = 2131231136;
+ // aapt resource value: 0x7f09019f
+ public const int TextAppearance_MaterialComponents_Body1 = 2131296671;
- // aapt resource value: 0x7f080170
- public const int TextAppearance_MaterialComponents_Button = 2131231088;
+ // aapt resource value: 0x7f0901a0
+ public const int TextAppearance_MaterialComponents_Body2 = 2131296672;
- // aapt resource value: 0x7f0801a1
- public const int TextAppearance_MaterialComponents_Caption = 2131231137;
+ // aapt resource value: 0x7f090170
+ public const int TextAppearance_MaterialComponents_Button = 2131296624;
- // aapt resource value: 0x7f0801a2
- public const int TextAppearance_MaterialComponents_Chip = 2131231138;
+ // aapt resource value: 0x7f0901a1
+ public const int TextAppearance_MaterialComponents_Caption = 2131296673;
- // aapt resource value: 0x7f0801a3
- public const int TextAppearance_MaterialComponents_Headline1 = 2131231139;
+ // aapt resource value: 0x7f0901a2
+ public const int TextAppearance_MaterialComponents_Chip = 2131296674;
- // aapt resource value: 0x7f0801a4
- public const int TextAppearance_MaterialComponents_Headline2 = 2131231140;
+ // aapt resource value: 0x7f0901a3
+ public const int TextAppearance_MaterialComponents_Headline1 = 2131296675;
- // aapt resource value: 0x7f0801a5
- public const int TextAppearance_MaterialComponents_Headline3 = 2131231141;
+ // aapt resource value: 0x7f0901a4
+ public const int TextAppearance_MaterialComponents_Headline2 = 2131296676;
- // aapt resource value: 0x7f0801a6
- public const int TextAppearance_MaterialComponents_Headline4 = 2131231142;
+ // aapt resource value: 0x7f0901a5
+ public const int TextAppearance_MaterialComponents_Headline3 = 2131296677;
- // aapt resource value: 0x7f0801a7
- public const int TextAppearance_MaterialComponents_Headline5 = 2131231143;
+ // aapt resource value: 0x7f0901a6
+ public const int TextAppearance_MaterialComponents_Headline4 = 2131296678;
- // aapt resource value: 0x7f080171
- public const int TextAppearance_MaterialComponents_Headline6 = 2131231089;
+ // aapt resource value: 0x7f0901a7
+ public const int TextAppearance_MaterialComponents_Headline5 = 2131296679;
- // aapt resource value: 0x7f080172
- public const int TextAppearance_MaterialComponents_Overline = 2131231090;
+ // aapt resource value: 0x7f090171
+ public const int TextAppearance_MaterialComponents_Headline6 = 2131296625;
- // aapt resource value: 0x7f0801a8
- public const int TextAppearance_MaterialComponents_Subtitle1 = 2131231144;
+ // aapt resource value: 0x7f090172
+ public const int TextAppearance_MaterialComponents_Overline = 2131296626;
- // aapt resource value: 0x7f080173
- public const int TextAppearance_MaterialComponents_Subtitle2 = 2131231091;
+ // aapt resource value: 0x7f0901a8
+ public const int TextAppearance_MaterialComponents_Subtitle1 = 2131296680;
- // aapt resource value: 0x7f0801a9
- public const int TextAppearance_MaterialComponents_Tab = 2131231145;
+ // aapt resource value: 0x7f090173
+ public const int TextAppearance_MaterialComponents_Subtitle2 = 2131296627;
- // aapt resource value: 0x7f080007
- public const int TextAppearance_MediaRouter_PrimaryText = 2131230727;
+ // aapt resource value: 0x7f0901a9
+ public const int TextAppearance_MaterialComponents_Tab = 2131296681;
- // aapt resource value: 0x7f080008
- public const int TextAppearance_MediaRouter_SecondaryText = 2131230728;
+ // aapt resource value: 0x7f090007
+ public const int TextAppearance_MediaRouter_PrimaryText = 2131296263;
- // aapt resource value: 0x7f080009
- public const int TextAppearance_MediaRouter_Title = 2131230729;
+ // aapt resource value: 0x7f090008
+ public const int TextAppearance_MediaRouter_SecondaryText = 2131296264;
- // aapt resource value: 0x7f080108
- public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131230984;
+ // aapt resource value: 0x7f090009
+ public const int TextAppearance_MediaRouter_Title = 2131296265;
- // aapt resource value: 0x7f080109
- public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131230985;
+ // aapt resource value: 0x7f090108
+ public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131296520;
- // aapt resource value: 0x7f08010a
- public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131230986;
+ // aapt resource value: 0x7f090109
+ public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131296521;
- // aapt resource value: 0x7f08010b
- public const int Theme_AppCompat = 2131230987;
+ // aapt resource value: 0x7f09010a
+ public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131296522;
- // aapt resource value: 0x7f08010c
- public const int Theme_AppCompat_CompactMenu = 2131230988;
+ // aapt resource value: 0x7f09010b
+ public const int Theme_AppCompat = 2131296523;
- // aapt resource value: 0x7f08001a
- public const int Theme_AppCompat_DayNight = 2131230746;
+ // aapt resource value: 0x7f09010c
+ public const int Theme_AppCompat_CompactMenu = 2131296524;
- // aapt resource value: 0x7f08001b
- public const int Theme_AppCompat_DayNight_DarkActionBar = 2131230747;
+ // aapt resource value: 0x7f09001a
+ public const int Theme_AppCompat_DayNight = 2131296282;
- // aapt resource value: 0x7f08001c
- public const int Theme_AppCompat_DayNight_Dialog = 2131230748;
+ // aapt resource value: 0x7f09001b
+ public const int Theme_AppCompat_DayNight_DarkActionBar = 2131296283;
- // aapt resource value: 0x7f08001d
- public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131230749;
+ // aapt resource value: 0x7f09001c
+ public const int Theme_AppCompat_DayNight_Dialog = 2131296284;
- // aapt resource value: 0x7f08001e
- public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131230750;
+ // aapt resource value: 0x7f09001d
+ public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131296285;
- // aapt resource value: 0x7f08001f
- public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131230751;
+ // aapt resource value: 0x7f09001e
+ public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131296286;
- // aapt resource value: 0x7f080020
- public const int Theme_AppCompat_DayNight_NoActionBar = 2131230752;
+ // aapt resource value: 0x7f09001f
+ public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131296287;
- // aapt resource value: 0x7f08010d
- public const int Theme_AppCompat_Dialog = 2131230989;
+ // aapt resource value: 0x7f090020
+ public const int Theme_AppCompat_DayNight_NoActionBar = 2131296288;
- // aapt resource value: 0x7f08010e
- public const int Theme_AppCompat_Dialog_Alert = 2131230990;
+ // aapt resource value: 0x7f09010d
+ public const int Theme_AppCompat_Dialog = 2131296525;
- // aapt resource value: 0x7f08010f
- public const int Theme_AppCompat_Dialog_MinWidth = 2131230991;
+ // aapt resource value: 0x7f09010e
+ public const int Theme_AppCompat_Dialog_Alert = 2131296526;
- // aapt resource value: 0x7f080110
- public const int Theme_AppCompat_DialogWhenLarge = 2131230992;
+ // aapt resource value: 0x7f09010f
+ public const int Theme_AppCompat_Dialog_MinWidth = 2131296527;
- // aapt resource value: 0x7f080111
- public const int Theme_AppCompat_Light = 2131230993;
+ // aapt resource value: 0x7f090110
+ public const int Theme_AppCompat_DialogWhenLarge = 2131296528;
- // aapt resource value: 0x7f080112
- public const int Theme_AppCompat_Light_DarkActionBar = 2131230994;
+ // aapt resource value: 0x7f090111
+ public const int Theme_AppCompat_Light = 2131296529;
- // aapt resource value: 0x7f080113
- public const int Theme_AppCompat_Light_Dialog = 2131230995;
+ // aapt resource value: 0x7f090112
+ public const int Theme_AppCompat_Light_DarkActionBar = 2131296530;
- // aapt resource value: 0x7f080114
- public const int Theme_AppCompat_Light_Dialog_Alert = 2131230996;
+ // aapt resource value: 0x7f090113
+ public const int Theme_AppCompat_Light_Dialog = 2131296531;
- // aapt resource value: 0x7f080115
- public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131230997;
+ // aapt resource value: 0x7f090114
+ public const int Theme_AppCompat_Light_Dialog_Alert = 2131296532;
- // aapt resource value: 0x7f080116
- public const int Theme_AppCompat_Light_DialogWhenLarge = 2131230998;
+ // aapt resource value: 0x7f090115
+ public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131296533;
- // aapt resource value: 0x7f080117
- public const int Theme_AppCompat_Light_NoActionBar = 2131230999;
+ // aapt resource value: 0x7f090116
+ public const int Theme_AppCompat_Light_DialogWhenLarge = 2131296534;
- // aapt resource value: 0x7f080118
- public const int Theme_AppCompat_NoActionBar = 2131231000;
+ // aapt resource value: 0x7f090117
+ public const int Theme_AppCompat_Light_NoActionBar = 2131296535;
- // aapt resource value: 0x7f0801aa
- public const int Theme_Design = 2131231146;
+ // aapt resource value: 0x7f090118
+ public const int Theme_AppCompat_NoActionBar = 2131296536;
- // aapt resource value: 0x7f0801ab
- public const int Theme_Design_BottomSheetDialog = 2131231147;
+ // aapt resource value: 0x7f0901aa
+ public const int Theme_Design = 2131296682;
- // aapt resource value: 0x7f0801ac
- public const int Theme_Design_Light = 2131231148;
+ // aapt resource value: 0x7f0901ab
+ public const int Theme_Design_BottomSheetDialog = 2131296683;
- // aapt resource value: 0x7f0801ad
- public const int Theme_Design_Light_BottomSheetDialog = 2131231149;
+ // aapt resource value: 0x7f0901ac
+ public const int Theme_Design_Light = 2131296684;
- // aapt resource value: 0x7f0801ae
- public const int Theme_Design_Light_NoActionBar = 2131231150;
+ // aapt resource value: 0x7f0901ad
+ public const int Theme_Design_Light_BottomSheetDialog = 2131296685;
- // aapt resource value: 0x7f0801af
- public const int Theme_Design_NoActionBar = 2131231151;
+ // aapt resource value: 0x7f0901ae
+ public const int Theme_Design_Light_NoActionBar = 2131296686;
- // aapt resource value: 0x7f0801b0
- public const int Theme_MaterialComponents = 2131231152;
+ // aapt resource value: 0x7f0901af
+ public const int Theme_Design_NoActionBar = 2131296687;
- // aapt resource value: 0x7f0801b1
- public const int Theme_MaterialComponents_BottomSheetDialog = 2131231153;
+ // aapt resource value: 0x7f0901b0
+ public const int Theme_MaterialComponents = 2131296688;
- // aapt resource value: 0x7f0801b2
- public const int Theme_MaterialComponents_Bridge = 2131231154;
+ // aapt resource value: 0x7f0901b1
+ public const int Theme_MaterialComponents_BottomSheetDialog = 2131296689;
- // aapt resource value: 0x7f0801b3
- public const int Theme_MaterialComponents_CompactMenu = 2131231155;
+ // aapt resource value: 0x7f0901b2
+ public const int Theme_MaterialComponents_Bridge = 2131296690;
- // aapt resource value: 0x7f0801b4
- public const int Theme_MaterialComponents_Dialog = 2131231156;
+ // aapt resource value: 0x7f0901b3
+ public const int Theme_MaterialComponents_CompactMenu = 2131296691;
- // aapt resource value: 0x7f0801b5
- public const int Theme_MaterialComponents_Dialog_Alert = 2131231157;
+ // aapt resource value: 0x7f0901b4
+ public const int Theme_MaterialComponents_Dialog = 2131296692;
- // aapt resource value: 0x7f0801b6
- public const int Theme_MaterialComponents_Dialog_MinWidth = 2131231158;
+ // aapt resource value: 0x7f0901b5
+ public const int Theme_MaterialComponents_Dialog_Alert = 2131296693;
- // aapt resource value: 0x7f0801b7
- public const int Theme_MaterialComponents_DialogWhenLarge = 2131231159;
+ // aapt resource value: 0x7f0901b6
+ public const int Theme_MaterialComponents_Dialog_MinWidth = 2131296694;
- // aapt resource value: 0x7f0801b8
- public const int Theme_MaterialComponents_Light = 2131231160;
+ // aapt resource value: 0x7f0901b7
+ public const int Theme_MaterialComponents_DialogWhenLarge = 2131296695;
- // aapt resource value: 0x7f0801b9
- public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131231161;
+ // aapt resource value: 0x7f0901b8
+ public const int Theme_MaterialComponents_Light = 2131296696;
- // aapt resource value: 0x7f0801ba
- public const int Theme_MaterialComponents_Light_Bridge = 2131231162;
+ // aapt resource value: 0x7f0901b9
+ public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131296697;
- // aapt resource value: 0x7f0801bb
- public const int Theme_MaterialComponents_Light_DarkActionBar = 2131231163;
+ // aapt resource value: 0x7f0901ba
+ public const int Theme_MaterialComponents_Light_Bridge = 2131296698;
- // aapt resource value: 0x7f0801bc
- public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131231164;
+ // aapt resource value: 0x7f0901bb
+ public const int Theme_MaterialComponents_Light_DarkActionBar = 2131296699;
- // aapt resource value: 0x7f0801bd
- public const int Theme_MaterialComponents_Light_Dialog = 2131231165;
+ // aapt resource value: 0x7f0901bc
+ public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131296700;
- // aapt resource value: 0x7f0801be
- public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131231166;
+ // aapt resource value: 0x7f0901bd
+ public const int Theme_MaterialComponents_Light_Dialog = 2131296701;
- // aapt resource value: 0x7f0801bf
- public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131231167;
+ // aapt resource value: 0x7f0901be
+ public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131296702;
- // aapt resource value: 0x7f0801c0
- public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131231168;
+ // aapt resource value: 0x7f0901bf
+ public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131296703;
- // aapt resource value: 0x7f0801c1
- public const int Theme_MaterialComponents_Light_NoActionBar = 2131231169;
+ // aapt resource value: 0x7f0901c0
+ public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131296704;
- // aapt resource value: 0x7f0801c2
- public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131231170;
+ // aapt resource value: 0x7f0901c1
+ public const int Theme_MaterialComponents_Light_NoActionBar = 2131296705;
- // aapt resource value: 0x7f0801c3
- public const int Theme_MaterialComponents_NoActionBar = 2131231171;
+ // aapt resource value: 0x7f0901c2
+ public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131296706;
- // aapt resource value: 0x7f0801c4
- public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131231172;
+ // aapt resource value: 0x7f0901c3
+ public const int Theme_MaterialComponents_NoActionBar = 2131296707;
- // aapt resource value: 0x7f08000a
- public const int Theme_MediaRouter = 2131230730;
+ // aapt resource value: 0x7f0901c4
+ public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131296708;
- // aapt resource value: 0x7f08000b
- public const int Theme_MediaRouter_Light = 2131230731;
+ // aapt resource value: 0x7f09000a
+ public const int Theme_MediaRouter = 2131296266;
- // aapt resource value: 0x7f08000c
- public const int Theme_MediaRouter_Light_DarkControlPanel = 2131230732;
+ // aapt resource value: 0x7f09000b
+ public const int Theme_MediaRouter_Light = 2131296267;
- // aapt resource value: 0x7f08000d
- public const int Theme_MediaRouter_LightControlPanel = 2131230733;
+ // aapt resource value: 0x7f09000c
+ public const int Theme_MediaRouter_Light_DarkControlPanel = 2131296268;
- // aapt resource value: 0x7f080119
- public const int ThemeOverlay_AppCompat = 2131231001;
+ // aapt resource value: 0x7f09000d
+ public const int Theme_MediaRouter_LightControlPanel = 2131296269;
- // aapt resource value: 0x7f08011a
- public const int ThemeOverlay_AppCompat_ActionBar = 2131231002;
+ // aapt resource value: 0x7f090119
+ public const int ThemeOverlay_AppCompat = 2131296537;
- // aapt resource value: 0x7f08011b
- public const int ThemeOverlay_AppCompat_Dark = 2131231003;
+ // aapt resource value: 0x7f09011a
+ public const int ThemeOverlay_AppCompat_ActionBar = 2131296538;
- // aapt resource value: 0x7f08011c
- public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131231004;
+ // aapt resource value: 0x7f09011b
+ public const int ThemeOverlay_AppCompat_Dark = 2131296539;
- // aapt resource value: 0x7f08011d
- public const int ThemeOverlay_AppCompat_Dialog = 2131231005;
+ // aapt resource value: 0x7f09011c
+ public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131296540;
- // aapt resource value: 0x7f08011e
- public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131231006;
+ // aapt resource value: 0x7f09011d
+ public const int ThemeOverlay_AppCompat_Dialog = 2131296541;
- // aapt resource value: 0x7f08011f
- public const int ThemeOverlay_AppCompat_Light = 2131231007;
+ // aapt resource value: 0x7f09011e
+ public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131296542;
- // aapt resource value: 0x7f0801c5
- public const int ThemeOverlay_MaterialComponents = 2131231173;
+ // aapt resource value: 0x7f09011f
+ public const int ThemeOverlay_AppCompat_Light = 2131296543;
- // aapt resource value: 0x7f0801c6
- public const int ThemeOverlay_MaterialComponents_ActionBar = 2131231174;
+ // aapt resource value: 0x7f0901c5
+ public const int ThemeOverlay_MaterialComponents = 2131296709;
- // aapt resource value: 0x7f0801c7
- public const int ThemeOverlay_MaterialComponents_Dark = 2131231175;
+ // aapt resource value: 0x7f0901c6
+ public const int ThemeOverlay_MaterialComponents_ActionBar = 2131296710;
- // aapt resource value: 0x7f0801c8
- public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131231176;
+ // aapt resource value: 0x7f0901c7
+ public const int ThemeOverlay_MaterialComponents_Dark = 2131296711;
- // aapt resource value: 0x7f0801c9
- public const int ThemeOverlay_MaterialComponents_Dialog = 2131231177;
+ // aapt resource value: 0x7f0901c8
+ public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131296712;
- // aapt resource value: 0x7f0801ca
- public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131231178;
+ // aapt resource value: 0x7f0901c9
+ public const int ThemeOverlay_MaterialComponents_Dialog = 2131296713;
- // aapt resource value: 0x7f0801cb
- public const int ThemeOverlay_MaterialComponents_Light = 2131231179;
+ // aapt resource value: 0x7f0901ca
+ public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131296714;
- // aapt resource value: 0x7f0801cc
- public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131231180;
+ // aapt resource value: 0x7f0901cb
+ public const int ThemeOverlay_MaterialComponents_Light = 2131296715;
- // aapt resource value: 0x7f0801cd
- public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131231181;
+ // aapt resource value: 0x7f0901cc
+ public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131296716;
- // aapt resource value: 0x7f0801ce
- public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131231182;
+ // aapt resource value: 0x7f0901cd
+ public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131296717;
- // aapt resource value: 0x7f0801cf
- public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131231183;
+ // aapt resource value: 0x7f0901ce
+ public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131296718;
- // aapt resource value: 0x7f0801d0
- public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131231184;
+ // aapt resource value: 0x7f0901cf
+ public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131296719;
- // aapt resource value: 0x7f08000e
- public const int ThemeOverlay_MediaRouter_Dark = 2131230734;
+ // aapt resource value: 0x7f0901d0
+ public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131296720;
- // aapt resource value: 0x7f08000f
- public const int ThemeOverlay_MediaRouter_Light = 2131230735;
+ // aapt resource value: 0x7f09000e
+ public const int ThemeOverlay_MediaRouter_Dark = 2131296270;
- // aapt resource value: 0x7f080120
- public const int Widget_AppCompat_ActionBar = 2131231008;
+ // aapt resource value: 0x7f09000f
+ public const int ThemeOverlay_MediaRouter_Light = 2131296271;
- // aapt resource value: 0x7f080121
- public const int Widget_AppCompat_ActionBar_Solid = 2131231009;
+ // aapt resource value: 0x7f09020b
+ public const int Toolbar_TitleText = 2131296779;
- // aapt resource value: 0x7f080122
- public const int Widget_AppCompat_ActionBar_TabBar = 2131231010;
+ // aapt resource value: 0x7f090120
+ public const int Widget_AppCompat_ActionBar = 2131296544;
- // aapt resource value: 0x7f080123
- public const int Widget_AppCompat_ActionBar_TabText = 2131231011;
+ // aapt resource value: 0x7f090121
+ public const int Widget_AppCompat_ActionBar_Solid = 2131296545;
- // aapt resource value: 0x7f080124
- public const int Widget_AppCompat_ActionBar_TabView = 2131231012;
+ // aapt resource value: 0x7f090122
+ public const int Widget_AppCompat_ActionBar_TabBar = 2131296546;
- // aapt resource value: 0x7f080125
- public const int Widget_AppCompat_ActionButton = 2131231013;
+ // aapt resource value: 0x7f090123
+ public const int Widget_AppCompat_ActionBar_TabText = 2131296547;
- // aapt resource value: 0x7f080126
- public const int Widget_AppCompat_ActionButton_CloseMode = 2131231014;
+ // aapt resource value: 0x7f090124
+ public const int Widget_AppCompat_ActionBar_TabView = 2131296548;
- // aapt resource value: 0x7f080127
- public const int Widget_AppCompat_ActionButton_Overflow = 2131231015;
+ // aapt resource value: 0x7f090125
+ public const int Widget_AppCompat_ActionButton = 2131296549;
- // aapt resource value: 0x7f080128
- public const int Widget_AppCompat_ActionMode = 2131231016;
+ // aapt resource value: 0x7f090126
+ public const int Widget_AppCompat_ActionButton_CloseMode = 2131296550;
- // aapt resource value: 0x7f080129
- public const int Widget_AppCompat_ActivityChooserView = 2131231017;
+ // aapt resource value: 0x7f090127
+ public const int Widget_AppCompat_ActionButton_Overflow = 2131296551;
- // aapt resource value: 0x7f08012a
- public const int Widget_AppCompat_AutoCompleteTextView = 2131231018;
+ // aapt resource value: 0x7f090128
+ public const int Widget_AppCompat_ActionMode = 2131296552;
- // aapt resource value: 0x7f08012b
- public const int Widget_AppCompat_Button = 2131231019;
+ // aapt resource value: 0x7f090129
+ public const int Widget_AppCompat_ActivityChooserView = 2131296553;
- // aapt resource value: 0x7f08012c
- public const int Widget_AppCompat_Button_Borderless = 2131231020;
+ // aapt resource value: 0x7f09012a
+ public const int Widget_AppCompat_AutoCompleteTextView = 2131296554;
- // aapt resource value: 0x7f08012d
- public const int Widget_AppCompat_Button_Borderless_Colored = 2131231021;
+ // aapt resource value: 0x7f09012b
+ public const int Widget_AppCompat_Button = 2131296555;
- // aapt resource value: 0x7f08012e
- public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131231022;
+ // aapt resource value: 0x7f09012c
+ public const int Widget_AppCompat_Button_Borderless = 2131296556;
- // aapt resource value: 0x7f08012f
- public const int Widget_AppCompat_Button_Colored = 2131231023;
+ // aapt resource value: 0x7f09012d
+ public const int Widget_AppCompat_Button_Borderless_Colored = 2131296557;
- // aapt resource value: 0x7f080130
- public const int Widget_AppCompat_Button_Small = 2131231024;
+ // aapt resource value: 0x7f09012e
+ public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131296558;
- // aapt resource value: 0x7f080131
- public const int Widget_AppCompat_ButtonBar = 2131231025;
+ // aapt resource value: 0x7f09012f
+ public const int Widget_AppCompat_Button_Colored = 2131296559;
- // aapt resource value: 0x7f080132
- public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131231026;
+ // aapt resource value: 0x7f090130
+ public const int Widget_AppCompat_Button_Small = 2131296560;
- // aapt resource value: 0x7f080133
- public const int Widget_AppCompat_CompoundButton_CheckBox = 2131231027;
+ // aapt resource value: 0x7f090131
+ public const int Widget_AppCompat_ButtonBar = 2131296561;
- // aapt resource value: 0x7f080134
- public const int Widget_AppCompat_CompoundButton_RadioButton = 2131231028;
+ // aapt resource value: 0x7f090132
+ public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131296562;
- // aapt resource value: 0x7f080135
- public const int Widget_AppCompat_CompoundButton_Switch = 2131231029;
+ // aapt resource value: 0x7f090133
+ public const int Widget_AppCompat_CompoundButton_CheckBox = 2131296563;
- // aapt resource value: 0x7f080136
- public const int Widget_AppCompat_DrawerArrowToggle = 2131231030;
+ // aapt resource value: 0x7f090134
+ public const int Widget_AppCompat_CompoundButton_RadioButton = 2131296564;
- // aapt resource value: 0x7f080137
- public const int Widget_AppCompat_DropDownItem_Spinner = 2131231031;
+ // aapt resource value: 0x7f090135
+ public const int Widget_AppCompat_CompoundButton_Switch = 2131296565;
- // aapt resource value: 0x7f080138
- public const int Widget_AppCompat_EditText = 2131231032;
+ // aapt resource value: 0x7f090136
+ public const int Widget_AppCompat_DrawerArrowToggle = 2131296566;
- // aapt resource value: 0x7f080139
- public const int Widget_AppCompat_ImageButton = 2131231033;
+ // aapt resource value: 0x7f090137
+ public const int Widget_AppCompat_DropDownItem_Spinner = 2131296567;
- // aapt resource value: 0x7f08013a
- public const int Widget_AppCompat_Light_ActionBar = 2131231034;
+ // aapt resource value: 0x7f090138
+ public const int Widget_AppCompat_EditText = 2131296568;
- // aapt resource value: 0x7f08013b
- public const int Widget_AppCompat_Light_ActionBar_Solid = 2131231035;
+ // aapt resource value: 0x7f090139
+ public const int Widget_AppCompat_ImageButton = 2131296569;
- // aapt resource value: 0x7f08013c
- public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131231036;
+ // aapt resource value: 0x7f09013a
+ public const int Widget_AppCompat_Light_ActionBar = 2131296570;
- // aapt resource value: 0x7f08013d
- public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131231037;
+ // aapt resource value: 0x7f09013b
+ public const int Widget_AppCompat_Light_ActionBar_Solid = 2131296571;
- // aapt resource value: 0x7f08013e
- public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131231038;
+ // aapt resource value: 0x7f09013c
+ public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131296572;
- // aapt resource value: 0x7f08013f
- public const int Widget_AppCompat_Light_ActionBar_TabText = 2131231039;
+ // aapt resource value: 0x7f09013d
+ public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131296573;
- // aapt resource value: 0x7f080140
- public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131231040;
+ // aapt resource value: 0x7f09013e
+ public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131296574;
- // aapt resource value: 0x7f080141
- public const int Widget_AppCompat_Light_ActionBar_TabView = 2131231041;
+ // aapt resource value: 0x7f09013f
+ public const int Widget_AppCompat_Light_ActionBar_TabText = 2131296575;
- // aapt resource value: 0x7f080142
- public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131231042;
+ // aapt resource value: 0x7f090140
+ public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131296576;
- // aapt resource value: 0x7f080143
- public const int Widget_AppCompat_Light_ActionButton = 2131231043;
+ // aapt resource value: 0x7f090141
+ public const int Widget_AppCompat_Light_ActionBar_TabView = 2131296577;
- // aapt resource value: 0x7f080144
- public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131231044;
+ // aapt resource value: 0x7f090142
+ public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131296578;
- // aapt resource value: 0x7f080145
- public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131231045;
+ // aapt resource value: 0x7f090143
+ public const int Widget_AppCompat_Light_ActionButton = 2131296579;
- // aapt resource value: 0x7f080146
- public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131231046;
+ // aapt resource value: 0x7f090144
+ public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131296580;
- // aapt resource value: 0x7f080147
- public const int Widget_AppCompat_Light_ActivityChooserView = 2131231047;
+ // aapt resource value: 0x7f090145
+ public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131296581;
- // aapt resource value: 0x7f080148
- public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131231048;
+ // aapt resource value: 0x7f090146
+ public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131296582;
- // aapt resource value: 0x7f080149
- public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131231049;
+ // aapt resource value: 0x7f090147
+ public const int Widget_AppCompat_Light_ActivityChooserView = 2131296583;
- // aapt resource value: 0x7f08014a
- public const int Widget_AppCompat_Light_ListPopupWindow = 2131231050;
+ // aapt resource value: 0x7f090148
+ public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131296584;
- // aapt resource value: 0x7f08014b
- public const int Widget_AppCompat_Light_ListView_DropDown = 2131231051;
+ // aapt resource value: 0x7f090149
+ public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131296585;
- // aapt resource value: 0x7f08014c
- public const int Widget_AppCompat_Light_PopupMenu = 2131231052;
+ // aapt resource value: 0x7f09014a
+ public const int Widget_AppCompat_Light_ListPopupWindow = 2131296586;
- // aapt resource value: 0x7f08014d
- public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131231053;
+ // aapt resource value: 0x7f09014b
+ public const int Widget_AppCompat_Light_ListView_DropDown = 2131296587;
- // aapt resource value: 0x7f08014e
- public const int Widget_AppCompat_Light_SearchView = 2131231054;
+ // aapt resource value: 0x7f09014c
+ public const int Widget_AppCompat_Light_PopupMenu = 2131296588;
- // aapt resource value: 0x7f08014f
- public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131231055;
+ // aapt resource value: 0x7f09014d
+ public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131296589;
- // aapt resource value: 0x7f080150
- public const int Widget_AppCompat_ListMenuView = 2131231056;
+ // aapt resource value: 0x7f09014e
+ public const int Widget_AppCompat_Light_SearchView = 2131296590;
- // aapt resource value: 0x7f080151
- public const int Widget_AppCompat_ListPopupWindow = 2131231057;
+ // aapt resource value: 0x7f09014f
+ public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131296591;
- // aapt resource value: 0x7f080152
- public const int Widget_AppCompat_ListView = 2131231058;
+ // aapt resource value: 0x7f090150
+ public const int Widget_AppCompat_ListMenuView = 2131296592;
- // aapt resource value: 0x7f080153
- public const int Widget_AppCompat_ListView_DropDown = 2131231059;
+ // aapt resource value: 0x7f090151
+ public const int Widget_AppCompat_ListPopupWindow = 2131296593;
- // aapt resource value: 0x7f080154
- public const int Widget_AppCompat_ListView_Menu = 2131231060;
+ // aapt resource value: 0x7f090152
+ public const int Widget_AppCompat_ListView = 2131296594;
- // aapt resource value: 0x7f080155
- public const int Widget_AppCompat_PopupMenu = 2131231061;
+ // aapt resource value: 0x7f090153
+ public const int Widget_AppCompat_ListView_DropDown = 2131296595;
- // aapt resource value: 0x7f080156
- public const int Widget_AppCompat_PopupMenu_Overflow = 2131231062;
+ // aapt resource value: 0x7f090154
+ public const int Widget_AppCompat_ListView_Menu = 2131296596;
- // aapt resource value: 0x7f080157
- public const int Widget_AppCompat_PopupWindow = 2131231063;
+ // aapt resource value: 0x7f090155
+ public const int Widget_AppCompat_PopupMenu = 2131296597;
- // aapt resource value: 0x7f080158
- public const int Widget_AppCompat_ProgressBar = 2131231064;
+ // aapt resource value: 0x7f090156
+ public const int Widget_AppCompat_PopupMenu_Overflow = 2131296598;
- // aapt resource value: 0x7f080159
- public const int Widget_AppCompat_ProgressBar_Horizontal = 2131231065;
+ // aapt resource value: 0x7f090157
+ public const int Widget_AppCompat_PopupWindow = 2131296599;
- // aapt resource value: 0x7f08015a
- public const int Widget_AppCompat_RatingBar = 2131231066;
+ // aapt resource value: 0x7f090158
+ public const int Widget_AppCompat_ProgressBar = 2131296600;
- // aapt resource value: 0x7f08015b
- public const int Widget_AppCompat_RatingBar_Indicator = 2131231067;
+ // aapt resource value: 0x7f090159
+ public const int Widget_AppCompat_ProgressBar_Horizontal = 2131296601;
- // aapt resource value: 0x7f08015c
- public const int Widget_AppCompat_RatingBar_Small = 2131231068;
+ // aapt resource value: 0x7f09015a
+ public const int Widget_AppCompat_RatingBar = 2131296602;
- // aapt resource value: 0x7f08015d
- public const int Widget_AppCompat_SearchView = 2131231069;
+ // aapt resource value: 0x7f09015b
+ public const int Widget_AppCompat_RatingBar_Indicator = 2131296603;
- // aapt resource value: 0x7f08015e
- public const int Widget_AppCompat_SearchView_ActionBar = 2131231070;
+ // aapt resource value: 0x7f09015c
+ public const int Widget_AppCompat_RatingBar_Small = 2131296604;
- // aapt resource value: 0x7f08015f
- public const int Widget_AppCompat_SeekBar = 2131231071;
+ // aapt resource value: 0x7f09015d
+ public const int Widget_AppCompat_SearchView = 2131296605;
- // aapt resource value: 0x7f080160
- public const int Widget_AppCompat_SeekBar_Discrete = 2131231072;
+ // aapt resource value: 0x7f09015e
+ public const int Widget_AppCompat_SearchView_ActionBar = 2131296606;
- // aapt resource value: 0x7f080161
- public const int Widget_AppCompat_Spinner = 2131231073;
+ // aapt resource value: 0x7f09015f
+ public const int Widget_AppCompat_SeekBar = 2131296607;
- // aapt resource value: 0x7f080162
- public const int Widget_AppCompat_Spinner_DropDown = 2131231074;
+ // aapt resource value: 0x7f090160
+ public const int Widget_AppCompat_SeekBar_Discrete = 2131296608;
- // aapt resource value: 0x7f080163
- public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131231075;
+ // aapt resource value: 0x7f090161
+ public const int Widget_AppCompat_Spinner = 2131296609;
- // aapt resource value: 0x7f080164
- public const int Widget_AppCompat_Spinner_Underlined = 2131231076;
+ // aapt resource value: 0x7f090162
+ public const int Widget_AppCompat_Spinner_DropDown = 2131296610;
- // aapt resource value: 0x7f080165
- public const int Widget_AppCompat_TextView_SpinnerItem = 2131231077;
+ // aapt resource value: 0x7f090163
+ public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131296611;
- // aapt resource value: 0x7f080166
- public const int Widget_AppCompat_Toolbar = 2131231078;
+ // aapt resource value: 0x7f090164
+ public const int Widget_AppCompat_Spinner_Underlined = 2131296612;
- // aapt resource value: 0x7f080167
- public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131231079;
+ // aapt resource value: 0x7f090165
+ public const int Widget_AppCompat_TextView_SpinnerItem = 2131296613;
- // aapt resource value: 0x7f080203
- public const int Widget_Compat_NotificationActionContainer = 2131231235;
+ // aapt resource value: 0x7f090166
+ public const int Widget_AppCompat_Toolbar = 2131296614;
- // aapt resource value: 0x7f080204
- public const int Widget_Compat_NotificationActionText = 2131231236;
+ // aapt resource value: 0x7f090167
+ public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131296615;
- // aapt resource value: 0x7f0801d1
- public const int Widget_Design_AppBarLayout = 2131231185;
+ // aapt resource value: 0x7f090203
+ public const int Widget_Compat_NotificationActionContainer = 2131296771;
- // aapt resource value: 0x7f0801d2
- public const int Widget_Design_BottomNavigationView = 2131231186;
+ // aapt resource value: 0x7f090204
+ public const int Widget_Compat_NotificationActionText = 2131296772;
- // aapt resource value: 0x7f0801d3
- public const int Widget_Design_BottomSheet_Modal = 2131231187;
+ // aapt resource value: 0x7f0901d1
+ public const int Widget_Design_AppBarLayout = 2131296721;
- // aapt resource value: 0x7f0801d4
- public const int Widget_Design_CollapsingToolbar = 2131231188;
+ // aapt resource value: 0x7f0901d2
+ public const int Widget_Design_BottomNavigationView = 2131296722;
- // aapt resource value: 0x7f0801d5
- public const int Widget_Design_FloatingActionButton = 2131231189;
+ // aapt resource value: 0x7f0901d3
+ public const int Widget_Design_BottomSheet_Modal = 2131296723;
- // aapt resource value: 0x7f0801d6
- public const int Widget_Design_NavigationView = 2131231190;
+ // aapt resource value: 0x7f0901d4
+ public const int Widget_Design_CollapsingToolbar = 2131296724;
- // aapt resource value: 0x7f0801d7
- public const int Widget_Design_ScrimInsetsFrameLayout = 2131231191;
+ // aapt resource value: 0x7f0901d5
+ public const int Widget_Design_FloatingActionButton = 2131296725;
- // aapt resource value: 0x7f0801d8
- public const int Widget_Design_Snackbar = 2131231192;
+ // aapt resource value: 0x7f0901d6
+ public const int Widget_Design_NavigationView = 2131296726;
- // aapt resource value: 0x7f08016d
- public const int Widget_Design_TabLayout = 2131231085;
+ // aapt resource value: 0x7f0901d7
+ public const int Widget_Design_ScrimInsetsFrameLayout = 2131296727;
- // aapt resource value: 0x7f0801d9
- public const int Widget_Design_TextInputLayout = 2131231193;
+ // aapt resource value: 0x7f0901d8
+ public const int Widget_Design_Snackbar = 2131296728;
- // aapt resource value: 0x7f0801da
- public const int Widget_MaterialComponents_BottomAppBar = 2131231194;
+ // aapt resource value: 0x7f09016d
+ public const int Widget_Design_TabLayout = 2131296621;
- // aapt resource value: 0x7f0801db
- public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131231195;
+ // aapt resource value: 0x7f0901d9
+ public const int Widget_Design_TextInputLayout = 2131296729;
- // aapt resource value: 0x7f0801dc
- public const int Widget_MaterialComponents_BottomNavigationView = 2131231196;
+ // aapt resource value: 0x7f0901da
+ public const int Widget_MaterialComponents_BottomAppBar = 2131296730;
- // aapt resource value: 0x7f0801dd
- public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131231197;
+ // aapt resource value: 0x7f0901db
+ public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131296731;
- // aapt resource value: 0x7f0801de
- public const int Widget_MaterialComponents_BottomSheet_Modal = 2131231198;
+ // aapt resource value: 0x7f0901dc
+ public const int Widget_MaterialComponents_BottomNavigationView = 2131296732;
- // aapt resource value: 0x7f0801df
- public const int Widget_MaterialComponents_Button = 2131231199;
+ // aapt resource value: 0x7f0901dd
+ public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131296733;
- // aapt resource value: 0x7f0801e0
- public const int Widget_MaterialComponents_Button_Icon = 2131231200;
+ // aapt resource value: 0x7f0901de
+ public const int Widget_MaterialComponents_BottomSheet_Modal = 2131296734;
- // aapt resource value: 0x7f0801e1
- public const int Widget_MaterialComponents_Button_OutlinedButton = 2131231201;
+ // aapt resource value: 0x7f0901df
+ public const int Widget_MaterialComponents_Button = 2131296735;
- // aapt resource value: 0x7f0801e2
- public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131231202;
+ // aapt resource value: 0x7f0901e0
+ public const int Widget_MaterialComponents_Button_Icon = 2131296736;
- // aapt resource value: 0x7f0801e3
- public const int Widget_MaterialComponents_Button_TextButton = 2131231203;
+ // aapt resource value: 0x7f0901e1
+ public const int Widget_MaterialComponents_Button_OutlinedButton = 2131296737;
- // aapt resource value: 0x7f0801e4
- public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131231204;
+ // aapt resource value: 0x7f0901e2
+ public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131296738;
- // aapt resource value: 0x7f0801e5
- public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131231205;
+ // aapt resource value: 0x7f0901e3
+ public const int Widget_MaterialComponents_Button_TextButton = 2131296739;
- // aapt resource value: 0x7f0801e6
- public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131231206;
+ // aapt resource value: 0x7f0901e4
+ public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131296740;
- // aapt resource value: 0x7f0801e7
- public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131231207;
+ // aapt resource value: 0x7f0901e5
+ public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131296741;
- // aapt resource value: 0x7f0801e8
- public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131231208;
+ // aapt resource value: 0x7f0901e6
+ public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131296742;
- // aapt resource value: 0x7f0801e9
- public const int Widget_MaterialComponents_CardView = 2131231209;
+ // aapt resource value: 0x7f0901e7
+ public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131296743;
- // aapt resource value: 0x7f0801ea
- public const int Widget_MaterialComponents_Chip_Action = 2131231210;
+ // aapt resource value: 0x7f0901e8
+ public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131296744;
- // aapt resource value: 0x7f0801eb
- public const int Widget_MaterialComponents_Chip_Choice = 2131231211;
+ // aapt resource value: 0x7f0901e9
+ public const int Widget_MaterialComponents_CardView = 2131296745;
- // aapt resource value: 0x7f0801ec
- public const int Widget_MaterialComponents_Chip_Entry = 2131231212;
+ // aapt resource value: 0x7f0901ea
+ public const int Widget_MaterialComponents_Chip_Action = 2131296746;
- // aapt resource value: 0x7f0801ed
- public const int Widget_MaterialComponents_Chip_Filter = 2131231213;
+ // aapt resource value: 0x7f0901eb
+ public const int Widget_MaterialComponents_Chip_Choice = 2131296747;
- // aapt resource value: 0x7f0801ee
- public const int Widget_MaterialComponents_ChipGroup = 2131231214;
+ // aapt resource value: 0x7f0901ec
+ public const int Widget_MaterialComponents_Chip_Entry = 2131296748;
- // aapt resource value: 0x7f0801ef
- public const int Widget_MaterialComponents_FloatingActionButton = 2131231215;
+ // aapt resource value: 0x7f0901ed
+ public const int Widget_MaterialComponents_Chip_Filter = 2131296749;
- // aapt resource value: 0x7f0801f0
- public const int Widget_MaterialComponents_NavigationView = 2131231216;
+ // aapt resource value: 0x7f0901ee
+ public const int Widget_MaterialComponents_ChipGroup = 2131296750;
- // aapt resource value: 0x7f0801f1
- public const int Widget_MaterialComponents_Snackbar = 2131231217;
+ // aapt resource value: 0x7f0901ef
+ public const int Widget_MaterialComponents_FloatingActionButton = 2131296751;
- // aapt resource value: 0x7f0801f2
- public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131231218;
+ // aapt resource value: 0x7f0901f0
+ public const int Widget_MaterialComponents_NavigationView = 2131296752;
- // aapt resource value: 0x7f0801f3
- public const int Widget_MaterialComponents_TabLayout = 2131231219;
+ // aapt resource value: 0x7f0901f1
+ public const int Widget_MaterialComponents_Snackbar = 2131296753;
- // aapt resource value: 0x7f0801f4
- public const int Widget_MaterialComponents_TabLayout_Colored = 2131231220;
+ // aapt resource value: 0x7f0901f2
+ public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131296754;
- // aapt resource value: 0x7f0801f5
- public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131231221;
+ // aapt resource value: 0x7f0901f3
+ public const int Widget_MaterialComponents_TabLayout = 2131296755;
- // aapt resource value: 0x7f0801f6
- public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131231222;
+ // aapt resource value: 0x7f0901f4
+ public const int Widget_MaterialComponents_TabLayout_Colored = 2131296756;
- // aapt resource value: 0x7f0801f7
- public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131231223;
+ // aapt resource value: 0x7f0901f5
+ public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131296757;
- // aapt resource value: 0x7f0801f8
- public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131231224;
+ // aapt resource value: 0x7f0901f6
+ public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131296758;
- // aapt resource value: 0x7f0801f9
- public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131231225;
+ // aapt resource value: 0x7f0901f7
+ public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131296759;
- // aapt resource value: 0x7f0801fa
- public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131231226;
+ // aapt resource value: 0x7f0901f8
+ public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131296760;
- // aapt resource value: 0x7f0801fb
- public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131231227;
+ // aapt resource value: 0x7f0901f9
+ public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131296761;
- // aapt resource value: 0x7f0801fc
- public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131231228;
+ // aapt resource value: 0x7f0901fa
+ public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131296762;
- // aapt resource value: 0x7f0801fd
- public const int Widget_MaterialComponents_Toolbar = 2131231229;
+ // aapt resource value: 0x7f0901fb
+ public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131296763;
- // aapt resource value: 0x7f080010
- public const int Widget_MediaRouter_Light_MediaRouteButton = 2131230736;
+ // aapt resource value: 0x7f0901fc
+ public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131296764;
- // aapt resource value: 0x7f080011
- public const int Widget_MediaRouter_MediaRouteButton = 2131230737;
+ // aapt resource value: 0x7f0901fd
+ public const int Widget_MaterialComponents_Toolbar = 2131296765;
- // aapt resource value: 0x7f0801fe
- public const int Widget_Support_CoordinatorLayout = 2131231230;
+ // aapt resource value: 0x7f090010
+ public const int Widget_MediaRouter_Light_MediaRouteButton = 2131296272;
- // aapt resource value: 0x7f080004
- public const int XamarinFormsMaterialButton = 2131230724;
+ // aapt resource value: 0x7f090011
+ public const int Widget_MediaRouter_MediaRouteButton = 2131296273;
- // aapt resource value: 0x7f080005
- public const int XamarinFormsMaterialButtonOutlined = 2131230725;
+ // aapt resource value: 0x7f0901fe
+ public const int Widget_Support_CoordinatorLayout = 2131296766;
- // aapt resource value: 0x7f080006
- public const int XamarinFormsMaterialEntryFilled = 2131230726;
+ // aapt resource value: 0x7f090004
+ public const int XamarinFormsMaterialButton = 2131296260;
- // aapt resource value: 0x7f080003
- public const int XamarinFormsMaterialProgressBarCircular = 2131230723;
+ // aapt resource value: 0x7f090005
+ public const int XamarinFormsMaterialButtonOutlined = 2131296261;
- // aapt resource value: 0x7f080002
- public const int XamarinFormsMaterialProgressBarHorizontal = 2131230722;
+ // aapt resource value: 0x7f090006
+ public const int XamarinFormsMaterialEntryFilled = 2131296262;
- // aapt resource value: 0x7f080001
- public const int XamarinFormsMaterialSlider = 2131230721;
+ // aapt resource value: 0x7f090003
+ public const int XamarinFormsMaterialProgressBarCircular = 2131296259;
- // aapt resource value: 0x7f080000
- public const int XamarinFormsMaterialTheme = 2131230720;
+ // aapt resource value: 0x7f090002
+ public const int XamarinFormsMaterialProgressBarHorizontal = 2131296258;
+
+ // aapt resource value: 0x7f090001
+ public const int XamarinFormsMaterialSlider = 2131296257;
+
+ // aapt resource value: 0x7f090000
+ public const int XamarinFormsMaterialTheme = 2131296256;
static Style()
{
@@ -12168,11 +12205,11 @@ namespace AideDeJeu.Droid
public partial class Xml
{
- // aapt resource value: 0x7f070000
- public const int file_paths = 2131165184;
+ // aapt resource value: 0x7f080000
+ public const int file_paths = 2131230720;
- // aapt resource value: 0x7f070001
- public const int xamarin_essentials_fileprovider_file_paths = 2131165185;
+ // aapt resource value: 0x7f080001
+ public const int xamarin_essentials_fileprovider_file_paths = 2131230721;
static Xml()
{
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_black.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_black.otf
new file mode 100644
index 00000000..e1d142f1
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_black.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_bold.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_bold.otf
new file mode 100644
index 00000000..736fb115
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_regular.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_regular.otf
new file mode 100644
index 00000000..2fa4b3ed
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzel_regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_black.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_black.otf
new file mode 100644
index 00000000..e4aeef4d
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_black.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_bold.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_bold.otf
new file mode 100644
index 00000000..918600ff
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_regular.otf b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_regular.otf
new file mode 100644
index 00000000..9f6ddafc
Binary files /dev/null and b/AideDeJeu/AideDeJeu.Android/Resources/font/cinzeldecorative_regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/layout/Tabbar.axml b/AideDeJeu/AideDeJeu.Android/Resources/layout/Tabbar.axml
index 40e31bf1..c0e8791d 100644
--- a/AideDeJeu/AideDeJeu.Android/Resources/layout/Tabbar.axml
+++ b/AideDeJeu/AideDeJeu.Android/Resources/layout/Tabbar.axml
@@ -8,4 +8,5 @@
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabIndicatorColor="@color/HDRed"
app:tabGravity="fill"
- app:tabMode="scrollable" />
+ app:tabMode="scrollable"
+ app:tabTextAppearance="@style/TabBar.TitleText"/>
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/layout/Toolbar.axml b/AideDeJeu/AideDeJeu.Android/Resources/layout/Toolbar.axml
index aabd0a3b..6abe4808 100644
--- a/AideDeJeu/AideDeJeu.Android/Resources/layout/Toolbar.axml
+++ b/AideDeJeu/AideDeJeu.Android/Resources/layout/Toolbar.axml
@@ -1,9 +1,12 @@
+ android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
+ app:titleTextAppearance="@style/Toolbar.TitleText"
+ />
diff --git a/AideDeJeu/AideDeJeu.Android/Resources/values/styles.xml b/AideDeJeu/AideDeJeu.Android/Resources/values/styles.xml
index 767ffc56..eb77a8f5 100644
--- a/AideDeJeu/AideDeJeu.Android/Resources/values/styles.xml
+++ b/AideDeJeu/AideDeJeu.Android/Resources/values/styles.xml
@@ -42,4 +42,14 @@
+
+
+
+
diff --git a/AideDeJeu/AideDeJeu.GTK/AideDeJeu.GTK.csproj b/AideDeJeu/AideDeJeu.GTK/AideDeJeu.GTK.csproj
index 4466ab65..cd1c0c7f 100644
--- a/AideDeJeu/AideDeJeu.GTK/AideDeJeu.GTK.csproj
+++ b/AideDeJeu/AideDeJeu.GTK/AideDeJeu.GTK.csproj
@@ -1,6 +1,6 @@
-
+
Debug
@@ -150,17 +150,17 @@
..\..\packages\sqlite-net-pcl.1.6.258-beta\lib\netstandard1.1\SQLite-net.dll
-
- ..\..\packages\SQLitePCLRaw.bundle_green.1.1.13\lib\net45\SQLitePCLRaw.batteries_green.dll
+
+ ..\..\packages\SQLitePCLRaw.bundle_green.1.1.14\lib\net45\SQLitePCLRaw.batteries_green.dll
-
- ..\..\packages\SQLitePCLRaw.bundle_green.1.1.13\lib\net45\SQLitePCLRaw.batteries_v2.dll
+
+ ..\..\packages\SQLitePCLRaw.bundle_green.1.1.14\lib\net45\SQLitePCLRaw.batteries_v2.dll
-
- ..\..\packages\SQLitePCLRaw.core.1.1.13\lib\net45\SQLitePCLRaw.core.dll
+
+ ..\..\packages\SQLitePCLRaw.core.1.1.14\lib\net45\SQLitePCLRaw.core.dll
-
- ..\..\packages\SQLitePCLRaw.provider.e_sqlite3.net45.1.1.13\lib\net45\SQLitePCLRaw.provider.e_sqlite3.dll
+
+ ..\..\packages\SQLitePCLRaw.provider.e_sqlite3.net45.1.1.14\lib\net45\SQLitePCLRaw.provider.e_sqlite3.dll
@@ -206,28 +206,28 @@
- ..\..\packages\Xamarin.Forms.Platform.GTK.4.0.0.425677\lib\net45\webkit-sharp.dll
+ ..\..\packages\Xamarin.Forms.Platform.GTK.4.0.0.497661\lib\net45\webkit-sharp.dll
..\..\packages\Xamarin.Essentials.1.1.0\lib\netstandard2.0\Xamarin.Essentials.dll
- ..\..\packages\Xamarin.Forms.4.0.0.425677\lib\netstandard2.0\Xamarin.Forms.Core.dll
+ ..\..\packages\Xamarin.Forms.4.0.0.497661\lib\netstandard2.0\Xamarin.Forms.Core.dll
-
- ..\..\packages\Xamarin.Forms.4.0.0.425677\lib\netstandard2.0\Xamarin.Forms.Platform.dll
+
+ ..\..\packages\Xamarin.Forms.4.0.0.497661\lib\netstandard2.0\Xamarin.Forms.Platform.dll
- ..\..\packages\Xamarin.Forms.Platform.GTK.4.0.0.425677\lib\net45\Xamarin.Forms.Platform.GTK.dll
+ ..\..\packages\Xamarin.Forms.Platform.GTK.4.0.0.497661\lib\net45\Xamarin.Forms.Platform.GTK.dll
- ..\..\packages\Xamarin.Forms.4.0.0.425677\lib\netstandard2.0\Xamarin.Forms.Xaml.dll
+ ..\..\packages\Xamarin.Forms.4.0.0.497661\lib\netstandard2.0\Xamarin.Forms.Xaml.dll
..\..\packages\XamiTextSharpLGPLv2.1.0.0\lib\netstandard2.0\XamiTextSharpLGPLv2.dll
- ..\..\packages\YamlDotNet.6.0.0\lib\net45\YamlDotNet.dll
+ ..\..\packages\YamlDotNet.6.1.1\lib\net45\YamlDotNet.dll
@@ -303,16 +303,16 @@
Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/AideDeJeu/AideDeJeu.GTK/app.config b/AideDeJeu/AideDeJeu.GTK/app.config
index cff099e6..76d8e0a9 100644
--- a/AideDeJeu/AideDeJeu.GTK/app.config
+++ b/AideDeJeu/AideDeJeu.GTK/app.config
@@ -44,11 +44,11 @@
-
+
-
+
diff --git a/AideDeJeu/AideDeJeu.GTK/packages.config b/AideDeJeu/AideDeJeu.GTK/packages.config
index c7fbfb11..e300a61f 100644
--- a/AideDeJeu/AideDeJeu.GTK/packages.config
+++ b/AideDeJeu/AideDeJeu.GTK/packages.config
@@ -27,12 +27,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
@@ -44,9 +44,9 @@
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/AideDeJeu/AideDeJeu.UWP/AideDeJeu.UWP.csproj b/AideDeJeu/AideDeJeu.UWP/AideDeJeu.UWP.csproj
index 2ebce9ca..39361b1d 100644
--- a/AideDeJeu/AideDeJeu.UWP/AideDeJeu.UWP.csproj
+++ b/AideDeJeu/AideDeJeu.UWP/AideDeJeu.UWP.csproj
@@ -309,6 +309,13 @@
+
+
+
+
+
+
+
@@ -632,10 +639,10 @@
1.1.0
- 4.0.0.425677
+ 4.0.0.497661
- 4.0.0.425677
+ 4.0.0.497661
1.0.0
diff --git a/AideDeJeu/AideDeJeu.UWP/App.xaml.cs b/AideDeJeu/AideDeJeu.UWP/App.xaml.cs
index c5845851..8d399769 100644
--- a/AideDeJeu/AideDeJeu.UWP/App.xaml.cs
+++ b/AideDeJeu/AideDeJeu.UWP/App.xaml.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
+using System.Text;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
@@ -61,6 +62,7 @@ namespace AideDeJeu.UWP
Xamarin.Forms.Forms.Init(e, Rg.Plugins.Popup.Popup.GetExtraAssemblies());
SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_e_sqlite3());
+ Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Black.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Black.otf
new file mode 100644
index 00000000..e1d142f1
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Bold.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Bold.otf
new file mode 100644
index 00000000..736fb115
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Regular.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Regular.otf
new file mode 100644
index 00000000..2fa4b3ed
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/Cinzel-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Black.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Black.otf
new file mode 100644
index 00000000..e4aeef4d
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Bold.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Bold.otf
new file mode 100644
index 00000000..918600ff
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Regular.otf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Regular.otf
new file mode 100644
index 00000000..9f6ddafc
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/CinzelDecorative-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/MarcellusSC-Regular.ttf b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/MarcellusSC-Regular.ttf
new file mode 100644
index 00000000..7304b969
Binary files /dev/null and b/AideDeJeu/AideDeJeu.UWP/Assets/Fonts/MarcellusSC-Regular.ttf differ
diff --git a/AideDeJeu/AideDeJeu.iOS/AideDeJeu.iOS.csproj b/AideDeJeu/AideDeJeu.iOS/AideDeJeu.iOS.csproj
index f1669423..7b524fb0 100644
--- a/AideDeJeu/AideDeJeu.iOS/AideDeJeu.iOS.csproj
+++ b/AideDeJeu/AideDeJeu.iOS/AideDeJeu.iOS.csproj
@@ -450,10 +450,10 @@
1.1.0
- 4.0.0.425677
+ 4.0.0.497661
- 4.0.0.425677
+ 4.0.0.497661
1.0.0
diff --git a/AideDeJeu/AideDeJeu/AideDeJeu.csproj b/AideDeJeu/AideDeJeu/AideDeJeu.csproj
index d3630571..b1e1ce22 100644
--- a/AideDeJeu/AideDeJeu/AideDeJeu.csproj
+++ b/AideDeJeu/AideDeJeu/AideDeJeu.csproj
@@ -23,6 +23,12 @@
+
+
+
+
+
+
@@ -40,7 +46,9 @@
+
+
@@ -49,6 +57,12 @@
+
+
+
+
+
+
@@ -66,7 +80,9 @@
+
+
@@ -80,10 +96,10 @@
-
-
+
+
-
+
diff --git a/AideDeJeu/AideDeJeu/App.xaml b/AideDeJeu/AideDeJeu/App.xaml
index e5b0a794..e061c999 100644
--- a/AideDeJeu/AideDeJeu/App.xaml
+++ b/AideDeJeu/AideDeJeu/App.xaml
@@ -24,26 +24,26 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
@@ -117,35 +117,35 @@
diff --git a/AideDeJeu/AideDeJeu/App.xaml.cs b/AideDeJeu/AideDeJeu/App.xaml.cs
index ac96cb1e..107bcaa1 100644
--- a/AideDeJeu/AideDeJeu/App.xaml.cs
+++ b/AideDeJeu/AideDeJeu/App.xaml.cs
@@ -1,4 +1,5 @@
-using AideDeJeu.ViewModels;
+using AideDeJeu.Pdf;
+using AideDeJeu.ViewModels;
using AideDeJeu.ViewModels.Library;
using AideDeJeu.ViewModels.PlayerCharacter;
using AideDeJeu.Views;
@@ -19,6 +20,7 @@ namespace AideDeJeu
InitializeComponent();
DependencyService.Register();
+ DependencyService.Register();
DependencyService.Register();
DependencyService.Register();
DependencyService.Register();
diff --git a/AideDeJeu/AideDeJeu/MarkdownView/MarkdownView.cs b/AideDeJeu/AideDeJeu/MarkdownView/MarkdownView.cs
index e27c6838..bcd2cb0e 100644
--- a/AideDeJeu/AideDeJeu/MarkdownView/MarkdownView.cs
+++ b/AideDeJeu/AideDeJeu/MarkdownView/MarkdownView.cs
@@ -64,13 +64,13 @@
view.RenderMarkdown();
}
- private StackLayout stack;
+ private StackLayout _Stack;
private List> links = new List>();
private void RenderMarkdown()
{
- stack = new StackLayout()
+ _Stack = new StackLayout()
{
Spacing = this.Theme.Margin,
};
@@ -83,19 +83,27 @@
{
var pipeline = new Markdig.MarkdownPipelineBuilder().UseYamlFrontMatter().UsePipeTables().Build();
var parsed = Markdig.Markdown.Parse(this.Markdown, pipeline);
- this.Render(parsed.AsEnumerable());
+ var views = this.Render(parsed.AsEnumerable());
+ views.ToList().ForEach(view => _Stack.Children.Add(view));
}
- this.Content = stack;
+ this.Content = _Stack;
}
- private void Render(IEnumerable blocks)
+ private IEnumerable Render(IEnumerable blocks)
{
+ var views = new List();
foreach (var block in blocks)
{
- this.Render(block);
+ var subviews = this.Render(block);
+ if(subviews != null)
+ {
+ views.AddRange(subviews);
+ //views.Add(view);
+ }
}
+ return views;
}
private void AttachLinks(View view)
@@ -103,24 +111,21 @@
if (links.Any())
{
var blockLinks = links.Distinct().OrderBy(l => l.Key).ToList();
- if (blockLinks.Count > 1)
- {
- if (Device.RuntimePlatform == Device.GTK)
+ if (blockLinks.Count > 1 && Device.RuntimePlatform == Device.GTK)
+ {
+ view.GestureRecognizers.Add(new TapGestureRecognizer
{
- view.GestureRecognizers.Add(new TapGestureRecognizer
+ Command = new Command(async () =>
{
- Command = new Command(async () =>
+ try
{
- try
- {
- var result = await Application.Current.MainPage.DisplayActionSheet("Ouvrir le lien", "Annuler", null, blockLinks.Select(x => x.Key).ToArray());
- var link = blockLinks.FirstOrDefault(x => x.Key == result);
- NavigateToLinkCommand?.Execute(link.Value);
- }
- catch (Exception) { }
- }),
- });
- }
+ var result = await Application.Current.MainPage.DisplayActionSheet("Ouvrir le lien", "Annuler", null, blockLinks.Select(x => x.Key).ToArray());
+ var link = blockLinks.FirstOrDefault(x => x.Key == result);
+ NavigateToLinkCommand?.Execute(link.Value);
+ }
+ catch (Exception) { }
+ }),
+ });
}
else
{
@@ -159,100 +164,118 @@
#region Rendering blocks
- private void Render(Block block)
+ private IEnumerable Render(Block block)
{
+ var views = new List();
+ IEnumerable subviews = null;
switch (block)
{
case HeadingBlock heading:
- Render(heading);
+ subviews = Render(heading);
break;
case ParagraphBlock paragraph:
- Render(paragraph);
+ subviews = Render(paragraph);
break;
case QuoteBlock quote:
- Render(quote);
+ subviews = Render(quote);
break;
case CodeBlock code:
- Render(code);
+ subviews = Render(code);
break;
case ListBlock list:
- Render(list);
+ subviews = Render(list);
break;
case ThematicBreakBlock thematicBreak:
- Render(thematicBreak);
+ subviews = Render(thematicBreak);
break;
case HtmlBlock html:
- Render(html);
+ subviews = Render(html);
break;
case Markdig.Extensions.Tables.Table table:
- Render(table);
+ subviews = Render(table);
break;
default:
Debug.WriteLine($"Can't render {block.GetType()} blocks.");
break;
}
-
- if(queuedViews.Any())
+ if(subviews != null)
{
- foreach (var view in queuedViews)
- {
- this.stack.Children.Add(view);
- }
- queuedViews.Clear();
+ views.AddRange(subviews);
}
+
+ if (views != null)
+ {
+ if (queuedViews.Any())
+ {
+ foreach (var view in queuedViews)
+ {
+ views.Add(view);
+ }
+ queuedViews.Clear();
+ }
+ }
+ return views;
}
private int listScope;
- private void Render(ThematicBreakBlock block)
+ private IEnumerable Render(ThematicBreakBlock block)
{
var style = this.Theme.Separator;
if (style.BorderSize > 0)
{
- stack.Children.Add(new BoxView
+ return new View[] { new BoxView
{
HeightRequest = style.BorderSize,
BackgroundColor = style.BorderColor,
- });
+ } };
}
+ return null;
}
- private void Render(ListBlock block)
+ private IEnumerable Render(ListBlock block)
{
listScope++;
+ var views = new List();
for (int i = 0; i < block.Count(); i++)
{
var item = block.ElementAt(i);
if (item is ListItemBlock itemBlock)
{
- this.Render(block, i + 1, itemBlock);
+ var subviews = this.Render(block, i + 1, itemBlock);
+ if(subviews != null)
+ {
+ views.AddRange(subviews);
+ }
}
}
listScope--;
+ return views;
}
- private void Render(ListBlock parent, int index, ListItemBlock block)
+ private IEnumerable Render(ListBlock parent, int index, ListItemBlock block)
{
- var initialStack = this.stack;
+ //var initialStack = this.stack;
- this.stack = new StackLayout()
+ var stack = new StackLayout()
{
Spacing = this.Theme.Margin,
};
- this.Render(block.AsEnumerable());
+ var subv = this.Render(block.AsEnumerable());
+ subv.ToList().ForEach(v => stack.Children.Add(v));
var horizontalStack = new StackLayout
{
@@ -299,13 +322,14 @@
horizontalStack.Children.Add(bullet);
}
- horizontalStack.Children.Add(this.stack);
- initialStack.Children.Add(horizontalStack);
+ horizontalStack.Children.Add(stack);
+ //initialStack.Children.Add(horizontalStack);
- this.stack = initialStack;
+ //this.stack = initialStack;
+ return new View[] { horizontalStack };
}
- private void Render(HeadingBlock block)
+ private IEnumerable Render(HeadingBlock block)
{
MarkdownStyle style;
@@ -349,16 +373,16 @@
HeightRequest = style.BorderSize,
BackgroundColor = style.BorderColor,
});
- stack.Children.Add(headingStack);
+ return new View[] { headingStack };
}
else
{
- stack.Children.Add(label);
+ return new View[] { label };
}
}
- private void Render(ParagraphBlock block)
- {
+ private IEnumerable Render(ParagraphBlock block)
+ {
var style = this.Theme.Paragraph;
var foregroundColor = isQuoted ? this.Theme.Quote.ForegroundColor : style.ForegroundColor;
var label = new Label
@@ -366,10 +390,10 @@
FormattedText = CreateFormatted(block.Inline, style.FontFamily, style.Attributes, foregroundColor, style.BackgroundColor, style.FontSize),
};
AttachLinks(label);
- this.stack.Children.Add(label);
+ return new View[] { label };
}
- private void Render(HtmlBlock block)
+ private IEnumerable Render(HtmlBlock block)
{
if(block.Type == HtmlBlockType.NonInterruptingBlock || block.Type == HtmlBlockType.Comment)
{
@@ -380,7 +404,7 @@
{
Text = "\n",
};
- this.stack.Children.Add(label);
+ return new View[] { label };
}
else
@@ -393,15 +417,17 @@
// ?
}
// ?
+ return null;
}
- private void Render(QuoteBlock block)
+ private IEnumerable Render(QuoteBlock block)
{
var initialIsQuoted = this.isQuoted;
- var initialStack = this.stack;
+ //var initialStack = this.stack;
+ var views = new List();
this.isQuoted = true;
- this.stack = new StackLayout()
+ var stack = new StackLayout()
{
Spacing = this.Theme.Margin,
};
@@ -422,23 +448,25 @@
BackgroundColor = style.BorderColor,
});
- horizontalStack.Children.Add(this.stack);
- initialStack.Children.Add(horizontalStack);
+ horizontalStack.Children.Add(stack);
+ views.Add(horizontalStack);
}
else
{
stack.BackgroundColor = this.Theme.Quote.BackgroundColor;
- initialStack.Children.Add(this.stack);
+ views.Add(stack);
}
- this.Render(block.AsEnumerable());
+ var subviews = this.Render(block.AsEnumerable());
this.isQuoted = initialIsQuoted;
- this.stack = initialStack;
+ //this.stack = initialStack;
+ return subviews;
}
- private void Render(CodeBlock block)
+ private IEnumerable Render(CodeBlock block)
{
+ var views = new List();
var style = this.Theme.Code;
var label = new Label
{
@@ -448,7 +476,7 @@
FontSize = style.FontSize,
Text = string.Join(Environment.NewLine, block.Lines),
};
- stack.Children.Add(new Frame()
+ views.Add(new Frame()
{
CornerRadius = 3,
HasShadow = false,
@@ -456,9 +484,10 @@
BackgroundColor = style.BackgroundColor,
Content = label
});
+ return views;
}
- private void Render(Markdig.Extensions.Tables.Table tableBlock)
+ private IEnumerable Render(Markdig.Extensions.Tables.Table tableBlock)
{
var scroll = new ScrollView() { HorizontalScrollBarVisibility = ScrollBarVisibility.Default, Orientation = ScrollOrientation.Horizontal };
var grid = new Grid() { HorizontalOptions = LayoutOptions.Start, Margin = 0, Padding = 1, BackgroundColor = Theme.TableHeader.BackgroundColor, RowSpacing = 1, ColumnSpacing = 1 };
@@ -514,8 +543,9 @@
}
top++;
}
- stack.Children.Add(scroll);
+ //stack.Children.Add(scroll);
scroll.Content = grid;
+ return new View[] { scroll };
}
@@ -586,7 +616,7 @@
image.Source = url;
}
- queuedViews.Add(image);
+ //queuedViews.Add(image);
return new Span[0];
}
else
diff --git a/AideDeJeu/AideDeJeu/Models/Items/Item.cs b/AideDeJeu/AideDeJeu/Models/Items/Item.cs
index eafd0c31..7bbf548e 100644
--- a/AideDeJeu/AideDeJeu/Models/Items/Item.cs
+++ b/AideDeJeu/AideDeJeu/Models/Items/Item.cs
@@ -339,9 +339,14 @@ namespace AideDeJeuLib
}
else
{
+ id = id.Replace(".md#", "_");
id = id.Replace(".md", "");
}
id = id.Replace("-", "_").Replace("?", "").Replace("’", "_").Replace("'", "_").Replace("__", "_").ToLower() + ".md";
+ if (id.Contains("#"))
+ {
+ Console.WriteLine(id);
+ }
return id;
}
}
diff --git a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItem.cs b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItem.cs
index 577642ac..53570863 100644
--- a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItem.cs
+++ b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItem.cs
@@ -1,6 +1,7 @@
using AideDeJeu;
using AideDeJeu.Tools;
using Markdig.Syntax;
+using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -12,10 +13,16 @@ namespace AideDeJeuLib
{
public class MonsterItem : Item
{
+ [Indexed]
public string Family { get; set; }
+ [Indexed]
public string Type { get; set; }
+ [Indexed]
public string Size { get; set; }
+ [Indexed]
public string Alignment { get; set; }
+ [Indexed]
+ public string Terrain { get; set; }
public string Legendary { get; set; }
//public string Source { get; set; }
public string ArmorClass { get; set; }
@@ -35,6 +42,7 @@ namespace AideDeJeuLib
public string DamageResistances { get; set; }
public string Senses { get; set; }
public string Languages { get; set; }
+ [Indexed]
public string Challenge { get; set; }
}
}
diff --git a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItems.cs b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItems.cs
index 2aec228b..460eef56 100644
--- a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItems.cs
+++ b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterItems.cs
@@ -12,6 +12,7 @@ namespace AideDeJeuLib
public string Challenges { get; set; }
public string Sizes { get; set; }
public string Sources { get; set; }
+ public string Terrains { get; set; }
public override FilterViewModel GetNewFilterViewModel()
{
@@ -19,7 +20,8 @@ namespace AideDeJeuLib
Split(Types),
Split(Challenges),
Split(Sizes),
- Split(Sources)
+ Split(Sources),
+ Split(Terrains)
);
}
}
diff --git a/AideDeJeu/AideDeJeu/Pdf/Cinzel-Black.otf b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Black.otf
new file mode 100644
index 00000000..e1d142f1
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/Cinzel-Bold.otf b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Bold.otf
new file mode 100644
index 00000000..736fb115
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/Cinzel-Regular.otf b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Regular.otf
new file mode 100644
index 00000000..2fa4b3ed
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/Cinzel-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Black.otf b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Black.otf
new file mode 100644
index 00000000..e4aeef4d
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Black.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Bold.otf b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Bold.otf
new file mode 100644
index 00000000..918600ff
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Bold.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Regular.otf b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Regular.otf
new file mode 100644
index 00000000..9f6ddafc
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/CinzelDecorative-Regular.otf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/MarcellusSC-Regular.ttf b/AideDeJeu/AideDeJeu/Pdf/MarcellusSC-Regular.ttf
new file mode 100644
index 00000000..7304b969
Binary files /dev/null and b/AideDeJeu/AideDeJeu/Pdf/MarcellusSC-Regular.ttf differ
diff --git a/AideDeJeu/AideDeJeu/Pdf/PdfService.cs b/AideDeJeu/AideDeJeu/Pdf/PdfService.cs
new file mode 100644
index 00000000..057923dd
--- /dev/null
+++ b/AideDeJeu/AideDeJeu/Pdf/PdfService.cs
@@ -0,0 +1,442 @@
+using AideDeJeu.Tools;
+using iTextSharp.text;
+using iTextSharp.text.pdf;
+using Markdig;
+using Markdig.Syntax;
+using Markdig.Syntax.Inlines;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Xamarin.Forms;
+
+namespace AideDeJeu.Pdf
+{
+ public class PdfService
+ {
+ public static PdfService Instance
+ {
+ get
+ {
+ return DependencyService.Get();
+ }
+ }
+ public static void DrawText(PdfContentByte cb, string text, iTextSharp.text.Font font, float x, float y, float width, float height, int alignment)
+ {
+ cb.SetRGBColorFill(127, 127, 127);
+ //cb.Rectangle(x, y, width, height);
+ //cb.Stroke();
+ ColumnText ct = new ColumnText(cb);
+ ct.SetSimpleColumn(x, y, x + width, y + height);
+ var p = new Paragraph(text); //, font);
+ p.Alignment = alignment;
+ ct.AddElement(p);
+ ct.Go();
+
+ }
+
+ Document _Document = null;
+ PdfWriter _Writer = null;
+
+ public string BasePdfDirectory
+ {
+ get
+ {
+ return Path.Combine(Xamarin.Essentials.FileSystem.CacheDirectory, "pdf");
+ }
+ }
+
+ public async Task MarkdownToPDF(List mds)
+ {
+ var basePath = BasePdfDirectory;
+ Directory.CreateDirectory(basePath);
+ using (var stream = new FileStream(Path.Combine(BasePdfDirectory, "test.pdf"), FileMode.Create))
+ {
+ MarkdownToPdf(mds, stream);
+ }
+ return "test.pdf";
+ }
+ public void MarkdownToPdf(List mds, Stream stream)
+ {
+ var pipeline = new Markdig.MarkdownPipelineBuilder().UseYamlFrontMatter().UsePipeTables().Build();
+
+ _Document = new Document(new iTextSharp.text.Rectangle(822, 1122));
+ _Writer = PdfWriter.GetInstance(_Document, stream);
+ _Document.Open();
+ //PdfReader reader = null;
+ //reader = new PdfReader(AideDeJeu.Tools.Helpers.GetResourceStream("AideDeJeu.Pdf.poker_size.pdf"));
+ //PdfStamper stamper = null;
+ //stamper = new PdfStamper(reader, stream);
+
+ foreach (var md in mds)
+ {
+ var parsed = Markdig.Markdown.Parse(md, pipeline);
+ Render(parsed.AsEnumerable(), _Document);
+ }
+
+ _Document.Close();
+ _Writer.Close();
+ //stamper.Close();
+ //reader.Close();
+ }
+
+ private BaseFont GetBaseFont(string fontName)
+ {
+ string fontPath = fontName;
+ if(Xamarin.Essentials.DeviceInfo.Platform != Xamarin.Essentials.DevicePlatform.Unknown)
+ {
+ fontPath = Path.Combine(Xamarin.Essentials.FileSystem.CacheDirectory, fontPath);
+ }
+ using (var inFont = AideDeJeu.Tools.Helpers.GetResourceStream($"AideDeJeu.Pdf.{fontName}"))
+ {
+ using (var outFont = new FileStream(fontPath, FileMode.Create, FileAccess.ReadWrite))
+ {
+ inFont.CopyTo(outFont);
+ }
+ }
+ FontFactory.Register(fontPath);
+
+ return iTextSharp.text.pdf.BaseFont.CreateFont(fontPath, iTextSharp.text.pdf.BaseFont.IDENTITY_H, iTextSharp.text.pdf.BaseFont.EMBEDDED);
+ }
+
+ BaseFont _CinzelRegular = null;
+ public BaseFont CinzelRegular
+ {
+ get
+ {
+ return _CinzelRegular ?? (_CinzelRegular = GetBaseFont("Cinzel-Regular.otf"));
+ }
+ }
+ BaseFont _CinzelBold = null;
+ public BaseFont CinzelBold
+ {
+ get
+ {
+ return _CinzelBold ?? (_CinzelBold = GetBaseFont("Cinzel-Bold.otf"));
+ }
+ }
+ BaseFont _LinuxLibertine = null;
+ public BaseFont LinuxLibertine
+ {
+ get
+ {
+ return _LinuxLibertine ?? (_LinuxLibertine = GetBaseFont("LinLibertine_R.ttf"));
+ }
+ }
+
+
+ iTextSharp.text.Font _Header1Font = null;
+ public iTextSharp.text.Font Header1Font
+ {
+ get
+ {
+ return _Header1Font ?? (_Header1Font = new iTextSharp.text.Font(CinzelBold, 30));
+ }
+ }
+ iTextSharp.text.Font _Header2Font = null;
+ public iTextSharp.text.Font Header2Font
+ {
+ get
+ {
+ return _Header2Font ?? (_Header2Font = new iTextSharp.text.Font(CinzelRegular, 25));
+ }
+ }
+ iTextSharp.text.Font _Header3Font = null;
+ public iTextSharp.text.Font Header3Font
+ {
+ get
+ {
+ return _Header3Font ?? (_Header3Font = new iTextSharp.text.Font(CinzelRegular, 20));
+ }
+ }
+ iTextSharp.text.Font _Header4Font = null;
+ public iTextSharp.text.Font Header4Font
+ {
+ get
+ {
+ return _Header4Font ?? (_Header4Font = new iTextSharp.text.Font(CinzelRegular, 18));
+ }
+ }
+ iTextSharp.text.Font _Header5Font = null;
+ public iTextSharp.text.Font Header5Font
+ {
+ get
+ {
+ return _Header5Font ?? (_Header5Font = new iTextSharp.text.Font(CinzelRegular, 16));
+ }
+ }
+ iTextSharp.text.Font _Header6Font = null;
+ public iTextSharp.text.Font Header6Font
+ {
+ get
+ {
+ return _Header6Font ?? (_Header6Font = new iTextSharp.text.Font(CinzelRegular, 15));
+ }
+ }
+
+
+ iTextSharp.text.Font _ParagraphFont = null;
+ iTextSharp.text.Font ParagraphFont
+ {
+ get
+ {
+ return _ParagraphFont ?? (_ParagraphFont = new iTextSharp.text.Font(LinuxLibertine, 15));
+ }
+ }
+
+ private void Render(IEnumerable blocks, Document document)
+ {
+ //if(ParagraphFont == null)
+ //{
+ // if(CinzelRegular == null)
+ // {
+
+ // }
+ // //var fontPath = Path.Combine(Xamarin.Essentials.FileSystem.CacheDirectory, "Cinzel-Regular.otf");
+ // //var fontPath = @"C:\Users\yanma\Documents\Visual Studio 2017\Projects\AideDeJeu\AideDeJeu\AideDeJeuCmd\bin\Debug\netcoreapp2.1\Cinzel-Regular.otf";
+ // var fontPath = @"Cinzel-Regular.otf";
+ // using (var inFont = AideDeJeu.Tools.Helpers.GetResourceStream("AideDeJeu.Pdf.Cinzel-Regular.otf"))
+ // {
+ // using (var outFont = new FileStream(fontPath, FileMode.Create, FileAccess.ReadWrite))
+ // {
+ // inFont.CopyTo(outFont);
+ // }
+ // }
+ // FontFactory.Register(fontPath);
+
+ // //var mafont = FontFactory.GetFont("cinzel", 20, iTextSharp.text.Font.NORMAL);
+ // var mafont = iTextSharp.text.pdf.BaseFont.CreateFont(fontPath, iTextSharp.text.pdf.BaseFont.IDENTITY_H, iTextSharp.text.pdf.BaseFont.EMBEDDED);
+ // //var font = mafont.BaseFont;
+ // var bigFont = new iTextSharp.text.Font(mafont, 20);
+
+ // var fonts = FontFactory.RegisteredFonts;
+
+ // ParagraphFont = bigFont;
+ //}
+ var phrases = Render(blocks);
+
+
+ ColumnText ct = new ColumnText(_Writer.DirectContent);
+
+ int column = 0;
+ ct.SetSimpleColumn(10, 10 + 200 * column, 200, 200 + 200 * column);
+ int status = 0;
+ Phrase p = null;
+ float y = 0;
+ foreach (var phrase in phrases)
+ {
+ //var pphrase = new Phrase("test", bigFont);
+ //phrase.Font = ParagraphFont;
+ y = ct.YLine;
+
+ document.Add(phrase);
+ //ct.AddText(phrase);
+ //status = ct.Go(true);
+ //if(ColumnText.HasMoreText(status))
+ //{
+
+ // column++;
+ // ct.SetSimpleColumn(10, 10 + 200 * column, 200, 200 + 200 * column);
+ // y += 200;
+ //}
+ //ct.YLine = y;
+ //ct.SetText(phrase);
+ //status = ct.Go(false);
+
+
+
+ //ColumnText ct = new ColumnText(_Writer.DirectContent);
+ //ct.AddText(CreateFormatted(block.Inline, Font.HELVETICA, 0, new Color(0, 0, 0), 12));
+ //ct.Alignment = Element.ALIGN_JUSTIFIED;
+ //ct.SetSimpleColumn(10, 10, 200, 200);
+ //ct.Go();
+ }
+ }
+ private IEnumerable Render(IEnumerable blocks)
+ {
+ var phrases = new List();
+ foreach (var block in blocks)
+ {
+ var phrase = this.Render(block);
+ if(phrase != null)
+ {
+ phrases.Add(phrase);
+ }
+ if (block.IsBreakable)
+ {
+ phrases.Add(new Phrase(Chunk.NEWLINE));
+ }
+ }
+ return phrases;
+ }
+ private Phrase Render(Block block)
+ {
+ switch (block)
+ {
+ case HeadingBlock heading:
+ return Render(heading);
+
+ case ParagraphBlock paragraph:
+ return Render(paragraph);
+
+ //case QuoteBlock quote:
+ // Render(quote);
+ // break;
+
+ //case CodeBlock code:
+ // Render(code);
+ // break;
+
+ //case ListBlock list:
+ // Render(list);
+ // break;
+
+ //case ThematicBreakBlock thematicBreak:
+ // Render(thematicBreak);
+ // break;
+
+ //case HtmlBlock html:
+ // Render(html);
+ // break;
+
+ //case Markdig.Extensions.Tables.Table table:
+ // Render(table);
+ // break;
+
+ default:
+ Debug.WriteLine($"Can't render {block.GetType()} blocks.");
+ return null;
+ }
+
+ //if (queuedViews.Any())
+ //{
+ // foreach (var view in queuedViews)
+ // {
+ // this.stack.Children.Add(view);
+ // }
+ // queuedViews.Clear();
+ //}
+ }
+
+ private Phrase Render(HeadingBlock block)
+ {
+ var fonts = new iTextSharp.text.Font[] { Header1Font, Header2Font, Header3Font, Header4Font, Header5Font, Header6Font };
+ var colors = new iTextSharp.text.Color[] { new iTextSharp.text.Color(0x9B1C47), new iTextSharp.text.Color(0, 0, 0), new iTextSharp.text.Color(0, 0, 0), new iTextSharp.text.Color(0, 0, 0), new iTextSharp.text.Color(0, 0, 0), new iTextSharp.text.Color(0, 0, 0) };
+ return CreateFormatted(block.Inline, fonts[block.Level - 1], 0, colors[block.Level - 1]);
+ }
+
+ private Phrase Render(ParagraphBlock block)
+ {
+ return CreateFormatted(block.Inline, ParagraphFont, 0, new iTextSharp.text.Color(0, 0, 0));
+ //_Document.Add(CreateFormatted(block.Inline, Font.HELVETICA, 0, new Color(0, 0, 0), 20));
+ }
+
+ private Phrase CreateFormatted(ContainerInline inlines, iTextSharp.text.Font fontFamily, int fontStyle, iTextSharp.text.Color fontColor)
+ {
+ var phrase = new Phrase();
+ foreach (var inline in inlines)
+ {
+ var spans = CreateChunks(inline, fontFamily, fontStyle, fontColor);
+ if (spans != null)
+ {
+ foreach (var span in spans)
+ {
+ phrase.Add(span);
+ }
+ }
+ }
+ return phrase;
+ }
+ private Chunk[] CreateChunks(Inline inline, iTextSharp.text.Font fontFamily, int fontStyle, iTextSharp.text.Color fontColor)
+ {
+ switch (inline)
+ {
+ case LiteralInline literal:
+ return new Chunk[]
+ {
+ new Chunk()
+ {
+ Content = literal.Content.Text.Substring(literal.Content.Start, literal.Content.Length),
+ Font = new iTextSharp.text.Font(fontFamily.BaseFont, fontFamily.Size, fontStyle, fontColor)
+ }
+ };
+ case EmphasisInline emphasis:
+ var childStyle = fontStyle | (emphasis.DelimiterCount == 2 ? iTextSharp.text.Font.BOLD : iTextSharp.text.Font.ITALIC);
+ var espans = emphasis.SelectMany(x => CreateChunks(x, fontFamily, childStyle, fontColor));
+ return espans.ToArray();
+
+ case LineBreakInline breakline:
+ return new Chunk[] { Chunk.NEWLINE };
+
+ case LinkInline link:
+ case CodeInline code:
+
+ case HtmlInline html:
+
+ default:
+ return new Chunk[] { };
+ }
+ //var cb = stamper.GetOverContent(1);
+ ////ColumnText.ShowTextAligned(cb, iTextSharp.text.Element.ALIGN_LEFT, new Phrase("Galefrin"), 40, 40, 0);
+
+
+ //ColumnText ct = new ColumnText(cb);
+ //ct.SetSimpleColumn(10f, 48f, 200f, 600f);
+ //Font f = new Font();
+ //Paragraph pz = new Paragraph(new Phrase(20, "Hello World!", f));
+ //ct.AddElement(pz);
+ //ct.Go();
+ //BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, "Cp1252", BaseFont.EMBEDDED);
+ //f = new Font(bf, 13);
+ //ct = new ColumnText(cb);
+ //ct.SetSimpleColumn(10f, 48f, 200f, 700f);
+ //pz = new Paragraph("Hello World!", f);
+ //ct.AddElement(pz);
+ //ct.Go();
+
+
+
+
+ //return;
+ /*
+ var text = block.ToMarkdownString();
+ //DrawText(content, md, null, 100, 100, 300, 300, 0);
+
+ float x = 10;
+ float y = 10;
+ float width = 300;
+ float height = 300;
+ cb.SetRGBColorFill(127, 127, 127);
+ //cb.Rectangle(x, y, width, height);
+ //cb.Stroke();
+ ColumnText ct = new ColumnText(cb);
+ ct.SetSimpleColumn(x, y, x + width, y + height);
+
+ Font font = new Font(BaseFont.CreateFont());
+ //int rectWidth = 80;
+ //float maxFontSize = getMaxFontSize(BaseFont.CreateFont(), "text", rectWidth);
+ font.Size = 20;
+
+
+ var p = new Paragraph(text, font);
+ //p.Alignment = alignment;
+ ct.AddElement(p);
+ ct.Go();
+
+
+
+ //var style = this.Theme.Paragraph;
+ //var foregroundColor = isQuoted ? this.Theme.Quote.ForegroundColor : style.ForegroundColor;
+ //var label = new Label
+ //{
+ // FormattedText = CreateFormatted(block.Inline, style.FontFamily, style.Attributes, foregroundColor, style.BackgroundColor, style.FontSize),
+ //};
+ //AttachLinks(label);
+ //this.stack.Children.Add(label);
+ */
+ }
+ }
+}
diff --git a/AideDeJeu/AideDeJeu/Pdf/poker_size.pdf b/AideDeJeu/AideDeJeu/Pdf/poker_size.pdf
new file mode 100644
index 00000000..e5a7b58e
--- /dev/null
+++ b/AideDeJeu/AideDeJeu/Pdf/poker_size.pdf
@@ -0,0 +1,1045 @@
+%PDF-1.4
%
+1 0 obj
<>
endobj
2 0 obj
<>stream
+
+
+
+
+ application/pdf
+
+
+ poker-size
+
+
+
+
+ Adobe Illustrator CS6 (Macintosh)
+ 2019-04-03T12:57:47+08:00
+ 2019-04-03T12:57:47+08:00
+ 2019-04-03T12:57:47+08:00
+
+
+
+ 188
+ 256
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAC8AwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A6rnn7W7FVpkjBoWAPzGT
GOR6FiZx72vVi/nX7xj4Uu4r4ke8O9WL+dfvGPhS7iviR7w71Yv51+8Y+FLuK+JHvDvVi/nX7xj4
Uu4r4ke8O9WL+dfvGPhS7iviR7w71Yv51+8Y+FLuK+JHvDvVi/nX7xj4Uu4r4ke8O9WL+dfvGPhS
7iviR7w71Yv51+8Y+FLuK+JHvDvVi/nX7xj4Uu4r4ke8O9WL+dfvGPhS7iviR7w71Yv51+8Y+FLu
K+JHvDvVi/nX7xj4Uu4r4ke8O9WL+dfvGPhS7iviR7w71Yv51+8Y+FLuK+JHvDvVi/nX7xj4Uu4r
4ke8O9WL+dfvGPhS7iviR7w71Yv51+8Y+FLuK+JHvC4MCKg1HiMiQRzZAg8m8Cqv/Hr/ALP+GWfw
fFKllaE68seWItVi/SOo8msmYi1tQSokCmnqSUoSCR8K9Kbmtdu00Gghp4AkA5SLJP8AD5Dz7zzv
Yeevx4zqSZSJ8K9hy4q/il5dw5VubvaQx6X5UF2bBNNtRPGvIoLZeIGx+3w49/HNidTkJ+qXzLm/
yVhEBLw4cPuj93NSWHye1o12NPg9BX9Mt9TPLlQH7Pp8u/WmR/NTq+KXzLaexsfFw+Hjv3QVGsfK
azQQnTrf1LhQ0Q+qChB6VPCi/Th/Mz/nS+ZYDsnFRPhwqPPaLS2nlJjcgafb/wCiV9f/AESlKEg0
/d/F0/Zrj+Zn/Ol8yk9kYhX7uHq5bR/A+LTWvlFYIZzp9v6dweMR+qVJNabj06r9OP5mf86XzKjs
jGSR4cLHlFVXTPKzXjWY062+sKvIr9VXjTb9vhx7+OP5md1xS+ZYnsvDw8fhw4fdH7uagsPk9rRr
safB6Cv6Zb6meXKgP2fT5d+tMH5qdXxS+ZbD2Nj4uHw8d+6Co1j5TWaCE6db+pcKGiH1QUIPSp4U
X6cP5mf86XzLAdk4qJ8OFR57RaW08pMbkDT7f/RK+v8A6JSlCQafu/i6fs1x/Mz/AJ0vmUnsjEK/
dw9XLaP4HxWm28oCCGc6fb+lcMViP1PckGm6+nVd/EY/mp/zpfMp/kfHZHhwseUVZdM8rNeNZjTr
b6wq8iv1VeNNv2+HHv44/mZ3XFL5lgey8PDx+HDh90fu5qK2/k9rN7wafb/V0bgzfU6Ny2/YMfI9
fDH81Or4pfMsz2PjEuHw8d+6P9i9rHyms0EJ0639S4UNEPqgoQelTwov04/mZ/zpfMsR2Tionw4V
HntFpbTykxuQNPt/9Er6/wDolKUJBp+7+Lp+zXH8zP8AnS+ZSeyMQr93D1cto/gfFabbygIIZzp9
v6VwxWI/U9yQabr6dV38Rj+an/Ol8yn+R8dkeHCx5RVl0zys141mNOtvrCryK/VV402/b4ce/jj+
ZndcUvmWB7Lw8PH4cOH3R+7morb+T2s3vBp9v9XRuDN9To3Lb9gx8j18MfzU6vil8yzPY+MS4fDx
37o/2L2sfKazQQnTrf1LhQ0Q+qChB6VPCi/Tj+Zn/Ol8yxHZOKifDhUee0WltPKTG5A0+3/0Svr/
AOiUpQkGn7v4un7NcfzM/wCdL5lJ7IxCv3cPVy2j+B8VCfyv5a1ayFxp8SWjuCYbu1QRGoNPjQBQ
4BFCGH3ZGcxljw5Bxx8/0HmPg4+fsqEJERHhZB1jt8wNpD3sMaO4hnntLlQt1bOY5gOhNAVZf8ll
IYZx3aeh/L5KBuEhcT5frB2Rpc5mCJCpxNS/WPIiiFb/AI9f9n/DML+D4uUoSEiNiOoB/Vgxi5D3
sJn0lm0UNo3ke1tp5Xt7aayt4Hkh2cLKix/CRWhPKlc9B1e85X3n72fYlxhiMACYxiQDy2jbIAAA
ABQDoMrZuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KoORU/S9u31gq5t5h9U34yAP
F+8+cdaf7PI9W+JPhEV/EN+7aW3x/QwrzYqjzLcEChaCAt7mrj9QzT+0H0Yv8/8A3rqcf+MZPdD/
AHyB/wCPX/Z/wznf4Pi5iHl/un/1T+rBi+oe9hk+k+5nlkzr5T08pbi6b6vafuGHIH7FTT/J+19G
eg6n65f1j97LskDwsdnh9A3/AM39PJO8rbHYq7FXYqlGjeb/ACzrV7d2Ol6jDdXliSLq3UkSIA7R
luLAErzRl5DaopiqOttSsbq6vLSCUPcWDpFdxgEFHkjWVQaihqjqdsVROKqIvLc3jWYf/SVjExjo
fsMxUGtKdVOKq2KuxVDahqVjp1ulxeyiGF5oLZHIJrLdTJbwpsD9uWVV+nFVWO4t5JJYo5UeWAhZ
kVgWRmUMAwG6kqQd+2KqmKoTVdX07SbP67qMwt7b1YYPUYEj1LmVIIlooJ+KWRV+nFVeS4t45Iop
JUSWclYUZgGdlUsQoO7EKCdu2KqmKuxV2KuxVCStH+l7ZTblpDb3BW67IA8NY/8AnpUH/Y5Hq3xB
8KW+3FHbv2lv8P0sK82/8pLP/wAw8H65M0/tB9GL/P8A966nH/jE/wCrD/fID/j1/wBn/DOd/g+L
mIeX+6f/AFT+rBi+oe9hk+k+5nlkrt5T08JcC1b6vafv2PED7FRX/K+z9Oeg6n65f1j97Lskjwsd
ji9A2/zf0c07ytsdirsVdirx3XPyJludEBtZYLvXG1GS5u4tQnujY3Fi11cXC2DLGaxRcrlZW4J8
UiitR0VSyP8AIPzlFYTwHzFHczXWnx2Ejymb4CltbxNLE1GYNJ9WaBy3L9y3iGV1WXfl7+Vj+Wr0
39wsbTQ6bHZadb/WXnW2f63e3EwjcQWiBGS6iVeMK8QpUAL1VY5J+TvnF9FOnyfomVJVe3lhkklZ
0t3ummLrdNbMXuzGfT+stCH35Grjkyqc+S/yn1bQfMeu6o92sLapb3MFtPb3DSGFJ3RoIjC1vEzf
U1T04pGnPwjZU5HFUjX8kfM62vlSGzk0zST5dvEvLp7VpJpbueOWBnu5LiaD1+c6RyK8XKgqtXcC
mKug/IfW7bV/L91HcWM8Gmrpb3Ek73RmhnsNRW8uXteqN9ajUIfU+yERRsBxVR/nz8lr/wAw6tql
xbCzWx1G+tr+aISG1mm9Oye0kjlk+rXS/A5WaNuDfFX7Jo+KqGp/kJPfW12z3SHUpYL8W13JcXLO
ly8cI02ZnUJU20sbvyC/tEgfEcVS63/JvzfqWs6nqsj2mmRS6pdypze5e4uol8yR6hCblDWJUS3t
f3Hp9fU3pucVXaV+Qvmy1jle61HT57+S9uLiK8SMRfV/rNhLZtc20aQKkUyyGKYIBuyfFIWHPFWf
/lN5Dm8l+XZtMmIDy3HrFI7j6xFX0o4y6f6PZ+nzMfJl4nfcsxJOKs1xV2KuxVDSLc/pO3ZZVFqI
JhLAT8bSF4vTcCnRAHB3/aGDq2xMfDO3qsb+VSsfHb5MI82/8pLP/wAw8H65M03tB9GL/P8A966v
H/jE/wCrD/fID/j1/wBn/DOd/g+LmIeX+6f/AFT+rBi+oe9hk+k+5nVs1qvlDTzdRNND9Xs6xqSC
SfT4nYjo1DnoOq+uX9Y/ez7HEjjx8Jo8A/3Ke5WzdiqG1RrhdMu2tlme5EMhhS29ETlwh4iL6xSD
mT9n1Pgr9rbFXnNvD+cepQeXLeS6vdDmEdxHr91JDo045tH6kMpZJJuZjYekFihQOSztxAClVG+Y
7v8ANybSPNdtpdr9WvYvSXyle2yWRlmNXMjXC3VzJCFqqqaoCFPMKWJjjVQvmNfzZkv/ADJd6beX
mnaXZ2xn0iD6rp1w0s1vC6mGBENzNKJ3HqhpBGw+FAm7EKsW1vTf+cgLjyvruiWltKLy4vbm+03W
7e9WCYxPqVu8ECtJeM8I+rG4rGFVAgRft8gVU58xL+edt5q1S48v6el9pUF895pcd1dJFHKjaSYB
AaXPIxfWhy9No46PRuRDFkVUo9T/AOcidThsrbVdBs9NR9QtmvJ9Omj9RbaG6tZHqzXo4rJF6/Pi
HNBw4HlzxVNNOH5u33mibUNdtGs9JsNO1FLK00ySFJJbuR4fQost3PBMwjR/RkuERa15xpXFVN0/
O680PS/qLPp+uwWtz+kRqjab9VmnYIsCsbOO6k5J67MHQIjNDRkCyCiqGu1/PyLQY7KOZptQudMh
uJtUgt9NkuLXU2pztI0muLa2kiHE8pGTavw86/u1UX5uX88buK4u/KnDTrhbGNTp1/JZPE116rGV
7V0hmfkEgUL67KjLNUhGQjFVXV9Q/ODSba7t9AtR5qvYb20QzahHBYp6EkLyXPpFXtUdU/dKrjl8
bMCDxoqqB1F/z0ew0BoRMt6tsB5lS0j0qNGf60gdrQ3M1x/pAt1coHpC1QW4GseKpPpP/QyhurMa
kLgD0f8ASCn6ENt9c9c8OdP3/wBT+rcfU4fvvU5cPhpirM/yztvzXgnu289XSXMU9ray2kafVSYL
gmQXMJa3ig5U4ow2IAbiHcgsVWe4q7FUDN9U/Tlpy5/XPqtz6NKcPS9SD1OXvy4U+nImrciPF4Mq
+nijfvqdfp+xhvm3/lJZ/wDmHg/XJmn9oPoxf5/+9dRj/wAYn/Vh/vkB/wAev+z/AIZzv8HxcxDy
/wB0/wDqn9WDF9Q97DJ9J9z0DTPrn+FtO+p8frH1a148unHinP8A4Wueg6m+OVfzj969l8Pg4+P6
eAf7nb7U3ytudirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVQ0n1r9JQcYkNr6M3qzm
nNZOUXpou9aMvMnb9kfSOraOHwzv6rG3l6r+W3zLCPNv/KSz/wDMPB+uTNN7QfRi/wA//eurx/4x
P+rD/fID/j1/2f8ADOd/g+LmIeX+6f8A1T+rBi+oe9hk+k+5nVuLY+T9PFzI0UP1ezq6btX93xHf
q1BnoGq+uX9Y/ez7H4vDx8Is+GP9ynuQZqJvbMQrOZ4xA7BEl5rxZmbioDVoSW2HvgsNnhSuqNqp
dAyoWAZq8VJ3NOtBhYUebeKFiTQuaI6saBqAgniagHbsaHG2RiRzC/Fi7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FUJKsf6XtmNwVkFvcBbXs4Lw1k/550A/2WR6t8SfClttxR37tpbfH9DCvNv8Ayks/
/MPB+uTNP7QfRi/z/wDeupx/4xP+rD/fID/j1/2f8M53+D4uYh5f7p/9U/qwYvqHvYZPpPuZ1BP6
Hk6xmMAuQltaloSpeoolW4gEniPi+jPQNUfXL3n72fY8OLHjF8PoG/8Am/p5Klz5h0aa2lhMjkSo
yUe2uGX4hT4lCrUeIrlJmHYw0eWMga5f0o/rYh+gdLZohLrt2YYY41hjS0mUxyxKwSWNirmqczwL
cm8WbrmP4Y73d/m8gBrFCyTfrG4PMH31vVDuARF3pml3VvYLJrN0LrTreS3trkW1wT+/VkmduQZi
WjIUfFtSu+SMQa35NWPPkhKVY48M5AkcUem4Hdz8t18dnZw6vb3sOu3i2kFw04smtrhwUZAgi5kf
ZUCg26dakVx4d7ssZZJSxGBxQ4jGuLij33def3+WyyTTNKlkgaTVrhVto0ihSG2uoqemzsjtQ/Ew
aT5bDbHgHeyGfIAQMcfUSTconnVj7E88u3un6fbmybULm+eWd3jmngnD/vWqFZivHqeooPYZZAgb
Xbga3FPJLj4IwqI2Eo9Pj+s+bJMtdU7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqhJWj/S9spty0ht7g
rddkAeGsf/PSoP8Ascj1b4g+FLfbijt37S3+H6WFebf+Uln/AOYeD9cmaf2g+jF/n/711OP/ABif
9WH++QH/AB6/7P8AhnO/wfFzEPL/AHT/AOqf1YMX1D3sMn0n3M8sldvKenhLgWrfV7T9+x4gfYqK
/wCV9n6c9B1P1y/rH72XZJHhY7HF6Bt/m/o5qPnTRNf1azsI9F1D9HTW14lxcnnLGJ4FikVrdmhK
uFkZ1qQfh+0PiAytsY9b6P8AnPHqGlC51+yns1lhOptDbxpyjjaUzDi0ZY+spQDgylfH4S0iqCv9
H/Nm5t7r6l5wsoNPBmhS6Hos6srzQlHf6tQOsnAsQfhKmOlf3mKplrth+Zsd/c3kXmSx07Rl9UQR
zpFUNNHHHCJJHgp8E3Ir7sKhh8OKpLq1r5p/Q2mWa/mDZWYtNPtoryYzxJLNMkDwTXJuXDtvKfUq
VoxAFEIJdVM7WPzpdG6MnnGwuLWO39NDbejGVuXit/TaZlQkDlFO44sOXPpx+FVWrfy/+c0UlvFJ
5oguI/SvWuLl4LavqOAlooVLaPZPtVp9rly5rxTFVGfR/wA17pZ30XzlZT3S0tbwmOEw288XriRY
4lglKvSaF+Mjkhlo3JdsVRsui/m0jxQwa5CwM8ry3jpCw9BYIkiVovQWjtIrsfToKnl0HAqr9H0D
81YL/TrjU/MUF1GBENVhWONYyI0IcQoLdW/esQxYuCO21AFU38p6L5psrq7u/MOrDUp7iKGKNYgY
4U9J5mZlhACBmEqgt1PEeGKskxV2KuxV2KuxV2KuxV2KoaRbn9J27LKotRBMJYCfjaQvF6bgU6IA
4O/7QwdW2Jj4Z29VjfyqVj47fJhHm3/lJZ/+YeD9cmab2g+jF/n/AO9dXj/xif8AVh/vkB/x6/7P
+Gc7/B8XMQ8v90/+qf1YMX1D3sMn0n3M6tzbDyfp5uY2lh+r2dUTZq/u+J7dGoc9A1X1y/rH72fY
/F4ePhNHwx/uUs/M6PRW0iyfVpLgQW10btILR/SmmNrazzvGsxlt0iHpRuzM7haAr1IOQZsBe5/L
DQPMkNjcnWf0jp2knUNPs5WQRtDNZy+s6yBkFpMkFs200kKpT93tiqy00f8AK7Rr9/Un1m0Fpa2u
oPLJIkkXC5ttQukYQ2xaWNkSK45RpGnxUKg15YqlmkX/AOSWkeWpLfVNbvmtLi3SebW3sbmzhmjb
UPWiijVoWasctuVUNWo9ShJ9TiqjQfyJsrG5EGuajbWunz81EdvcH0JbO7UUQNaNzEVxfIqq/IKD
RaLyxVA6R5r/ACCPkhrWyvLy6sdOeK5k0K6SAXEbvBJG8DPdKkJpEXMv740p9rsVV6+ZfydZbzR7
m81yG0s76WK6vJWS/X6zbWo09T+6N5L++icsnwdV+IIOClVA6J5m/J66toNLsn8xQy+aTa6cZjPb
SSh7jUJ5BOzLLKiss6NzlUHr8NXElFU7j8yfkXpnmGLU113VLKa09K+AeG+W3cW1tIC3F7csFkhY
yNx4rKWqvIscVZwfzw/LpdIl1eS+mWxgvW06eQW08pWYI0ikLEkhkR0UMDHy+0K0+Kiqh5l/PHyr
5e8wvoF7Z30t8pkEZt1tpI3KW6XCgN644mRZVChwvWrUUhsVSw/85IeS0v7C0m07VIhqYaSynKWj
LJAs72/rCOO5efi0sTgD0+e32elVXqdrcwXVtFdW7iW3nRZYZF6MjjkrD2IOKqmKuxV2KuxV2Kux
VAzfVP05acuf1z6rc+jSnD0vUg9Tl78uFPpyJq3IjxeDKvp4o376nX6fsYb5t/5SWf8A5h4P1yZp
/aD6MX+f/vXUY/8AGJ/1Yf75Af8AHr/s/wCGc7/B8XMQ8v8AdP8A6p/VgxfUPewyfSfc9A0z65/h
bTvqfH6x9WtePLpx4pz/AOFrnoOpvjlX84/evZfD4OPj+ngH+52+1W1ry7oeuQwwazYw6hbwSGWO
3uFEkRZonhPONvgccJWFGBHfqBlbcgH/AC98gvK8z+WtKaZ1ZHkNjbFmVxxZSeFSGGxxVFR+UfKk
ZnaPRbBGujyuittCDK3B0rJRfiPCZ137Mw7nFVAeQfIot3th5c0sW0riWWEWVvwaQEkOy8KFgXbf
3OKqSfl15BV52/w7pzm5ma4lElrFIvqv6ZZlV1YJyaBHYLQFxyPxVOKrovy98ixGf09AsEjuVZLi
3FvGIH5ji5aGnpcnX4XbjyZQASQBiqpc+RPI90jJc+XtMnRy5dZbO3cEyMjuSGQ15PEjHxKg9hiq
rH5O8oRtC0eh6ejWzxSW7LawgxvAzvCyUX4TG00jIR9ksxHU4qgLT8sfy6tYEgh8s6XwRGj5PaQy
OVkXi/OR1Z3LjZixJbviqN/wX5OEc0Y0HTvTuJRcTp9UgpJMF4iRxw+J+JpyO9MVauPJPky5lkmu
dB06eaYymWSS0gdnM8YilLFkJPqRqEavVdjtiq0eRfJiRXccOh2NuL4MLt7e3jgkkLuJGYyRKj8v
UUPyrXkA3UA4qnFvbw21vFbwII4IUWOKNdgqKKKo9gBiqpirsVdirsVdirsVQ0jXP6Tt1WJTamCY
yzkfGsgeL00Br0cFydv2Rg6tsRHwzv6rG3lUrPw2+bCPNv8Ayks//MPB+uTNN7QfRi/z/wDeurx/
4xP+rD/fID/j1/2f8M53+D4uYh5f7p/9U/qwYvqHvYZPpPuZ1bLat5Q08XUrQw/V7Osigkgj0+I2
B6tQZ6Dqvrl/WP3s+xzIY8fCLPAP9ymOry3kWmzvZqWuABx4rzYKWAdlXfkyrUqvc7YcIiZDi5NW
qlOOMmH1fi6HUgbgdSk76/qsUsdrbWFxdKHj5XtxFLHyiaSJSxVIVAYeq+21AnKlMyRp4EWZAeQI
57+fkPnTrzrssSIxhKW49UhIbXHehAb7nbb6bQkPmTzTDcagJtGuLqBWmnszT0z6CHhHGtFbk7Fe
XFqMAe/w1slpsJEamAdgff1/HL7XHh2hqoyneKUo+ox6enkByNk86NGj12RCeZdYuYZWOlXVibeS
yZmMckpkjlkX11VfTBPprWvEE/LIHTQiR6hK+LrXLl16t0e0c0wf3c4cJx9CbBPqocPQd32LH816
7FHcsPL91Osc0iQGrBnRZFAcr6K8VKyfDTkSAa9K4RpMZI9cRsPu9/z5MD2nniJHwZyqRA8xY3+n
Yb7c+RvvZVmvd67FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUJKsf6XtmNwVkFvcBbXs4Lw1k/550A
/wBlkerfEnwpbbcUd+7aW3x/Qwrzb/yks/8AzDwfrkzT+0H0Yv8AP/3rqcf+MT/qw/3yA/49f9n/
AAznf4Pi5iHl/un/ANU/qwYvqHvYZPpPuZXa2Wt/4XsXiuxcKYLXjam3jYUPDxrXgPi+jPSNRkhx
y9F79/m4nZeDMceP97wDgH8I/m8v0K+t6hLodtHc6pr31eGWT0o2+qB6uEaUikYY7JGzE+AyHiY/
5v2ln4Gf/VP9iEvPnPQRCZ/8a2JgUIxmUW7IBIzoDyDFdjE/L+UKS1AMfEx/zftK+Bn/ANU/2IRs
usQx31pYN5otze30slva26xwu7SQwm4lWik04RDkxOwqP5hV8TH/ADftK+Bn/wBU/wBiEDpnnTQd
TmENl5zspZmlaGKIrAjysjcSYVcqZUr0dKq3YnHxMf8AN+0r4Gf/AFT/AGIRK+ZNMdeUfnCxmBeK
MCL6tIec684lojMaunxL4rv0x8TH/N+0r4Gf/VP9iERZa1Z3F0kUHmuyupA8YaCI2zMxlBaNaK5N
ZFU8fHtgOSFfT9rKODMDvk/2IRUXnbyjLeTWkesWrTQCMyn1V9MGUzBEEtfTL/6LLVA3IcSSMocx
FR+ZPLsklvFHqlm8t2aWqLPEWlPD1aRgN8X7v49v2d+mKoZfO3lF7X60msWjQVIVllUluLSJVVB5
MCYZKEDcKSNhiq6185+T7tLmS113T7hLJfUvHiuoHEKVK8pSrngOQpVsVQ1j+YnkW+huJrfXbL07
SeS1uGkmSLjNEwR1/eFK7utGGxqKE1xVG3HmvyxbTtbz6tZx3Cyx27wNPGJBNM3COMpy5BnYEAYq
mmKuxV2KuxV2KuxV2KoSVo/0vbKbctIbe4K3XZAHhrH/AM9Kg/7HI9W+IPhS324o7d+0t/h+lhXm
3/lJZ/8AmHg/XJmn9oPoxf5/+9dTj/xif9WH++QH/Hr/ALP+Gc7/AAfFzEPL/dP/AKp/VgxfUPew
yfSfczyyV28p6eEuBat9XtP37HiB9ior/lfZ+nPQdT9cv6x+9l2SR4WOxxegbf5v6OaVfmfrXl7S
NBju9btYbqNHna2W6lMECyJY3DsZJFWRl5QrJGvFGPJhQdxW2PLH89flXpHmO6to/L1ul9YW8V5Z
zpqJkh52Gm+vW54eoqiIcreMxLO5dW5IoZC6qY6VrH5ZafeahLB5Wgjj0Xhzisrlp5Xa70aeecSQ
sI7YkLby2wDylufNmCcquqlP/KxvyVttNm1KbylfSaR/o80speG8ma8FzMFhnhF3MQ4dZH+Nt9+Q
AKc1VQ+dvyHsrSQr5XvfS0uaaCGDlE3KS2uILRlVGvKP8d4OIb9nl8iqpaF+av5d3ul2l1ovk24h
8xaVdJHp9hPLJBbNqV0IxPDHeRib1HJWMVki+N2Tpy5Yqv1Xz/8Alxo93eaZqHlWOLSNL1OdbmOz
njlLy6fMbeD1IrpLeHjW5DEJNSNWiQk8mjRVUXz/AOVNF1dLceS4YrtJvqE7fXppULSNc20jBDAz
TNceiY43ZKysW9QosZfFXQeavydjbTvrnlWRLy50mbV7l47gTxfVoo7tmPqyTRPcM/pycJJI1BVh
8QoFxVCeTfPH5Pz6Xf6ZYaBqVzbNb3sM13fSRpLcO0Et/cxMYJOAjMenIiNDUbBQoUVKqZ635s/L
PTrDRtesfKayXJvrh7aG/uGtZ4JLezS+W7/di8j9Fo0gMjFhxUryUkFQqkZ/OLy5JrdxJbeSgL+L
UjapF+k7tLlpFme6SVbS3tpm4LcJWRVB4PJQBjIQVXuPkPzqnmzTLu6NhLptzYXktjd2kzK5WSIK
2zLSo4uK7dajcUJVZLirsVdirsVdirsVQ0n1r9JQcZUFr6M3qwGnNpOUXpuu1aKvMHf9ofQOraOH
wzt6rG/l6r+e3yLCPNv/ACks/wDzDwfrkzTe0H0Yv8//AHrq8f8AjE/6sP8AfID/AI9f9n/DOd/g
+LmIeX+6f/VP6sGL6h72GT6T7mdW5th5P083MbSw/V7OqJs1f3fE9ujUOegar65f1j97Psfi8PHw
mj4Y/wBynMttbzPDJLEkklu5kt3dQxjco0ZZCfstwdlqOxI75BmqYq7FXYqpxW1vC80kUSRyXDiS
4dFCmRwixhnI+03BFWp7ADtirha2wuWuhEguXRYnnCj1DGpLKhbrxBYkD3OKqmKuxVTW2t0uJLhY
kW4lVUlmCgOyx8iis3UhebU8KnFVTFXYq7FVOK2t4XmkiiSOS4cSXDooUyOEWMM5H2m4Iq1PYAds
VVMVdirsVdirsVdiqBm+qfpy05c/rn1W59GlOHpepB6nL35cKfTkTVuRHi8GVfTxRv31Ov0/Yw3z
b/yks/8AzDwfrkzT+0H0Yv8AP/3rqMf+MT/qw/3yA/49f9n/AAznf4Pi5iHl/un/ANU/qwYvqHvY
ZPpPuegaZ9c/wtp31Pj9Y+rWvHl048U5/wDC1z0HU3xyr+cfvXsvh8HHx/TwD/c7famssiRRvI5o
iKWY+wFTlMpCIJPINyhb6jaTgGOQUb7PL4a9dhX/AFTlWPUQnyP4/AVc1/aKSPUDUjaY8SG/drT4
tvnthOeA69L+CrjeWolaJpUWVeqFgG+zy6H23yXjQurF/gqqqysoZSCpFQRuCDkwbV2FXYq7FXYq
7FXYq7FXYq7FXYq7FXYq7FXYqhpGuf0nbqsSm1MExlnI+NZA8XpoDXo4Lk7fsjB1bYiPhnf1WNvK
pWfht82Eebf+Uln/AOYeD9cmab2g+jF/n/711eP/ABif9WH++QH/AB6/7P8AhnO/wfFzFCT+7bts
d/owY/qHvYT+ksxiuEHlSxjuIJ1t1htB9YiMW5Bj4UBflRmp1Gdxqc8jOVwkN/6Hf/WbOyeIQx8P
qPB/vfOk2ub4+iy3FnKkUg4Es8Cg8tqVMvfKpZJSBBhKj/V/4pKGFlbBVX9FzkLUDk8J2apPWXvX
McYY/wCpy+cf+KVuOKAGRE0+epjMUiiSH7LgVqPV6niN8kMYHLHPcVzj1/zlbNtGzs76dcOz05ln
hNaKU/374HAcYJs45G/OPdX85VaC+4QJ6VnL6I+BWD25Fa8aV9Xry2+eXxySiKEJf7H/AIpVSTUW
iXnPayQxAgNLI8CqtTQVPq+JyYzSv6Jf7H/ikohLi3klkhSVGmh4+tGrAsnIVXkBuKjpXL1XJJHI
paNg6glSVII5KSrDbuCKHFXPJGgBdgoYhV5ECrHYAV7nFXGSMMVLDkKErUVAY0X7yNsVXYq7FXYq
7FXYq7FXYq7FXYqhJVj/AEvbMbgrILe4C2vZwXhrJ/zzoB/ssj1b4k+FLbbijv3bS2+P6GFebf8A
lJZ/+YeD9cmaf2g+jF/n/wC9dTj/AMYn/Vh/vkB/x6/7P+Gc7/B8XMQ8v90/+qf1YMX1D3sMn0n3
M8smdfKenlLcXTfV7T9ww5A/Yqaf5P2voz0HU/XL+sfvZdkgeFjs8PoG/wDm/p5IXz5BoMunWI1r
UBpsCXsT287HihmVX4o7bUUryruPnlbYwaHyZ5DsnskuPPV7J9ZZLukuohDfRyiJF9RoyhlVktOI
ParHqQQq09l5M9F4IvPN44kupL+/vkuudy8UdgZqJJEP7lPUik5EEfCE7nFUd5d0zyZczS3Np53v
bkvaXFskE16ivB9Uia3uLhVIVgyetzLOCBVT0piqTWGg/l/HYeta+frqC3tbtl4T3iRxrcWEoR0E
bhVQGQqxKqGNa8uJpiqY2Hkzyp/h+90TWfOcuoXBjW41SUXgX01s7mO49SNWaT0VideHIfzHuBRV
C6ZpXkaDW7rzTN5zmkgvZ5otSluJkgiu3th9V4pwEcbxpLOpBXbkoC/DyGKr7Xyt+Xek2MCp52uo
LeOOeNBFfLGHn9RL2eVFHw+qIjGtFGyEGlWJKqXrpvknX9ctU/x/cTWBs4RbWklwUkMnqxLbPHKP
TQOtFRtvUZ+u4NVU2ubL8t9Y1HWrpPNb6feTuVu4/rC2zRKk/p14OVPH6z9mTrXZTiqK1jSPKNw0
15d+fLq3t9UtrdbEx3sNuii3ZYWniMKxB/WKcJG6Uagp8NFU/wDKuv8Ak/S9NSzXzXDqpnmmuIp7
m5haUrcXFOICcAEWSUIvwgdBiqNg/MnyDPA88ev2PpInqMxnRf3Zf0xIKkVRmNAw2OKskxV2KuxV
2KuxV2KoSVo/0vbKbctIbe4K3XZAHhrH/wA9Kg/7HI9W+IPhS324o7d+0t/h+lhXm3/lJZ/+YeD9
cmaf2g+jF/n/AO9dTj/xif8AVh/vkB/x6/7P+Gc7/B8XMQ8v90/+qf1YMX1D3sMn0n3M8sldvKen
hLgWrfV7T9+x4gfYqK/5X2fpz0HU/XL+sfvZdkkeFjscXoG3+b+jmlH5p6lHZ6BDE2mLqkl5LLHb
27W0t9+9hs57lALWEpJMXMHp8A67MSTQEGtsYHq51Zb5NTXyHBren2EcNoiDTrmC4jW1sJ7uWJPr
DGSeM3XopFKttvV04s4XkqoaI+u3kl1PpvkaC1uBDfM1hc6be2TT2/6KhWGAX1xJDEZDeStbkvHW
RA0nGOh5KomC+vbB+Uv5amU3NvaR3l0qXYq2pWkBuUliS3vZJI4WR1kNWKkKvEks2KpJc+Zbixu7
J9Z/KWVprKzl1C410G6FrDKEkvac3t5GVmcD1Ob/AAOSKtSrKqus+adc0udE0X8oprm39Oa31JEj
vCZbVrmeL0Ia20aDk8MdzyPIKHai8m5FVU1XVdecWd9p3ke1GmWdtf3Ogyw6fd6k0cvqxhVX6nLG
OFzc+oy7D92yvQBXxVF6HHdXSaLoknkiOS1t7l9RbUrvTb+BQLjWzE/CCdQbef0ljuiXnYhV+xx3
VVryqlxNrOkJqPlKO2pMWu5Bo2p2wicWQvJZEuZZJIYwt6qxqzV5gsoAALOqktp51vLmyu9Uj/Jq
5u/rUEd3a+gLs+s0s6Mo9SS0UHeR5vUUVG3w0+PFU3T19R0fy7qV7+WcjX8X163vLILdQGOKzlEo
5B4XLpdc5JEikB5uQC/U4qk+rx+YtO1fXdJ03yRDdaVoqR22h3c2h6nLNeCHjIDJPFOFm4XEaxo9
B9r1FoisCqgLs+bH0y/nvvIVvHoumRQvPKljeadIbf8AcyXEKST3EsgEZR43dYirIpeqrxWRV9PA
1ANKV3oeuKuxV2KuxV2KuxVDSfWv0lBxlQWvozerAac2k5Rem67Voq8wd/2h9A6to4fDO3qsb+Xq
v57fIsI82/8AKSz/APMPB+uTNN7QfRi/z/8Aeurx/wCMT/qw/wB8gP8Aj1/2f8M53+D4uYh5f7p/
9U/qwYvqHvYZPpPuZ1bm2Hk/TzcxtLD9Xs6omzV/d8T26NQ56Bqvrl/WP3s+x+Lw8fCaPhj/AHKe
5Bm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqgZvqn6ctOXP659VufRpTh6XqQepy
9+XCn05E1bkR4vBlX08Ub99Tr9P2MN82/wDKSz/8w8H65M0/tB9GL/P/AN66jH/jE/6sP98gP+PX
/Z/wznf4Pi5iHl/un/1T+rBi+oe9hk+k+56Bpn1z/C2nfU+P1j6ta8eXTjxTn/wtc9B1N8cq/nH7
17L4fBx8f08A/wBzt9qb5W3OxV2KsV1DUL1L2dEndVV2AAY0ArnBa/X5455gTkAJHq5kIChsh/0n
qH/LRJ/wRzE/lLUfz5fNlwR7nfpPUP8Alok/4I4/ylqP58vmvBHud+k9Q/5aJP8Agjj/AClqP58v
mvBHuY/qv5l2ml65a6PeXFxHPdypAk1V9JWkjkkUuxcMF/dca0+0y+NcysefVzgZicqHmfJiREHk
x+P/AJyB0BmgMjahDDPDJMkzrH0iFwShjWVpuRFm/RKdASCcyTj1u/7w7f0j5fD+IdWNw7kXqP50
W+mSGDUbXU7W8R41ls3+rmVVm4+m44TssgctxCxMz1BHHIQOrnvHLY77l+rb40PNJ4R0Vm/N5Ibh
YL211KyZtRj0qspt3AnkRXLN6M8tI0Eic36DkPekePVEWMt+ni5y5fEDdaj3IeT879OFteTW8eo3
R0+PUZr6GMQrJFHpTxLO7CWaMEMJ1aPiTyHgRTJgaywDkri4a3P8V1yHluvp7mZ2usapNbpLIZ7Z
3FWgldS6HwYxtIn3McwJdo6gGvEkfiWfBHuVP0nqH/LRJ/wRyP8AKWo/ny+a8Ee536T1D/lok/4I
4/ylqP58vmvBHud+k9Q/5aJP+COP8paj+fL5rwR7mR6HNLLYB5XLvyYcmNTnZdi5p5NOJSJJs83F
ygAo/Ns1uxVDSNc/pO3VYlNqYJjLOR8ayB4vTQGvRwXJ2/ZGDq2xEfDO/qsbeVSs/Db5sI82/wDK
Sz/8w8H65M03tB9GL/P/AN66vH/jE/6sP98gP+PX/Z/wznf4Pi5iHl/un/1T+rBi+oe9hk+k+5nV
stq3lDTxdStDD9Xs6yKCSCPT4jYHq1BnoOq+uX9Y/ez7HMhjx8Is8A/3Ke5WzdirsVYbqf8Ax0Lj
/jI368837S/xif8AWLnQ+kJZcarpltdwWdxeQQ3d1X6rbSSIkkvEVb00JDNTvTMWOORBIBoMrXxX
9jKFMdxG4Z5I1ow3eFmWRR4lGRgflgMCOi2s/Sumes0H1uH1kIVo/UXkGPKi0r1/dtt7HD4cquit
sR81eR7bzHeXU00tnJbyKsJWQSl0aKh+1HKgDq61FOmZ2n1ZxAAcV/D9TCUbQkXki3s49WiabSxH
qUU634kjlHGGWaeeUK3rKY1D3L9CKbeGTOrMuE+v01XLuAHTfkF4VOX8uZrlp4tQv7XUL65jPO6u
Vla4CABY3QiRQphK1RlGzVbqcI1oFGIMQOgqvweq8C648jW2uvdXk1xpl8LtrpS/pyusc0npwTSQ
n1v3cqG0VQ67qQad8Y6s46AEhVd3mRe3LdeG3T/l6kUV681zYRfWbC802+mKzIWtr2RribmfWAqr
FirfsivbEa2yKEtpRkOXMbDovAz61mb6vF9YmieZh8TRfCjEmnwglj+OayQ325M15ubccayp8VOP
xDevSnzpg4SqG0/W9H1JZG0+9gu1iNJGhkVwpqV3Kk91OTninD6gQoKNytLKfL3/ABzh/rNnddgf
4sPeXDzfUmWbtqdiqElWP9L2zG4KyC3uAtr2cF4ayf8APOgH+yyPVviT4UttuKO/dtLb4/oYV5t/
5SWf/mHg/XJmn9oPoxf5/wDvXU4/8Yn/AFYf75Af8ev+z/hnO/wfFzEPL/dP/qn9WDF9Q97DJ9J9
zPLJnXynp5S3F031e0/cMOQP2Kmn+T9r6M9B1P1y/rH72XZIHhY7PD6Bv/m/p5J3lbY7FXYqwXzH
qFrp8l5eXT8IIpPjfw5OFH4nPOtfAy1MwOfEXOgfSGD6q35b+b7lVurr63NbLNEkKSTQ8j6IlcKA
YxIyRvy78T7rs4/zGAbCrruPWvgg0WHlfyYmt5mW2u+CP9XkPxCriVqBeTU485mYlfgWhD03Bzv8
LB5jv+z9nv7mPpR3mm4/J611bVYdWSVL5VLXUkYfcXED3YWORDuXCtx3+2QB2yvTx1RjEx5dPga/
HkmXC1qdz+T8l2mp6lbTyHUZJCTLG8kQMU9HZlHIBfUmJLdN+J3ouOOOqA4Yken9X7FPCh9P078o
ZvLF3cxm8ubAXHqOS8nrSSam7wooTkCw5OY+bClVPxGhOTnPVDIBsJV/ud/20gCNJnDpn5T6jaz2
8vKG00uaayE005RTLfgzSKjByZPhJb4qgjfehpScmpiQRzlR5fzdk1FD3Vp+VEWoyWZ0649W8jje
O4XaN1UQyq0ZdwAeMiE1G9SN60yUZakxuxt+0L6UTcaV+VV/qn17UVmiurqH69GJ5pFjcXMsjkxR
xuUZwYyG4A0qAd23jHJqYxqNUDXLu/H4paioPo/5UNetPbam0I1CI6VHbQeoxM1zIgDxfCzrKzJV
WTvzfcqSshl1NUY/T6vl3+X7B1WoonTdP/KE6gbmClvdWNxLcvbSPIArWRd/WeKrBURQzpUD4WBp
uMhknquGjuCK+fS/vUCKlFp/5L/X7a2huIxPDGEhCyyAKsDxKBv+1yp8S7/Cxr8JyRnq+Ekj8G/x
8lqLO9J81aFq93La6bdLdSQRpLMY6lVDkgKx7OKbqdx3zW5NPOAuQpmJAs/8vf8AHOH+s2dp2B/i
w95cXN9SZZu2p2KoSVo/0vbKbctIbe4K3XZAHhrH/wA9Kg/7HI9W+IPhS324o7d+0t/h+lhXm3/l
JZ/+YeD9cmaf2g+jF/n/AO9dTj/xif8AVh/vkB/x6/7P+Gc7/B8XMQ8v90/+qf1YMX1D3sMn0n3M
8sldvKenhLgWrfV7T9+x4gfYqK/5X2fpz0HU/XL+sfvZdkkeFjscXoG3+b+jmneVtjsVdirHdU8r
HUHnE4hmt5m5NDKvNTvyFVII2Octqews080skZAWSerkRzACkuP5b6SXeQ2NgXlSSOR/QSrJMKSK
x4bhxsw798q/kHU/6oPnJPjR7mrz8ttIvSDeWFhckAgGaBJNmf1GHxIer/EfffGPYWpjyyAfGS+N
HuU0/K3QVG2m6eSVjRmaBGZliAEYZihLceIpXJHsPVf6oPnJfFj3Ihfy9sVZmFtaVYoSfTHWL0/T
/Z24ejHx8OI8Mh/IGo/nj7fx1K+NHuQq/lR5dXmE0rTVWWJbeVFt4wrxKUKxuoSjKvpLxB6U2yf8
iar/AFTz5yXxY9yJ/wCVeaf6DQfVLL0GlFw0XorwMy04yleNOY4ijddsj/IGou+MXy5lfGj3Lh5A
slmSYW1mJo1KRyiJeSoUEZVW41AKKFp4CmD+QNRVcY+ZXxo9zc3kO1nlilmt7SWWEAQyPGGZAAQA
pK1FAx6eJxHs/qBsJj7V8aPchm/K/QnminfTNOaaAUhlNvGWQb/ZbhVftHp45L+Q9VVeJ9sl8WPc
rr+Xunq8jraWSvKrJKwhUFlevJWPHcNXcZH+QNR/PHzK+NHuQtl+VPl+xUraaZp8IL+pRIEFG5K1
R8O1GjQinTiPAZOfYmqlzyD5yUZY9yvp/wCXGl6bL6unWNjZS8eHqW8CRNwrXjVEBpXtkZ9g6me0
sgPvMlGaPcyjTLN7S1ELsGYEmq9N/nm+7M0ktPi4JEE2eTTklxG0XmwYOxVDSfWv0lBxlQWvozer
Aac2k5Rem67Voq8wd/2h9A6to4fDO3qsb+Xqv57fIsI82/8AKSz/APMPB+uTNN7QfRi/z/8Aeurx
/wCMT/qw/wB8gP8Aj1/2f8M53+D4uYh5f7p/9U/qwYvqHvYZPpPuZ1bm2Hk/TzcxtLD9Xs6omzV/
d8T26NQ56Bqvrl/WP3s+x+Lw8fCaPhj/AHKe5Bm7FXYq7FXYq7FXYqsnExhkEBUTcT6RcEqGptyA
INK++CV1tzZRqxfJ4X5o8xecH1Cay1W6khkgeht4j6cYpuCAtOQ7gmucrqtRmMjGZ5PoGg0emEBP
HEEHqdy9P/L7zHfa1ooe9hdZ7ciM3JUhJgP2lP8AMKfFm90Gollh6huOve8n2xooYMtQIo9Oo/HR
F+aPOGl+X4kE9Z72b/eayj3kck0H+qK9/urmRlziHPm6WeQRTPSzqDWMT6iFW8kHOWKP7KFt+AO9
eI2J7nLIXW/NnG63RWSS7FXYq7FXYq7FXYqgZvqn6ctOXP659VufRpTh6XqQepy9+XCn05E1bkR4
vBlX08Ub99Tr9P2MN82/8pLP/wAw8H65M0/tB9GL/P8A966jH/jE/wCrD/fID/j1/wBn/DOd/g+L
mIeX+6f/AFT+rBi+oe9hk+k+56Bpn1z/AAtp31Pj9Y+rWvHl048U5/8AC1z0HU3xyr+cfvXsvh8H
Hx/TwD/c7fam+VtzsVdirsVdirsVdirsVYz5t0PSLme01G6tUnuISUAevFl6gOARyoelc0Pbcxjj
HIACbrd2vZ2qyREoRkQD+NlWDzG0aKhtkCKAFWM8QAPAUOYGL2jkNpQHwNfrYz0Vm7YWyG883jUr
ukly1yixD9mONHCqq/R1Pc4y1ss2aJ5DiDppQqZvnb1XOtbnYq7FXYq7FXYq7FXYqhpGuf0nbqsS
m1MExlnI+NZA8XpoDXo4Lk7fsjB1bYiPhnf1WNvKpWfht82Eebf+Uln/AOYeD9cmab2g+jF/n/71
1eP/ABif9WH++QH/AB6/7P8AhnO/wfFzEPL/AHT/AOqf1YMX1D3sMn0n3M6tltW8oaeLqVoYfq9n
WRQSQR6fEbA9WoM9B1X1y/rH72fY5kMePhFngH+5T3K2bsVdirsVdirsVdirsVSvzBbzTWsYiQyF
XqQoqaUOaPt7BPJiAgDKpdPc5ejmIyNljbxSRmkiMh8GBH6842eOUNpAj3u0EgeSzQvL1ze6k15J
WK1hmLBu7srVovt4nOj7N0MshEztEfa8/OPrPvZ3nVpdirsVdirsVdirsVdiqDlVTrFqxuOLC3uA
LTekgLw1k60/d0A6ftZHq3xP7qQr+KO/dtLb4/oYX5t/5SWf/mHg/XJmn9oPoxf5/wDvXU4/8Yn/
AFYf75Af8ev+z/hnO/wfFzEPL/dP/qn9WDF9Q97DJ9J9zPbFmXynpxW2F2fq9p+4IqDUJvSh+z9r
6M9B1P1y/rH709ki8WPfh9A3/wA39PJOsrbXYq7FXYq7FXYq7FXYq88uk/OZfNGq6pZtayaCs0Vr
o/l6cwp6iH0klvJ7pFaSJV/eSBRzY7LwGKsV1v8ANbz7ayi1eLRYJIL9RqEA1bTnu0Wnrx2Binlt
0iafh9XMhLsP3jqnwpyBAOxVMrX8x/O866XPMug6dcahcWtha6N+lLWcyC6W2mluuSsnMwRzL6UM
LkyLKrU+xyQK2CvSdM8zeW9VuXtdM1azv7mOKO4kgtriKZ1hmUPFIVRmIR1dWVuhBFMKplirsVdi
rsVdirsVdiqElaP9L2ym3LSG3uCt12QB4ax/89Kg/wCxyPVviD4Ut9uKO3ftLf4fpYV5t/5SWf8A
5h4P1yZp/aD6MX+f/vXU4/8AGJ/1Yf75Af8AHr/s/wCGc7/B8XMUJATGwHUg/qwYzUh72Ex6SzvT
w8vlDT2huBb0tbaQz1oAiKjPuPFQRnoOqB45f1j96eyJDwsZriBgPtjsnMM0M0STQussMiho5EIZ
WUioKkbEHKwW+UTE0RRC7Fi7FXYq7FXYq7FXYq7FWJRflV5ITUr7UnsWmvdSuzf3ksksjB5vSnhX
4eQVQkd3IFoPA9VUhVLofyL/AC3iCUsJnZIWh5Pd3Lci2/qODJR5EovBmB4cU404rRVOPK35ceVP
LF9cXukW8kUs5mKo8sjxQrcyLLMkERPpxq7xoW4ip4qCaKoCrJsVdirsVdirsVdirsVQhkmfVUSK
eMwQwv8AWraoMnqSMnoPSlQvFJR1FffsOrdQGMkg2SKPShfEPtiwnzYynzLcAGpWCAN7Grn9RzTe
0H0Yv8//AHrqsf8AjGT3Q/3yB/49f9n/AAznf4Pi5illaE68seZ4tKi/R2o8lslYm1ugCwjDGvpy
UqQAT8LdKbGlN+00GvhqIAEgZQKIP8XmPPvHO9x5a/HkOmJjIHwr2PPhv+GXl3HlWxqtz03nk2WC
JEvrNIY3aWJIbhIlDOxZjSN1rViSa982B0s+XCfkXPj2xj+rxYGx1lE/erLqflZbxrwajbfWGXiW
+tLxpt+xz49vDH8tO74ZfIoPamHh4PEhw++P381Fbjyetm9mNQt/q7tzZfrlW5bftmTkOnjj+VnV
cMvkWZ7YxmXF4mO/fH+xe195TaaCY6jb+pbqFiP1sUAHSo50b6cfy0/5svkWI7WxUR4kKlz3i0t3
5SU3JGoW/wDpdfX/ANLrWpJNP3nw9f2aY/lp/wA2XyKT2viNfvIenlvH8H4rTc+UDBDAdQt/St2L
RD65uCTXdvUq2/icfys/5svkU/yxjsnxIWfOKsup+VlvGvBqNt9YZeJb60vGm37HPj28Mfy07vhl
8iwPamHh4PEhw++P381Fbjyetm9mNQt/q7tzZfrlW5bftmTkOnjj+VnVcMvkWZ7YxmXF4mO/fH+x
e195TaaCY6jb+pbqFiP1sUAHSo50b6cfy0/5svkWI7WxUR4kKlz3i0t35SU3JGoW/wDpdfX/ANLr
WpJNP3nw9f2aY/lp/wA2XyKT2viNfvIenlvH8H4rTc+UDBDAdQt/St2LRD65uCTXdvUq2/icfys/
5svkU/yxjsnxIWfOKsup+VlvGvBqNt9YZeJb60vGm37HPj28Mfy07vhl8iwPamHh4PEhw++P381F
bjyetm9mNQt/q7tzZfrlW5bftmTkOnjj+VnVcMvkWZ7YxmXF4mO/fH+xUa/8qNLBKdRt+dsAsJ+t
CgA8Rzo3+yrj+Wn/ADZfIsR2riojxIernvFat35SU3JGoW/+l19f/S61qSTT958PX9mmP5af82Xy
KT2viNfvIenlvH8H4rWuPJ7W8VudQt/SgJaMfXKEEmpqwk5Hr3OD8rP+bL5FI7YxiRl4mOz5xVl1
Pyst414NRtvrDLxLfWl402/Y58e3hh/LTu+GXyLA9qYeHg8SHD74/fzUVuPJ62b2Y1C3+ru3Nl+u
Vblt+2ZOQ6eOP5WdVwy+RZntjGZcXiY798f7FRr/AMqNLBKdRt+dsAsJ+tCgA8Rzo3+yrj+Wn/Nl
8ixHauKiPEh6ue8UJceZPKmkpcNp3oXF5cu0skNlwZ5ZW/aldKhf9Zz06eGRnjGIcWT0R7zt8hzJ
9zTn7XjOoxl4sgKEYm6/REe9hzSXE0893csGurlzJMR0BoAqr/kqoCjOO7T135jJYFQiKiPL9ZO7
HS4DAEyNzkbl+oeQFAK3/Hr/ALP+GYX8HxcpSytDsVWmOMmpUE/IZMZJDqWJhHua9KL+RfuGPiy7
yvhx7g70ov5F+4Y+LLvK+HHuDvSi/kX7hj4su8r4ce4O9KL+RfuGPiy7yvhx7g70ov5F+4Y+LLvK
+HHuDvSi/kX7hj4su8r4ce4O9KL+RfuGPiy7yvhx7g70ov5F+4Y+LLvK+HHuDvSi/kX7hj4su8r4
ce4O9KL+RfuGPiy7yvhx7g70ov5F+4Y+LLvK+HHuDvSi/kX7hj4su8r4ce4O9KL+RfuGPiy7yvhx
7g70ov5F+4Y+LLvK+HHuDvSi/kX7hj4su8r4ce4O9KL+RfuGPiy7yvhx7g70ov5F+4Y+LLvK+HHu
DvSi/kX7hj4su8r4ce4LgoAoBQeAyJJPNkABybwKq/8AHr/s/wCGWfwfFL//2Q==
+
+
+
+
+
+ xmp.did:FB7F117407206811822AB1CDF6CD8DAF
+ uuid:8704e0b9-5cd3-0741-b5a0-c6fb16788bc6
+ uuid:E90DB3FF08F7E111B3B5A36496D1DFF8
+ proof:pdf
+
+ uuid:e885c089-c0e1-0947-b31b-d92e65ed4951
+ xmp.did:938EAF9507206811822AA2EF20699C46
+ uuid:E90DB3FF08F7E111B3B5A36496D1DFF8
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:C17D4CBC9D84E2118FF281E483F8DC6B
+ 2013-03-04T15:54:32+08:00
+ Adobe Photoshop CS6 (Windows)
+ /
+
+
+ saved
+ xmp.iid:1B9519F3DCBAE3119A9ADA8DACB0276F
+ 2014-04-03T12:33:52+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:005B93D6E9BAE3119A9ADA8DACB0276F
+ 2014-04-03T12:39:08+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:045B93D6E9BAE3119A9ADA8DACB0276F
+ 2014-04-03T12:42:13+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ converted
+ from application/vnd.adobe.photoshop to application/pdf
+
+
+ derived
+ converted from application/vnd.adobe.photoshop to application/pdf
+
+
+ saved
+ xmp.iid:055B93D6E9BAE3119A9ADA8DACB0276F
+ 2014-04-03T12:42:13+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:80E8CD97EABAE3119A9ADA8DACB0276F
+ 2014-04-03T12:44:18+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:E0FF5BDDEABAE3119A9ADA8DACB0276F
+ 2014-04-03T12:46:18+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:E3FF5BDDEABAE3119A9ADA8DACB0276F
+ 2014-04-03T12:46:47+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ converted
+ from application/pdf to application/vnd.adobe.photoshop
+
+
+ derived
+ converted from application/pdf to application/vnd.adobe.photoshop
+
+
+ saved
+ xmp.iid:E4FF5BDDEABAE3119A9ADA8DACB0276F
+ 2014-04-03T12:46:47+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:D4982BC502BBE3119A9ADA8DACB0276F
+ 2014-04-03T15:37:12+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:D9982BC502BBE3119A9ADA8DACB0276F
+ 2014-04-03T15:39:49+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:DD982BC502BBE3119A9ADA8DACB0276F
+ 2014-04-03T15:45:54+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ converted
+ from application/vnd.adobe.photoshop to application/pdf
+
+
+ derived
+ converted from application/vnd.adobe.photoshop to application/pdf
+
+
+ saved
+ xmp.iid:DE982BC502BBE3119A9ADA8DACB0276F
+ 2014-04-03T15:45:54+08:00
+ Adobe Photoshop CS4 Windows
+ /
+
+
+ saved
+ xmp.iid:FB7F117407206811822AB1CDF6CD8DAF
+ 2019-04-03T12:57:46+08:00
+ Adobe Illustrator CS6 (Macintosh)
+ /
+
+
+
+
+
+ 3
+ sRGB IEC61966-2.1
+
+
+
+ Poker size card template
+ Poker size card template
+
+
+ 2.5”x3.5” (full bleed of 2.74”x3.74”) at 300DPI
+ 2.5”x3.5” (full bleed of 2.74”x3.74”) at 300DPI
+
+
+ Safe Area Line
+ Safe Area Line
+
+
+ Keep text and other important parts of your design INSIDE the s
+ Keep text and other important parts of your design INSIDE the safe area (2.26”x3.26”inches | 678x978 pixel in 300dpi)
+
+
+ Cut Area Line
+ Cut Area Line
+
+
+ Finished dimensions of your design after cut (2.5”x3.5”inches |
+ Finished dimensions of your design after cut (2.5”x3.5”inches | 750x1050 pixel in 300dpi)
+
+
+ Bleed Line
+ Bleed Line
+
+
+ Extend your design fully through this area to avoid the chance
+ Extend your design fully through this area to avoid the chance of any white lines appearing (2.74”x3.74” inches | 822x1122pixel in 300dpi)
+
+
+ Delete this template before up
+ Delete this template before uploading artwork.
+
+
+ IMPORTANT
+ IMPORTANT
+
+
+
+
+
+ False
+
+
+ 1
+ 3000000/10000
+ 3000000/10000
+ 2
+ 256,257,258,259,262,274,277,284,530,531,282,283,296,301,318,319,529,532,306,270,271,272,305,315,33432;D505153A151CA2F1D1DD481859F4F9C4
+
+
+ 1
+ 822
+ 1122
+ 36864,40960,40961,37121,37122,40962,40963,37510,40964,36867,36868,33434,33437,34850,34852,34855,34856,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37396,41483,41484,41486,41487,41488,41492,41493,41495,41728,41729,41730,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,42016,0,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,26,27,28,30;61EB7655663166183A522B35B56A711B
+
+
+ Adobe PDF library 10.01
+
+
+ 1
+ False
+ False
+
+ 2.740004
+ 3.739990
+ Inches
+
+
+
+
+ MyriadPro-Regular
+ Myriad Pro
+ Regular
+ Open Type
+ Version 2.106;PS 2.000;hotconv 1.0.70;makeotf.lib2.5.58329
+ False
+ MyriadPro-Regular.otf
+
+
+
+
+
+ Cyan
+ Magenta
+ Yellow
+ Black
+
+
+
+
+
+ Default Swatch Group
+ 0
+
+
+
+ Global Red
+ PROCESS
+ 100.000000
+ RGB
+ 237
+ 28
+ 36
+
+
+
+
+
+
+
+
+ 21.0.0
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
endstream
endobj
3 0 obj
<>
endobj
6 0 obj
<>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text/ImageC/ImageI]/Properties<>/XObject<>>>/Thumb 24 0 R/TrimBox[0.0 0.0 197.28 269.279]/Type/Page>>
endobj
7 0 obj
<>stream
+HlW%
+^Qo^Np8X8HA^0sEQ_~u?r/K{Q+v~~~_C/Ρ嗏&;dH7"ĻF?
+t?>wKM>blBFf"/.{ٓUݿϏKȤ˒IXrG7!:/L9м`dDc- wQWp nLb31@Iz\ƠS#όKՋףA(G9da<~hm쭺
+3!]yΨLzADtI=
+-1XmZFC˹5MNvOHf=m[fsJdٞ?
1esWf*e2f-9Y#La)8N89Z#oX)uLQ%[])iɀPF#>dk)y }ˬjU_#]Fg楧L#6"&gE4='fiK'"&[ȡSz9Q{ljmXM=!Wd4g?23˰
ɬ(^uIښ#gT-Jxiv<cZ1L]M\sz`4>ܷ,wF`ƚQJO^gF* SKd^q)$&3ݏLC0U3v
>`ڦt]MKuDY (TYk
+ظtIUe˃yQN]J ~wmC4?Jty0lI}\d,E7uLSc<0]~]cLt#4f(ڈ4t]":v X.Mx2F9Mv7RȜ$TXU
+ݷy HSxEX(Sl=^W\K BF!@!=MSxvL j1BB*